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

1 2 3 4 5

  /external/gemmlowp/internal/
block_params.h 65 l2_depth = RoundUp<kRegisterSize>(depth);
76 RoundUp<KernelFormat::kCols>(CeilQuotient(cols, min_l2_cols_blocks));
83 l2_rows = RoundUp<KernelFormat::kRows>(rows);
91 RoundUp<KernelFormat::kRows>(CeilQuotient(rows, min_l2_rows_blocks));
124 RoundUp<kRegisterSize>(CeilQuotient(depth, min_l1_depth_blocks));
133 RoundUp<KernelFormat::kRows>(CeilQuotient(rows, min_l1_rows_blocks));
common.h 206 Integer RoundUp(Integer i) {
  /art/runtime/utils/
dex_cache_arrays_layout-inl.h 35 RoundUp(types_offset_ + TypesSize(header.type_ids_size_), MethodsAlignment())),
37 RoundUp(methods_offset_ + MethodsSize(header.method_ids_size_), StringsAlignment())),
39 RoundUp(strings_offset_ + StringsSize(header.string_ids_size_), FieldsAlignment())),
41 RoundUp(fields_offset_ + FieldsSize(header.field_ids_size_), Alignment())) {
  /art/runtime/gc/space/
bump_pointer_space-inl.h 30 num_bytes = RoundUp(num_bytes, kAlignment);
47 num_bytes = RoundUp(num_bytes, kAlignment);
93 *usable_size = RoundUp(num_bytes, kAlignment);
malloc_space.cc 88 *growth_limit = RoundUp(*growth_limit, kPageSize);
89 *capacity = RoundUp(*capacity, kPageSize);
123 growth_limit = RoundUp(growth_limit, kPageSize);
166 SetEnd(reinterpret_cast<uint8_t*>(RoundUp(reinterpret_cast<uintptr_t>(End()), kPageSize)));
171 size_t size = RoundUp(Size(), kPageSize);
183 SetGrowthLimit(RoundUp(size, kPageSize));
region_space-inl.h 29 num_bytes = RoundUp(num_bytes, kAlignment);
146 *usable_size = RoundUp(num_bytes, kAlignment);
149 *usable_size = RoundUp(num_bytes, kRegionSize);
261 return reinterpret_cast<mirror::Object*>(RoundUp(position, kAlignment));
270 size_t num_regs = RoundUp(num_bytes, kRegionSize) / kRegionSize;
  /external/gemmlowp/test/
test_math_helpers.cc 40 Check(x <= RoundUp<Modulus>(x));
41 Check(x > RoundUp<Modulus>(x) - Modulus);
42 Check(RoundUp<Modulus>(x) % Modulus == 0);
  /art/runtime/gc/accounting/
bitmap.cc 45 const size_t bitmap_size = RoundUp(
46 RoundUp(num_bits, kBitsPerBitmapWord) / kBitsPerBitmapWord * sizeof(uintptr_t), kPageSize);
  /art/compiler/utils/
swap_space.cc 109 size = RoundUp(size, 8U);
138 size_t next_part = std::max(RoundUp(min_size, kPageSize), RoundUp(kMininumMapSize, kPageSize));
166 size = RoundUp(size, 8U);
  /art/runtime/arch/x86/
quick_method_frame_info_x86.h 57 return RoundUp((POPCOUNT(X86CalleeSaveCoreSpills(type)) /* gprs */ +
  /external/v8/src/base/platform/
platform-aix.cc 66 const size_t msize = RoundUp(requested, getpagesize());
140 RoundUp(size + alignment, static_cast<intptr_t>(OS::AllocateAlignment()));
147 uint8_t* aligned_base = RoundUp(base, alignment);
157 size_t aligned_size = RoundUp(size, OS::AllocateAlignment());
platform-freebsd.cc 60 const size_t msize = RoundUp(requested, getpagesize());
137 size_t request_size = RoundUp(size + alignment,
148 uint8_t* aligned_base = RoundUp(base, alignment);
158 size_t aligned_size = RoundUp(size, OS::AllocateAlignment());
platform-macos.cc 57 const size_t msize = RoundUp(requested, getpagesize());
130 size_t request_size = RoundUp(size + alignment,
141 uint8_t* aligned_base = RoundUp(base, alignment);
151 size_t aligned_size = RoundUp(size, OS::AllocateAlignment());
platform-openbsd.cc 58 const size_t msize = RoundUp(requested, AllocateAlignment());
168 size_t request_size = RoundUp(size + alignment,
179 uint8_t* aligned_base = RoundUp(base, alignment);
189 size_t aligned_size = RoundUp(size, OS::AllocateAlignment());
platform-qnx.cc 109 const size_t msize = RoundUp(requested, AllocateAlignment());
194 size_t request_size = RoundUp(size + alignment,
205 uint8_t* aligned_base = RoundUp(base, alignment);
215 size_t aligned_size = RoundUp(size, OS::AllocateAlignment());
platform-solaris.cc 56 const size_t msize = RoundUp(requested, getpagesize());
90 size_t request_size = RoundUp(size + alignment,
101 uint8_t* aligned_base = RoundUp(base, alignment);
111 size_t aligned_size = RoundUp(size, OS::AllocateAlignment());
platform-linux.cc 135 const size_t msize = RoundUp(requested, AllocateAlignment());
252 size_t request_size = RoundUp(size + alignment,
263 uint8_t* aligned_base = RoundUp(base, alignment);
273 size_t aligned_size = RoundUp(size, OS::AllocateAlignment());
  /art/compiler/jni/quick/mips64/
calling_convention_mips64.cc 158 return RoundUp(frame_data_size + handle_scope_size + SizeOfReturnValue(), kStackAlignment);
162 return RoundUp(NumberOfOutgoingStackArgs() * kFramePointerSize, kStackAlignment);
  /art/compiler/jni/quick/x86/
calling_convention_x86.cc 188 return RoundUp(frame_data_size + handle_scope_size + SizeOfReturnValue(), kStackAlignment);
192 return RoundUp(NumberOfOutgoingStackArgs() * kFramePointerSize, kStackAlignment);
  /art/runtime/base/
scoped_arena_allocator.cc 97 size_t rounded_bytes = RoundUp(bytes + kMemoryToolRedZoneBytes, 8);
128 arena_stack_->top_ptr_ = mark_ptr_ + RoundUp(sizeof(ScopedArenaAllocator), 8);
  /art/runtime/arch/arm/
quick_entrypoints_cc_arm.cc 18 #include "utils.h" // For RoundUp().
55 fpr_double_index = std::max(fpr_double_index, RoundUp(fpr_index, 2));
  /art/runtime/arch/x86_64/
quick_method_frame_info_x86_64.h 54 return RoundUp((POPCOUNT(X86_64CalleeSaveCoreSpills(type)) /* gprs */ +
  /art/runtime/gc/allocator/
dlmalloc.cc 65 start = reinterpret_cast<void*>(art::RoundUp(reinterpret_cast<uintptr_t>(start), art::kPageSize));
  /external/compiler-rt/lib/tsan/rtl/
tsan_defs.h 124 T RoundUp(T p, u64 align) {
  /art/compiler/
elf_builder.h 562 CHECK(loaded_size_ == 0 || loaded_size_ == RoundUp(virtual_address_, kPageSize))
635 Elf_Word text_address = RoundUp(rodata_address + rodata_size, kPageSize);
636 Elf_Word bss_address = RoundUp(text_address + text_size, kPageSize);
637 Elf_Word abiflags_address = RoundUp(bss_address + bss_size, kPageSize);
642 Elf_Word dynstr_address = RoundUp(abiflags_address + abiflags_size, kPageSize);
693 RoundUp(dynstr_address + dynstr_.GetCacheSize(), dynsym_.header_.sh_addralign);
695 RoundUp(dynsym_address + dynsym_.GetCacheSize(), hash_.header_.sh_addralign);
697 Elf_Word dynamic_address = RoundUp(hash_address + dynsym_.GetCacheSize(), kPageSize);
710 loaded_size_ = RoundUp(dynamic_address + dynamic_.GetCacheSize(), kPageSize);
719 CHECK_EQ(loaded_size_, RoundUp(dynamic_.GetAddress() + dynamic_.GetSize(), kPageSize))
    [all...]

Completed in 541 milliseconds

1 2 3 4 5