Home
last modified time | relevance | path

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

/art/runtime/gc/space/
Dimage_space.cc98 static int32_t ChooseRelocationOffsetDelta(int32_t min_delta, int32_t max_delta) { in ChooseRelocationOffsetDelta() argument
100 CHECK_ALIGNED(max_delta, kPageSize); in ChooseRelocationOffsetDelta()
101 CHECK_LT(min_delta, max_delta); in ChooseRelocationOffsetDelta()
103 int32_t r = GetRandomNumber<int32_t>(min_delta, max_delta); in ChooseRelocationOffsetDelta()
110 CHECK_GE(max_delta, r); in ChooseRelocationOffsetDelta()