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

/external/gemmlowp/test/
H A Dtest_math_helpers.cc36 Check(x >= RoundDown<Modulus>(x));
37 Check(x < RoundDown<Modulus>(x) + Modulus);
38 Check(RoundDown<Modulus>(x) % Modulus == 0);
/external/gemmlowp/internal/
H A Dcommon.h199 Integer RoundDown(Integer i) { function in namespace:gemmlowp
207 return RoundDown<Modulus>(i + Modulus - 1);
H A Dunpack_neon.h102 int dst_rows_aligned16 = RoundDown<16>(dst->rows());
151 int dst_rows_aligned4 = RoundDown<4>(dst->rows());
H A Dpack.h460 const int register_aligned_depth = RoundDown<kRegisterSize>(depth);
/external/v8/src/base/
H A Dmacros.h319 inline T RoundDown(T x, intptr_t m) { function
328 return RoundDown<T>(static_cast<T>(x + m - 1), m);
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_defs.h130 T RoundDown(T p, u64 align) { function in namespace:__tsan
H A Dtsan_mman.cc54 diff = p + size - RoundDown(p + size, kPageSize);
H A Dtsan_sync.cc137 diff = p + sz - RoundDown(p + sz, kPageSize);
H A Dtsan_rtl_report.cc378 CHECK_EQ(RoundDown(epoch, kTracePartSize), hdr->epoch0);
379 const u64 epoch0 = RoundDown(epoch, TraceSize());
381 const u64 ebegin = RoundDown(eend, kTracePartSize);
H A Dtsan_rtl.cc868 p = RoundDown(end, kPageSize);
/external/v8/src/
H A Dzone.cc226 DCHECK_EQ(size, RoundDown(size, kAlignment));
/external/v8/src/heap/
H A Dspaces.h1084 return RoundDown(size, kCodeAlignment);
1086 return RoundDown(size, kPointerSize);
3022 return RoundDown(size, Map::kSize);
H A Dspaces.cc1736 minimum_capacity_ = RoundDown(initial_capacity, Page::kPageSize);
1738 maximum_capacity_ = RoundDown(maximum_capacity, Page::kPageSize);

Completed in 335 milliseconds