Home | History | Annotate | Download | only in arm

Lines Matching refs:table

28  * The sparse table in the literal pool is an array of <key,displacement>
35 * 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];
72 // Materialize a pointer to the switch table
95 const uint16_t* table = cu_->insns + current_dalvik_offset_ + table_offset;
97 DumpPackedSwitchTable(table);
99 // Add the table to the list - we'll process it later
102 tab_rec->table = table;
104 uint32_t size = table[1];
112 // Materialize a pointer to the switch table
114 int low_key = s4FromSwitchData(&table[2]);
127 // Load the displacement from the switch table
141 * Array data table format:
143 * ushort width width of each element in the table
144 * uint size number of elements in the table
145 * ubyte data[size*width] table of data values (may contain a single-byte
151 const uint16_t* table = cu_->insns + current_dalvik_offset_ + table_offset;
152 // Add the table to the list - we'll process it later
155 tab_rec->table = table;
157 uint16_t width = tab_rec->table[1];
158 uint32_t size = tab_rec->table[2] | ((static_cast<uint32_t>(tab_rec->table[3])) << 16);