HomeSort by relevance Sort by last modified time
    Searched defs:gc_map_offset (Results 1 - 4 of 4) sorted by null

  /art/runtime/
exception_test.cc 79 uint32_t gc_map_offset = mapping_table_offset + fake_gc_map_.size(); local
80 OatQuickMethodHeader method_header(mapping_table_offset, vmap_table_offset, gc_map_offset,
96 const uint8_t* code_ptr = &fake_header_code_and_maps_[gc_map_offset];
  /art/compiler/
common_compiler_test.cc 177 uint32_t gc_map_offset = gc_map.empty() ? 0u local
179 OatQuickMethodHeader method_header(mapping_table_offset, vmap_table_offset, gc_map_offset,
oat_writer.cc 380 uint32_t gc_map_offset = method_header->gc_map_offset_; local
392 if (gc_map_offset != 0u) {
393 gc_map_offset += code_offset;
394 DCHECK_LT(gc_map_offset, code_offset);
400 gc_map_offset, frame_size_in_bytes, core_spill_mask,
    [all...]
  /art/oatdump/
oatdump.cc 505 uint32_t gc_map_offset = oat_method.GetGcMapOffset(); local
506 *indent2_os << StringPrintf("(offset=0x%08x)\n", gc_map_offset);
507 if (gc_map_offset > oat_file_.Size()) {
510 gc_map_offset, oat_file_.Size());
    [all...]

Completed in 528 milliseconds