Searched defs:max_native_offset (Results 1 - 3 of 3) sorted by relevance

/art/compiler/
H A Dgc_map_builder.h30 GcMapBuilder(std::vector<uint8_t, Alloc>* table, size_t entries, uint32_t max_native_offset, argument
33 native_offset_width_(entries != 0 && max_native_offset != 0
34 ? sizeof(max_native_offset) - CLZ(max_native_offset) / 8u
/art/compiler/optimizing/
H A Dcode_generator.cc489 uint32_t max_native_offset = 0; local
492 if (native_offset > max_native_offset) {
493 max_native_offset = native_offset;
497 GcMapBuilder builder(data, pc_infos_.Size(), max_native_offset, dex_gc_map.RegWidth());
/art/compiler/dex/quick/
H A Dcodegen_util.cc800 CodeOffset max_native_offset = 0u; local
803 max_native_offset = std::max(max_native_offset, native_offset);
820 max_native_offset, reg_width);
853 uint32_t max_native_offset = 0; local
856 if (native_offset > max_native_offset) {
857 max_native_offset = native_offset;
868 max_native_offset, dex_gc_map.RegWidth());

Completed in 95 milliseconds