Searched refs:lb (Results 1 – 5 of 5) sorted by relevance
/art/compiler/optimizing/ |
D | dex_cache_array_fixups_arm.cc | 80 auto lb = dex_cache_array_bases_.lower_bound(&dex_file); in GetOrCreateDexCacheArrayBase() local 81 if (lb != dex_cache_array_bases_.end() && in GetOrCreateDexCacheArrayBase() 82 !dex_cache_array_bases_.key_comp()(&dex_file, lb->first)) { in GetOrCreateDexCacheArrayBase() 83 return lb->second; in GetOrCreateDexCacheArrayBase() 91 dex_cache_array_bases_.PutBefore(lb, &dex_file, base); in GetOrCreateDexCacheArrayBase()
|
/art/runtime/ |
D | safe_map.h | 132 auto lb = lower_bound(k); in GetOrCreate() local 133 if (lb != end() && !key_comp()(k, lb->first)) { in GetOrCreate() 134 return lb->second; in GetOrCreate() 136 auto it = PutBefore(lb, k, create()); in GetOrCreate()
|
/art/compiler/ |
D | compiled_method.h | 146 auto lb = std::lower_bound(begin(), end(), SrcMapElem {from, INT32_MIN}); in Find() local 147 if (lb != end() && lb->from_ == from) { in Find() 149 return std::make_pair(true, lb->to_); in Find() 150 } else if (lb != begin()) { in Find() 152 return std::make_pair(true, (--lb)->to_); in Find()
|
/art/runtime/interpreter/mterp/mips64/ |
D | binopLit8.S | 17 lb a1, 3(rPC) # a1 <- sign-extended CC
|
/art/runtime/arch/mips/ |
D | quick_entrypoints_mips.S | 737 lb $t1, 0($t1) # get result type char 865 lb $t1, 0($t1) # get result type char
|