Searched refs:RoundDown (Results 1 - 13 of 13) sorted by relevance
/external/gemmlowp/test/ |
H A D | test_math_helpers.cc | 36 Check(x >= RoundDown<Modulus>(x)); 37 Check(x < RoundDown<Modulus>(x) + Modulus); 38 Check(RoundDown<Modulus>(x) % Modulus == 0);
|
/external/gemmlowp/internal/ |
H A D | common.h | 199 Integer RoundDown(Integer i) { function in namespace:gemmlowp 207 return RoundDown<Modulus>(i + Modulus - 1);
|
H A D | unpack_neon.h | 102 int dst_rows_aligned16 = RoundDown<16>(dst->rows()); 151 int dst_rows_aligned4 = RoundDown<4>(dst->rows());
|
H A D | pack.h | 460 const int register_aligned_depth = RoundDown<kRegisterSize>(depth);
|
/external/v8/src/base/ |
H A D | macros.h | 319 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 D | tsan_defs.h | 130 T RoundDown(T p, u64 align) { function in namespace:__tsan
|
H A D | tsan_mman.cc | 54 diff = p + size - RoundDown(p + size, kPageSize);
|
H A D | tsan_sync.cc | 137 diff = p + sz - RoundDown(p + sz, kPageSize);
|
H A D | tsan_rtl_report.cc | 378 CHECK_EQ(RoundDown(epoch, kTracePartSize), hdr->epoch0); 379 const u64 epoch0 = RoundDown(epoch, TraceSize()); 381 const u64 ebegin = RoundDown(eend, kTracePartSize);
|
H A D | tsan_rtl.cc | 868 p = RoundDown(end, kPageSize);
|
/external/v8/src/ |
H A D | zone.cc | 226 DCHECK_EQ(size, RoundDown(size, kAlignment));
|
/external/v8/src/heap/ |
H A D | spaces.h | 1084 return RoundDown(size, kCodeAlignment); 1086 return RoundDown(size, kPointerSize); 3022 return RoundDown(size, Map::kSize);
|
H A D | spaces.cc | 1736 minimum_capacity_ = RoundDown(initial_capacity, Page::kPageSize); 1738 maximum_capacity_ = RoundDown(maximum_capacity, Page::kPageSize);
|
Completed in 335 milliseconds