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

/art/runtime/base/
H A Dbit_utils.h114 static constexpr T RoundDown(T x, typename Identity<T>::type n) WARN_UNUSED;
117 static constexpr T RoundDown(T x, typename Identity<T>::type n) { function in namespace:art
128 return RoundDown(x + n - 1, n);
137 return reinterpret_cast<T*>(RoundDown(reinterpret_cast<uintptr_t>(x), n));

Completed in 220 milliseconds