Searched refs:key (Results 1 – 9 of 9) sorted by relevance
/art/compiler/dex/ |
D | local_value_numbering.h | 45 uint64_t key = BuildKey(op, operand1, operand2, modifier); in LookupValue() local 46 ValueMap::iterator it = value_map_.find(key); in LookupValue() 51 value_map_.Put(key, res); in LookupValue() 57 uint64_t key = BuildKey(op, operand1, operand2, modifier); in ValueExists() local 58 ValueMap::const_iterator it = value_map_.find(key); in ValueExists() 63 uint32_t key = (base << 16) | field; in GetMemoryVersion() local 65 MemoryVersionMap::iterator it = memory_version_map_.find(key); in GetMemoryVersion() 68 memory_version_map_.Put(key, res); in GetMemoryVersion() 76 uint32_t key = (base << 16) | field; in AdvanceMemoryVersion() local 77 MemoryVersionMap::iterator it = memory_version_map_.find(key); in AdvanceMemoryVersion() [all …]
|
D | mir_graph.cc | 405 successor_block_info->key = in ProcessCanSwitch() 449 successor_block_info->key = iterator.GetHandlerTypeIndex(); in ProcessCanThrow() 791 successor_block_info->key, in DumpCFG()
|
D | mir_graph.h | 291 int key; member
|
/art/compiler/utils/ |
D | dedupe_set.h | 54 Key* Add(Thread* self, const Key& key) { in Add() argument 55 HashType hash = HashFunc()(key); in Add() 56 HashedKey hashed_key(hash, const_cast<Key*>(&key)); in Add() 62 hashed_key.second = new Key(key); in Add()
|
/art/test/055-enum-performance/src/ |
D | Main.java | 123 static String basisValueOf(String key) { in basisValueOf() argument 125 if (s.equals(key)) { in basisValueOf()
|
/art/compiler/dex/quick/x86/ |
D | call_x86.cc | 45 int key = keys[i]; in GenSparseSwitch() local 48 OpCmpImmBranch(kCondEq, rl_src.low_reg, key, in GenSparseSwitch()
|
/art/runtime/verifier/ |
D | method_verifier.cc | 943 int32_t key = (int32_t) switch_insns[keys_offset + targ * 2] | in CheckSwitchTargets() local 945 if (key <= last_key) { in CheckSwitchTargets() 947 << ", this=" << key; in CheckSwitchTargets() 950 last_key = key; in CheckSwitchTargets()
|
/art/compiler/llvm/ |
D | intrinsic_func_list.def | 91 // throwing instruction. The result is a switch key and this
|
/art/compiler/dex/portable/ |
D | mir_to_gbc.cc | 1740 int type_index = successor_block_info->key; in BlockBitcodeConversion()
|