Lines Matching defs:end

55                        static_cast<uint32_t>(it->end),
65 for (auto it = mem_maps.begin(); it != mem_maps.end(); ++it) {
138 uintptr_t end = begin + size;
147 end <= reinterpret_cast<uintptr_t>(map->End())) {
162 for (BacktraceMap::const_iterator it = map->begin(); it != map->end(); ++it) {
163 if ((begin >= it->start && begin < it->end) // start of new within old
164 && (end > it->start && end <= it->end)) { // end of new within old
171 "any existing map. See process maps in the log.", begin, end);
178 uintptr_t end,
186 for (BacktraceMap::const_iterator it = map->begin(); it != map->end(); ++it) {
187 if ((begin >= it->start && begin < it->end) // start of new within old
188 || (end > it->start && end < it->end) // end of new within old
189 || (begin <= it->start && end > it->end)) { // start/end of new includes all of old
191 map_info << std::make_pair(it, map->end());
194 begin, end,
195 static_cast<uintptr_t>(it->start), static_cast<uintptr_t>(it->end),
487 for (auto it = maps_->lower_bound(base_begin_), end = maps_->end();
488 it != end && it->first == base_begin_; ++it) {
600 // To avoid valgrind errors, temporarily lift the lower-end noaccess protection before passing
601 // it to msync() as it only accepts page-aligned base address, and exclude the higher-end
668 for (auto it = mem_maps.begin(), maps_end = mem_maps.end(); it != maps_end;) {
680 void* end = map->BaseEnd();
684 (it->second->BaseBegin() == end || num_gaps < kMaxGaps)) {
685 if (it->second->BaseBegin() != end) {
692 reinterpret_cast<uintptr_t>(it->second->BaseBegin()) - reinterpret_cast<uintptr_t>(end);
701 end = it->second->BaseEnd();
714 for (auto it = maps_->lower_bound(base_begin), end = maps_->end();
715 it != end && it->first == base_begin; ++it) {
727 for (auto it = maps_->lower_bound(address), end = maps_->end();
728 it != end && it->first == address; ++it) {
814 // Start at the end of the map before the upper bound.
818 while (it != maps_->end()) {
825 // Otherwise, skip to the end of the map.
909 volatile uint8_t* end = begin + base_size_;
911 DCHECK(IsAligned<kPageSize>(end));
914 for (volatile uint8_t* ptr = begin; ptr < end; ptr += kPageSize) {