Home
last modified time | relevance | path

Searched refs:upper_bound (Results 1 – 12 of 12) sorted by relevance

/system/extras/perfprofd/
Dsymbolizer.cc57 auto upper_bound = map.upper_bound(address); in Decode() local
58 if (upper_bound == map.begin()) { in Decode()
63 upper_bound--; in Decode()
64 if (upper_bound->first + upper_bound->second.length > address) { in Decode()
66 return upper_bound->second.name; in Decode()
Dmap_utils.h17 auto it = map.upper_bound(key); in GetLeqIterator()
/system/core/libcutils/
Dproperties.cpp61 static intmax_t property_get_imax(const char *key, intmax_t lower_bound, intmax_t upper_bound, in property_get_imax() argument
82 } else if (result < lower_bound || result > upper_bound) { in property_get_imax()
/system/update_engine/payload_consumer/
Dextent_reader.cc58 std::upper_bound( in Seek()
/system/vold/
DCheckpoint.cpp455 auto s = --relocations.upper_bound(source); in relocate()
467 auto dest_end = --relocations.upper_bound(dest + count); in relocate()
488 auto second_overlap = used_sectors.upper_bound(start); in checkCollision()
563 auto relocation = --relocations.upper_bound(sector); in relocatedRead()
/system/bt/packet/tests/base/
Diterator_test.cc34 auto upper_bound = bounds.second; in GetTestPacket() local
36 return TestPacket::Make(test_l2cap_data, lower_bound, upper_bound); in GetTestPacket()
/system/core/libunwindstack/
DDwarfSection.cpp41 auto it = loc_regs_.upper_bound(pc); in Step()
622 auto it = fdes_.upper_bound(start); in InsertFde()
775 auto it = fdes_.upper_bound(pc); in GetFdeFromPc()
DMemory.cpp332 auto entry = maps_.upper_bound(addr); in Read()
/system/extras/simpleperf/
Dthread_tree.cpp186 auto it = maps.maps.upper_bound(addr); in FindMapByAddr()
Ddso.cpp319 auto it = std::upper_bound(symbols_.begin(), symbols_.end(), in FindSymbol()
/system/chre/external/flatbuffers/include/flatbuffers/
Dflatbuffers.h1481 auto upper_bound = reinterpret_cast<const uint8_t *>(elem) + elem_len;
1482 if (upper_bound_ < upper_bound)
1483 upper_bound_ = upper_bound;
/system/core/init/
Dservice.cpp583 keycodes_.insert(std::upper_bound(keycodes_.begin(), keycodes_.end(), code), code); in ParseKeycodes()