Home
last modified time | relevance | path

Searched refs:gap_start (Results 1 – 3 of 3) sorted by relevance

/art/runtime/
Dclass_linker.cc8463 uint32_t gap_start = field_offset.Uint32Value(); in AlignFieldOffset() local
8464 field_offset = MemberOffset(RoundUp(gap_start, kSize)); in AlignFieldOffset()
8465 AddGaps<kSize - 1u>(gap_start, field_offset.Uint32Value()); in AlignFieldOffset()
8507 void AddGaps(uint32_t gap_start, uint32_t gap_end) { in AddGaps() argument
8509 DCHECK_LT(gap_start, gap_end); in AddGaps()
8511 if ((gap_start & 1u) != 0u) { in AddGaps()
8513 gap1_offset_ = gap_start; in AddGaps()
8514 gap_start += 1u; in AddGaps()
8515 if (kGapsToCheck == 1u || gap_start == gap_end) { in AddGaps()
8516 DCHECK_EQ(gap_start, gap_end); in AddGaps()
[all …]
/art/dex2oat/linker/arm/
Drelative_patcher_thumb2_test.cc152 const uint32_t gap_start = method1_offset + method1_code.size(); in Create2MethodsWithGap() local
167 uint32_t gap_size = gap_end - gap_start; in Create2MethodsWithGap()
169 uint32_t chunk_start = gap_start; in Create2MethodsWithGap()
/art/dex2oat/linker/arm64/
Drelative_patcher_arm64_test.cc119 const uint32_t gap_start = method1_offset + method1_code.size(); in Create2MethodsWithGap() local
134 uint32_t gap_size = gap_end - gap_start; in Create2MethodsWithGap()
136 uint32_t chunk_start = gap_start; in Create2MethodsWithGap()