Home
last modified time | relevance | path

Searched refs:data_begin_ (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/mojo/public/cpp/bindings/lib/
Dbounds_checker.cc16 : data_begin_(reinterpret_cast<uintptr_t>(data)), in BoundsChecker()
17 data_end_(data_begin_ + data_num_bytes), in BoundsChecker()
20 if (data_end_ < data_begin_) { in BoundsChecker()
25 data_end_ = data_begin_; in BoundsChecker()
45 data_begin_ = end; in ClaimMemory()
72 return end > begin && begin >= data_begin_ && end <= data_end_; in InternalIsValidRange()
Dbounds_checker.h51 uintptr_t data_begin_; variable