Lines Matching refs:begin
64 for (auto it = mem_maps.begin(); it != mem_maps.end(); ++it) { in operator <<()
135 static bool ContainedWithinExistingMap(uintptr_t begin, in ContainedWithinExistingMap() argument
143 for (BacktraceMap::const_iterator it = map->begin(); it != map->end(); ++it) { in ContainedWithinExistingMap()
144 if ((begin >= it->start && begin < it->end) // start of new within old in ContainedWithinExistingMap()
153 begin, end, maps.c_str()); in ContainedWithinExistingMap()
159 static bool CheckNonOverlapping(uintptr_t begin, in CheckNonOverlapping() argument
167 for (BacktraceMap::const_iterator it = map->begin(); it != map->end(); ++it) { in CheckNonOverlapping()
168 if ((begin >= it->start && begin < it->end) // start of new within old in CheckNonOverlapping()
170 || (begin <= it->start && end > it->end)) { // start/end of new includes all of old in CheckNonOverlapping()
175 begin, end, in CheckNonOverlapping()
476 MemMap::MemMap(const std::string& name, byte* begin, size_t size, void* base_begin, in MemMap() argument
478 : name_(name), begin_(begin), size_(size), base_begin_(base_begin), base_size_(base_size), in MemMap()