Home
last modified time | relevance | path

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

/art/runtime/gc/space/
Dimage_space.cc97 static int32_t ChooseRelocationOffsetDelta(int32_t min_delta, int32_t max_delta) { in ChooseRelocationOffsetDelta() argument
98 CHECK_ALIGNED(min_delta, kPageSize); in ChooseRelocationOffsetDelta()
100 CHECK_LT(min_delta, max_delta); in ChooseRelocationOffsetDelta()
102 int32_t r = GetRandomNumber<int32_t>(min_delta, max_delta); in ChooseRelocationOffsetDelta()
108 CHECK_LE(min_delta, r); in ChooseRelocationOffsetDelta()