Lines Matching refs:table
31 * The sparse table in the literal pool is an array of <key,displacement>
36 const uint16_t* table = cu_->insns + current_dalvik_offset_ + table_offset;
38 DumpSparseSwitchTable(table);
40 int entries = table[1];
41 const int* keys = reinterpret_cast<const int*>(&table[2]);
71 const uint16_t* table = cu_->insns + current_dalvik_offset_ + table_offset;
73 DumpPackedSwitchTable(table);
75 // Add the table to the list - we'll process it later
78 tab_rec->table = table;
80 int size = table[1];
88 // Materialize a pointer to the switch table
91 int low_key = s4FromSwitchData(&table[2]);
104 // Load the displacement from the switch table
120 * Array data table format:
122 * ushort width width of each element in the table
123 * uint size number of elements in the table
124 * ubyte data[size*width] table of data values (may contain a single-byte
130 const uint16_t* table = cu_->insns + current_dalvik_offset_ + table_offset;
131 // Add the table to the list - we'll process it later
134 tab_rec->table = table;
136 uint16_t width = tab_rec->table[1];
137 uint32_t size = tab_rec->table[2] | ((static_cast<uint32_t>(tab_rec->table[3])) << 16);