Searched defs:key (Results 1 - 11 of 11) sorted by relevance

/art/test/055-enum-performance/src/
H A DMain.java123 static String basisValueOf(String key) { argument
125 if (s.equals(key)) {
/art/compiler/utils/
H A Ddedupe_set.h48 Key* Add(Thread* self, const Key& key) { argument
49 HashType raw_hash = HashFunc()(key);
52 HashedKey hashed_key(shard_hash, const_cast<Key*>(&key));
58 hashed_key.second = new Key(key);
/art/compiler/dex/
H A Dglobal_value_numbering.cc156 FieldReference key = { field_info.DeclaringDexFile(), field_info.DeclaringFieldIndex(), type }; local
157 auto lb = field_index_map_.lower_bound(key);
158 if (lb != field_index_map_.end() && !field_index_map_.key_comp()(key, lb->first)) {
163 auto it = field_index_map_.PutBefore(lb, key, id);
170 ArrayLocation key = { base, index }; local
171 auto lb = array_location_map_.lower_bound(key);
172 if (lb != array_location_map_.end() && !cmp(key, lb->first)) {
177 auto it = array_location_map_.PutBefore(lb, key, location);
H A Dglobal_value_numbering.h87 uint64_t key = BuildKey(op, operand1, operand2, modifier); local
88 ValueMap::iterator lb = global_value_map_.lower_bound(key);
89 if (lb != global_value_map_.end() && lb->first == key) {
93 global_value_map_.PutBefore(lb, key, res);
105 uint64_t key = BuildKey(op, operand1, operand2, modifier); local
106 ValueMap::const_iterator it = global_value_map_.find(key);
128 // Maps field key to field id for resolved fields.
H A Dlocal_value_numbering.cc197 Map* map, const typename Map::key_type& key) {
198 auto lb = map->lower_bound(key);
199 if (lb == map->end() || map->key_comp()(key, lb->first)) {
200 lb = map->PutBefore(lb, key, AliasingValues(this));
206 void LocalValueNumbering::UpdateAliasingValuesLoadVersion(const KeyType& key, argument
213 memory_version = Versions::StartMemoryVersion(gvn_, this, key);
227 Map* map, const typename Map::key_type& key,
230 // const_cast<LocalValueNumbering*>(lvn)->HandleAliasingValueGet(map. key, location)
233 auto it = map->find(key);
235 uint16_t start_version = Versions::StartMemoryVersion(gvn, lvn, key);
196 GetAliasingValues( Map* map, const typename Map::key_type& key) argument
225 AliasingValuesMergeGet(GlobalValueNumbering* gvn, const LocalValueNumbering* lvn, Map* map, const typename Map::key_type& key, uint16_t location) argument
251 HandleAliasingValuesGet(Map* map, const typename Map::key_type& key, uint16_t location) argument
272 HandleAliasingValuesPut(Map* map, const typename Map::key_type& key, uint16_t location, uint16_t value) argument
746 const typename Map::key_type& key = entry.first; local
971 EscapedArrayClobberKey key = { reg, type }; local
990 RangeCheckKey key = { array, index }; local
1414 RangeCheckKey key = { array, index }; local
[all...]
H A Dmir_graph.h482 * "SuccessorBlockInfo". For catch blocks, key is type index for the exception. For switch
483 * blocks, key is the case value.
487 int key; member in struct:art::SuccessorBlockInfo
/art/compiler/dex/quick/x86/
H A Dcall_x86.cc27 * The sparse table in the literal pool is an array of <key,displacement>
40 int key = keys[i]; local
43 OpCmpImmBranch(kCondEq, rl_src.reg, key, &block_label_list_[case_block->id]);
/art/runtime/
H A Doat.cc413 const char* OatHeader::GetStoreValueByKey(const char* key) const {
421 if (strcmp(key, ptr) == 0) {
422 // Same as key. Check if value is OK.
427 // Different from key. Advance over the value.
438 bool OatHeader::GetStoreKeyValuePairByIndex(size_t index, const char** key, argument
452 *key = maybe_key;
/art/compiler/dex/quick/
H A Dgen_common.cc2038 OpRegImm(kOpAdd, key_temp, 1); // Increment key.
2077 int key = keys[i]; local
2080 OpCmpImmBranch(kCondEq, rl_src.reg, key, &block_label_list_[case_block->id]);
/art/oatdump/
H A Doatdump.cc217 // Print the key-value store.
221 const char* key; local
223 while (oat_header.GetStoreKeyValuePairByIndex(index, &key, &value)) {
224 os << key << " = " << value << "\n";
/art/runtime/verifier/
H A Dmethod_verifier.cc1021 int32_t key = (int32_t) switch_insns[keys_offset + targ * 2] | local
1023 if (key <= last_key) {
1024 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid packed switch: last key=" << last_key
1025 << ", this=" << key; local
1028 last_key = key;
2768 /* 0 = sig, 1 = count, 2/3 = first key */

Completed in 3648 milliseconds