HomeSort by relevance Sort by last modified time
    Searched refs:RoundDown (Results 1 - 25 of 26) sorted by null

1 2

  /external/gemmlowp/internal/
common.h 199 Integer RoundDown(Integer i) {
207 return RoundDown<Modulus>(i + Modulus - 1);
unpack_neon.h 102 int dst_rows_aligned16 = RoundDown<16>(dst->rows());
151 int dst_rows_aligned4 = RoundDown<4>(dst->rows());
pack.h 460 const int register_aligned_depth = RoundDown<kRegisterSize>(depth);
  /art/runtime/gc/accounting/
space_bitmap_test.cc 127 size_t offset = RoundDown(r.next() % heap_capacity, kAlignment);
141 size_t offset = RoundDown(r.next() % heap_capacity, kAlignment);
143 size_t end = offset + RoundDown(r.next() % (remain + 1), kAlignment);
card_table_test.cc 65 size_t offset = RoundDown(addr - heap_begin_, CardTable::kCardSize);
  /external/gemmlowp/test/
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/v8/src/base/
macros.h 309 inline T RoundDown(T x, intptr_t m) {
318 return RoundDown<T>(static_cast<T>(x + m - 1), m);
  /art/runtime/gc/allocator/
dlmalloc.cc 66 end = reinterpret_cast<void*>(art::RoundDown(reinterpret_cast<uintptr_t>(end), art::kPageSize));
  /external/compiler-rt/lib/tsan/rtl/
tsan_defs.h 130 T RoundDown(T p, u64 align) {
tsan_mman.cc 54 diff = p + size - RoundDown(p + size, kPageSize);
tsan_sync.cc 137 diff = p + sz - RoundDown(p + sz, kPageSize);
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);
tsan_rtl.cc 868 p = RoundDown(end, kPageSize);
  /art/runtime/base/
bit_utils.h 114 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) {
128 return RoundDown(x + n - 1, n);
137 return reinterpret_cast<T*>(RoundDown(reinterpret_cast<uintptr_t>(x), n));
  /frameworks/native/cmds/installd/
otapreopt.cpp 65 static constexpr T RoundDown(T x, typename std::decay<T>::type n) {
71 return RoundDown(x + n - 1, n);
446 r = RoundDown(r, kPageSize);
  /art/runtime/mirror/
string-inl.h 176 constexpr size_t max_length = RoundDown(max_alloc_length, kObjectAlignment / sizeof(uint16_t));
  /external/v8/src/
zone.cc 224 DCHECK_EQ(size, RoundDown(size, kAlignment));
  /art/compiler/
common_compiler_test.cc 102 uintptr_t base = RoundDown(data, kPageSize);
oat_test.cc 79 uintptr_t oat_code_aligned = RoundDown(reinterpret_cast<uintptr_t>(quick_oat_code), 2);
    [all...]
  /art/runtime/jit/
jit_code_cache.cc 91 initial_capacity = RoundDown(initial_capacity, 2 * kPageSize);
92 max_capacity = RoundDown(max_capacity, 2 * kPageSize);
    [all...]
  /external/v8/src/heap/
spaces.h     [all...]
spaces.cc     [all...]
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints.cc     [all...]
  /art/disassembler/
disassembler_arm.cc 439 uintptr_t pc = RoundDown(reinterpret_cast<intptr_t>(instr_ptr) + 4, 4);
    [all...]
  /art/runtime/
elf_file.cc     [all...]

Completed in 418 milliseconds

1 2