Lines Matching refs:ptr_
38 : ptr_(reinterpret_cast<uintptr_t>(ptr)), in StrideIterator()
43 return ptr_ == other.ptr_;
51 ptr_ += stride_;
62 ptr_ -= stride_;
73 ptr_ += static_cast<ssize_t>(stride_) * delta;
84 ptr_ -= static_cast<ssize_t>(stride_) * delta;
96 DCHECK_EQ((ptr_ - rhs.ptr_) % stride_, 0u);
97 return (ptr_ - rhs.ptr_) / stride_;
101 return *reinterpret_cast<T*>(ptr_);
113 uintptr_t ptr_;
130 return lhs.ptr_ < rhs.ptr_;