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

/art/runtime/gc/accounting/
H A Dspace_bitmap_test.cc127 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);
H A Dcard_table_test.cc62 size_t offset = RoundDown(addr - heap_begin_, kCardSize);
/art/runtime/gc/allocator/
H A Ddlmalloc.cc60 end = reinterpret_cast<void*>(art::RoundDown(reinterpret_cast<uintptr_t>(end), art::kPageSize));
/art/compiler/
H A Doat_test.cc60 uintptr_t oat_code_aligned = RoundDown(reinterpret_cast<uintptr_t>(quick_oat_code), 2);
74 uintptr_t oat_code_aligned = RoundDown(reinterpret_cast<uintptr_t>(portable_oat_code), 2);
H A Dcommon_compiler_test.cc254 uintptr_t base = RoundDown(data, kPageSize);
/art/runtime/
H A Dutils.h172 static constexpr T RoundDown(T x, typename TypeIdentity<T>::type n) WARN_UNUSED;
175 static constexpr T RoundDown(T x, typename TypeIdentity<T>::type n) { function in namespace:art
186 return RoundDown(x + n - 1, n);
195 return reinterpret_cast<T*>(RoundDown(reinterpret_cast<uintptr_t>(x), n));
H A Delf_file.cc1016 min_vaddr = RoundDown(min_vaddr, kPageSize);
/art/disassembler/
H A Ddisassembler_arm.cc796 lit_adr = RoundDown(lit_adr, 4) + 4 + (imm8 << 2);
1408 lit_adr = RoundDown(lit_adr, 4) + 4 + imm12;
1422 lit_adr = RoundDown(lit_adr, 4) + 4 + imm12;
1479 lit_adr = RoundDown(lit_adr, 4) + 4 + imm12;
/art/runtime/entrypoints/quick/
H A Dquick_trampoline_entrypoints.cc1179 sp8 = reinterpret_cast<uint8_t*>(RoundDown(reinterpret_cast<uintptr_t>(sp8), kStackAlignment));
1300 sp8 = reinterpret_cast<uint8_t*>(RoundDown(
/art/runtime/gc/space/
H A Dimage_space.cc63 r = RoundDown(r, kPageSize);
/art/compiler/dex/quick/arm64/
H A Dint_arm64.cc1669 early_drop = RoundDown(early_drop, 16);

Completed in 267 milliseconds