Searched defs:keys (Results 1 - 5 of 5) sorted by relevance

/art/compiler/dex/quick/x86/
H A Dcall_x86.cc36 const int32_t* keys = reinterpret_cast<const int32_t*>(&table[2]); local
37 const int32_t* targets = &keys[entries];
40 int key = keys[i];
/art/runtime/interpreter/
H A Dinterpreter_common.h292 const int32_t* keys = reinterpret_cast<const int32_t*>(&switch_data[2]); local
293 DCHECK(IsAligned<4>(keys));
294 int32_t first_key = keys[0];
317 const int32_t* keys = reinterpret_cast<const int32_t*>(&switch_data[2]); local
318 DCHECK(IsAligned<4>(keys));
319 const int32_t* entries = keys + size;
325 int32_t foundVal = keys[mid];
/art/compiler/dex/portable/
H A Dmir_to_gbc.cc173 const int32_t* keys = payload->GetKeys(); local
185 sw->addCase(irb_->getInt32(keys[i]), llvm_bb);
/art/compiler/dex/quick/
H A Dcodegen_util.cc547 const int32_t* keys = reinterpret_cast<const int32_t*>(&(tab_rec->table[2])); local
552 << std::hex << keys[elems] << ", disp: 0x"
555 Push32(code_buffer_, keys[elems]);
844 const int32_t* keys = reinterpret_cast<const int32_t*>(&table[2]); local
845 const int32_t* targets = &keys[entries];
847 tab_rec->targets[i] = InsertCaseLabel(base_vaddr + targets[i], keys[i]);
871 * int keys[size] keys, sorted low-to-high; 32-bit aligned
878 const int32_t* keys = reinterpret_cast<const int32_t*>(&table[2]); local
879 const int32_t* targets = &keys[entrie
[all...]
H A Dgen_common.cc2073 const int32_t* keys = reinterpret_cast<const int32_t*>(&table[2]); local
2074 const int32_t* targets = &keys[entries];
2077 int key = keys[i];

Completed in 1730 milliseconds