Home
last modified time | relevance | path

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

/art/runtime/
Dclass_linker.cc9145 uint32_t gap_start = field_offset.Uint32Value(); in AlignFieldOffset() local
9146 field_offset = MemberOffset(RoundUp(gap_start, kSize)); in AlignFieldOffset()
9147 AddGaps<kSize - 1u>(gap_start, field_offset.Uint32Value()); in AlignFieldOffset()
9189 void AddGaps(uint32_t gap_start, uint32_t gap_end) { in AddGaps() argument
9191 DCHECK_LT(gap_start, gap_end); in AddGaps()
9193 if ((gap_start & 1u) != 0u) { in AddGaps()
9195 gap1_offset_ = gap_start; in AddGaps()
9196 gap_start += 1u; in AddGaps()
9197 if (kGapsToCheck == 1u || gap_start == gap_end) { in AddGaps()
9198 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()