Searched refs:table_size (Results 1 - 4 of 4) sorted by relevance

/art/runtime/jit/
H A Djit_code_cache.cc770 size_t table_size = ComputeRootTableSize(number_of_roots); local
771 size_t size = RoundUp(stack_map_size + method_info_size + table_size, sizeof(void*));
800 *stack_map_data = result + table_size;
/art/compiler/
H A Doat_writer.cc2842 size_t table_size = TypeLookupTable::RawDataLength(oat_dex_file->class_offsets_.size());
2843 if (table_size == 0u) {
2876 DCHECK_EQ(table_size, table->RawDataLength());
2878 if (!oat_rodata->WriteFully(table->RawData(), table_size)) {
2887 oat_size_ += padding_size + table_size;
2888 size_oat_lookup_table_ += table_size;
/art/runtime/verifier/
H A Dmethod_verifier.cc1401 uint32_t table_size = 4 + (value_width * value_count + 1) / 2; local
1403 if (cur_offset + array_data_offset + table_size > insn_count) {
1406 << cur_offset + array_data_offset + table_size
1526 uint32_t table_size = targets_offset + switch_count * 2; local
1534 if (cur_offset + switch_offset + table_size > (uint32_t) insn_count) {
1537 << ", end " << (cur_offset + switch_offset + table_size)
/art/oatdump/
H A Doatdump.cc942 uint32_t table_size = TypeLookupTable::RawDataLength(dex_file->NumClassDefs()); local
945 table_offset + table_size - 1);

Completed in 708 milliseconds