Home
last modified time | relevance | path

Searched refs:key_type (Results 1 – 2 of 2) sorted by relevance

/art/compiler/linker/arm/
Drelative_patcher_arm_base.cc317 ThunkType key_type = static_cast<ThunkType>(-1); in ProcessPatches() local
320 key_type = ThunkType::kMethodCall; in ProcessPatches()
323 ThunkKey key(key_type, ThunkParams{{ 0u, 0u }}); // NOLINT(whitespace/braces) in ProcessPatches()
324 uint32_t max_next_offset = CalculateMaxNextOffset(patch_offset, key_type); in ProcessPatches()
333 key_type = key.GetType(); in ProcessPatches()
336 uint32_t max_next_offset = CalculateMaxNextOffset(patch_offset, key_type); in ProcessPatches()
345 DCHECK(key_type != static_cast<ThunkType>(-1)); in ProcessPatches()
350 DCHECK_LE(old_data->MaxNextOffset(), CalculateMaxNextOffset(patch_offset, key_type)); in ProcessPatches()
353 patch_offset - old_data->LastReservedOffset() > MaxNegativeDisplacement(key_type)) { in ProcessPatches()
354 old_data->SetMaxNextOffset(CalculateMaxNextOffset(patch_offset, key_type)); in ProcessPatches()
/art/runtime/
Dsafe_map.h44 typedef typename ::std::map<K, V, Comparator, Allocator>::key_type key_type; typedef