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

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

Completed in 212 milliseconds