Lines Matching refs:ptr_
41 : ptr_(reinterpret_cast<uintptr_t>(ptr)), in StrideIterator()
46 return ptr_ == other.ptr_;
54 ptr_ += stride_;
65 ptr_ -= stride_;
76 ptr_ += static_cast<ssize_t>(stride_) * delta;
87 ptr_ -= static_cast<ssize_t>(stride_) * delta;
99 DCHECK_EQ((ptr_ - rhs.ptr_) % stride_, 0u);
100 return (ptr_ - rhs.ptr_) / stride_;
104 return *reinterpret_cast<T*>(ptr_);
116 uintptr_t ptr_;
133 return lhs.ptr_ < rhs.ptr_;