Lines Matching refs:table
27 * The sparse table in the literal pool is an array of <key,displacement>
31 const uint16_t* table = cu_->insns + current_dalvik_offset_ + table_offset;
33 DumpSparseSwitchTable(table);
35 int entries = table[1];
36 const int32_t* keys = reinterpret_cast<const int32_t*>(&table[2]);
64 const uint16_t* table = cu_->insns + current_dalvik_offset_ + table_offset;
66 DumpPackedSwitchTable(table);
68 // Add the table to the list - we'll process it later
71 tab_rec->table = table;
73 int size = table[1];
82 // Materialize a pointer to the switch table
99 int low_key = s4FromSwitchData(&table[2]);
112 // Load the displacement from the switch table
128 * Array data table format:
130 * ushort width width of each element in the table
131 * uint size number of elements in the table
132 * ubyte data[size*width] table of data values (may contain a single-byte
138 const uint16_t* table = cu_->insns + current_dalvik_offset_ + table_offset;
139 // Add the table to the list - we'll process it later
142 tab_rec->table = table;
144 uint16_t width = tab_rec->table[1];
145 uint32_t size = tab_rec->table[2] | ((static_cast<uint32_t>(tab_rec->table[3])) << 16);