Lines Matching refs:table
28 * The sparse table in the literal pool is an array of <key,displacement>
32 * adr r_base, <table>
47 const uint16_t* table = cu_->insns + current_dalvik_offset_ + table_offset;
49 DumpSparseSwitchTable(table);
51 // Add the table to the list - we'll process it later
54 tab_rec->table = table;
56 uint32_t size = table[1];
66 // Materialize a pointer to the switch table
99 const uint16_t* table = cu_->insns + current_dalvik_offset_ + table_offset;
101 DumpPackedSwitchTable(table);
103 // Add the table to the list - we'll process it later
106 tab_rec->table = table;
108 uint32_t size = table[1];
116 // Materialize a pointer to the switch table
118 int low_key = s4FromSwitchData(&table[2]);
131 // Load the displacement from the switch table
150 * Array data table format:
152 * ushort width width of each element in the table
153 * uint size number of elements in the table
154 * ubyte data[size*width] table of data values (may contain a single-byte
160 const uint16_t* table = cu_->insns + current_dalvik_offset_ + table_offset;
161 // Add the table to the list - we'll process it later
164 tab_rec->table = table;
166 uint16_t width = tab_rec->table[1];
167 uint32_t size = tab_rec->table[2] | ((static_cast<uint32_t>(tab_rec->table[3])) << 16);