Lines Matching refs:d

210     T* operator()(int d) const  in operator ()()
211 { return reinterpret_cast<T*>(current_ + d*stride_); } in operator ()()
241 …per_pixel, bool MsbFirst, typename difference_type > inline data_type get_mask( difference_type d ) in get_mask() argument
252 … (nIntraWordPositions-1 - (d % nIntraWordPositions)) : in get_mask()
253 (d % nIntraWordPositions))); in get_mask()
326 PackedPixelColumnIterator& operator+=( difference_type d ) in operator +=() argument
328 y += d; in operator +=()
332 PackedPixelColumnIterator& operator-=( difference_type d ) in operator -=() argument
334 y -= d; in operator -=()
338 PackedPixelColumnIterator operator+( difference_type d ) in operator +() argument
341 res += d; in operator +()
345 PackedPixelColumnIterator operator-( difference_type d ) in operator -() argument
348 res -= d; in operator -()
420 value_type get(difference_type d) const in get()
424 return static_cast<unsigned int>(*y(d) & mask_) >> shift_; in get()
433 void set( value_type v, difference_type d ) const in set()
436 *y(d) = (*y(d) & ~mask_) | pixel_value; in set()
550 PackedPixelRowIterator& operator+=( difference_type d ) in operator +=() argument
552 const difference_type newValue( remainder_ + d ); in operator +=()
561 PackedPixelRowIterator& operator-=( difference_type d ) in operator -=() argument
563 const difference_type newValue( remainder_ - d ); in operator -=()
581 PackedPixelRowIterator operator+( difference_type d ) in operator +() argument
584 res += d; in operator +()
588 PackedPixelRowIterator operator-( difference_type d ) in operator -() argument
591 res -= d; in operator -()
664 value_type get(difference_type d) const in get()
667 tmp += d; in get()
680 void set( value_type v, difference_type d ) const in set()
683 tmp += d; in set()
822 value_type get(difference_type const & d) const in get()
824 const int remainder( x(d.x) % num_intraword_positions ); in get()
828 return (static_cast<unsigned int>(*current(d.x,d.y) & in get()
845 void set( value_type v, difference_type const & d ) const in set()
847 const int remainder( x(d.x) % num_intraword_positions ); in set()
853 pointer p = current(d.x,d.y); in set()