Searched defs:min_delta (Results 1 - 1 of 1) sorted by relevance

/art/runtime/gc/space/
H A Dimage_space.cc56 static int32_t ChooseRelocationOffsetDelta(int32_t min_delta, int32_t max_delta) { argument
57 CHECK_ALIGNED(min_delta, kPageSize);
59 CHECK_LT(min_delta, max_delta);
63 std::uniform_int_distribution<int32_t> distribution(min_delta, max_delta);
70 CHECK_LE(min_delta, r);

Completed in 17 milliseconds