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

/art/compiler/
H A Dgc_map_builder.h29 GcMapBuilder(std::vector<uint8_t>* table, size_t entries, uint32_t max_native_offset, argument
32 native_offset_width_(entries != 0 && max_native_offset != 0
33 ? sizeof(max_native_offset) - CLZ(max_native_offset) / 8u
/art/compiler/optimizing/
H A Dcode_generator.cc281 uint32_t max_native_offset = 0; local
284 if (native_offset > max_native_offset) {
285 max_native_offset = native_offset;
289 GcMapBuilder builder(data, pc_infos_.Size(), max_native_offset, dex_gc_map.RegWidth());
/art/compiler/dex/quick/
H A Dcodegen_util.cc751 uint32_t max_native_offset = 0; local
754 if (native_offset > max_native_offset) {
755 max_native_offset = native_offset;
766 max_native_offset, dex_gc_map.RegWidth());

Completed in 60 milliseconds