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

1 2

  /external/v8/src/
circular-queue.cc 61 RoundUp(1, kProcessorCacheLineSize) +
62 RoundUp(static_cast<int>(sizeof(ProducerPosition)),
64 RoundUp(static_cast<int>(sizeof(ConsumerPosition)),
69 RoundUp(positions_, kProcessorCacheLineSize));
zone.cc 144 position_ = RoundUp(start, kAlignment);
203 Address result = RoundUp(segment->start(), kAlignment);
zone-inl.h 45 size = RoundUp(size, kAlignment);
fixed-dtoa.cc 194 static void RoundUp(Vector<char> buffer, int* length, int* decimal_point) {
267 RoundUp(buffer, length, decimal_point);
286 RoundUp(buffer, length, decimal_point);
platform-macos.cc 153 const size_t msize = RoundUp(requested, getpagesize());
364 size_t request_size = RoundUp(size + alignment,
375 Address aligned_base = RoundUp(base, alignment);
385 size_t aligned_size = RoundUp(size, OS::AllocateAlignment());
platform-solaris.cc 182 const size_t msize = RoundUp(requested, getpagesize());
345 size_t request_size = RoundUp(size + alignment,
356 Address aligned_base = RoundUp(base, alignment);
366 size_t aligned_size = RoundUp(size, OS::AllocateAlignment());
platform-freebsd.cc 170 const size_t msize = RoundUp(requested, getpagesize());
355 size_t request_size = RoundUp(size + alignment,
366 Address aligned_base = RoundUp(base, alignment);
376 size_t aligned_size = RoundUp(size, OS::AllocateAlignment());
platform-linux.cc 368 const size_t msize = RoundUp(requested, AllocateAlignment());
613 size_t request_size = RoundUp(size + alignment,
624 Address aligned_base = RoundUp(base, alignment);
634 size_t aligned_size = RoundUp(size, OS::AllocateAlignment());
    [all...]
platform-openbsd.cc 188 const size_t msize = RoundUp(requested, AllocateAlignment());
402 size_t request_size = RoundUp(size + alignment,
413 Address aligned_base = RoundUp(base, alignment);
423 size_t aligned_size = RoundUp(size, OS::AllocateAlignment());
safepoint-table.cc 178 RoundUp(bits_per_entry, kBitsPerByte) >> kBitsPerByteLog2;
spaces.cc 151 RoundUp(reinterpret_cast<Address>(code_range_->address()),
220 size_t aligned_requested = RoundUp(requested, MemoryChunk::kAlignment);
274 capacity_ = RoundUp(capacity, Page::kPageSize);
275 capacity_executable_ = RoundUp(capacity_executable, Page::kPageSize);
349 Address base = RoundUp(static_cast<Address>(reservation.address()),
500 chunk_size = RoundUp(CodePageAreaStartOffset() + body_size,
707 return RoundUp(Page::kObjectStartOffset, OS::CommitPageSize());
    [all...]
platform-win32.cc 926 size_t msize = RoundUp(requested, static_cast<int>(GetPageSize()));
    [all...]
platform-cygwin.cc 155 const size_t msize = RoundUp(requested, sysconf(_SC_PAGESIZE));
store-buffer.cc 63 reinterpret_cast<Address*>(RoundUp(start_as_int, kStoreBufferSize * 2));
utils.h 124 inline T RoundUp(T x, intptr_t m) {
heap.cc     [all...]
serialize.cc     [all...]
objects.h     [all...]
objects-inl.h     [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_defs.h 118 T RoundUp(T p, int align) {
tsan_interceptors.cc 657 sz = RoundUp(sz, kPageSize);
    [all...]
  /external/v8/test/cctest/
test-serialize.cc 609 i = RoundUp(i, Page::kPageSize);
629 i = RoundUp(i, Page::kPageSize);
647 i = RoundUp(i, Page::kPageSize);
test-spaces.cc 71 Address page_start = RoundUp(start, Page::kPageSize);
  /external/mdnsresponder/mDNSShared/
CommonServices.h 609 /*! @function RoundUp
614 #define RoundUp( X, Y ) ( ( X ) + ( ( Y ) - ( ( X ) % ( Y ) ) ) )
    [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp     [all...]

Completed in 1052 milliseconds

1 2