HomeSort by relevance Sort by last modified time
    Searched defs:RoundDown (Results 1 - 3 of 3) sorted by null

  /external/compiler-rt/lib/tsan/rtl/
tsan_defs.h 126 T RoundDown(T p, u64 align) {
  /external/v8/src/base/
macros.h 399 inline T RoundDown(T x, intptr_t m) {
408 return RoundDown<T>(static_cast<T>(x + m - 1), m);
  /art/runtime/base/
bit_utils.h 105 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) {
119 return RoundDown(x + n - 1, n);
128 return reinterpret_cast<T*>(RoundDown(reinterpret_cast<uintptr_t>(x), n));

Completed in 161 milliseconds