Home | History | Annotate | Download | only in libmemunreachable

Lines Matching full:begin

28 // A range [begin, end)
30 uintptr_t begin;
33 size_t size() const { return end - begin; };
35 return this->begin == other.begin && this->end == other.end;
45 return a.end <= b.begin;
56 valid_allocations_range_.begin = ~valid_allocations_range_.end;
65 bool Allocation(uintptr_t begin, uintptr_t end);
66 void Root(uintptr_t begin, uintptr_t end);
108 uintptr_t begin = (range.begin + (sizeof(uintptr_t) - 1)) & ~(sizeof(uintptr_t) - 1);
112 for (uintptr_t i = begin; i < range.end; i += sizeof(uintptr_t)) {