/external/chromium_org/mojo/public/bindings/lib/ |
bindings_serialization.cc | 13 const size_t kAlignment = 8; 14 return size + (kAlignment - (size % kAlignment)) % kAlignment;
|
/external/chromium_org/third_party/skia/src/gpu/ |
GrMemoryPool.h | 67 kAlignment = 8, 68 kHeaderSize = GR_CT_ALIGN_UP(sizeof(BlockHeader), kAlignment), 69 kPerAllocPad = GR_CT_ALIGN_UP(sizeof(BlockHeader*), kAlignment),
|
/external/skia/src/gpu/ |
GrMemoryPool.h | 67 kAlignment = 8, 68 kHeaderSize = GR_CT_ALIGN_UP(sizeof(BlockHeader), kAlignment), 69 kPerAllocPad = GR_CT_ALIGN_UP(sizeof(BlockHeader*), kAlignment),
|
/external/chromium_org/media/cdm/ppapi/ |
fake_cdm_video_decoder.cc | 50 const int kAlignment = 8; 59 int y_stride = (width + kAlignment - 1) / kAlignment * kAlignment + kPadding; 61 (width / 2 + kAlignment - 1) / kAlignment * kAlignment + kPadding;
|
/external/chromium_org/gpu/command_buffer/client/ |
transfer_buffer_unittest.cc | 32 static const unsigned int kAlignment = 4; 48 kAlignment, 93 const unsigned int TransferBufferTest::kAlignment; 230 static const unsigned int kAlignment = 4; 281 kAlignment, 303 const unsigned int TransferBufferExpandContractTest::kAlignment;
|
gles2_implementation.h | 174 static const unsigned int kAlignment = 4;
|
/external/chromium_org/v8/src/ |
zone.h | 93 static const int kAlignment = kPointerSize; 130 // is guaranteed to be aligned as dictated by kAlignment.
|
spaces.cc | 153 MemoryChunk::kAlignment); 222 size_t aligned_requested = RoundUp(requested_size, MemoryChunk::kAlignment); 231 ASSERT(IsAddressAligned(current.start, MemoryChunk::kAlignment)); 259 ASSERT(IsAddressAligned(address, MemoryChunk::kAlignment)); 610 // +----------------------------+<- base aligned with MemoryChunk::kAlignment 625 // +----------------------------+<- base aligned with MemoryChunk::kAlignment 658 MemoryChunk::kAlignment)); 666 MemoryChunk::kAlignment, 688 MemoryChunk::kAlignment, [all...] |
spaces.h | 534 static const intptr_t kAlignment = 537 static const intptr_t kAlignmentMask = kAlignment - 1; 962 ASSERT(IsAddressAligned(start, MemoryChunk::kAlignment)); 967 ASSERT(IsAddressAligned(start, MemoryChunk::kAlignment)); [all...] |
/external/v8/src/ |
zone.h | 98 static const int kAlignment = kPointerSize; 135 // is guaranteed to be aligned as dictated by kAlignment.
|
spaces.cc | 152 MemoryChunk::kAlignment); 220 size_t aligned_requested = RoundUp(requested, MemoryChunk::kAlignment); 229 ASSERT(IsAddressAligned(current.start, MemoryChunk::kAlignment)); 246 ASSERT(IsAddressAligned(address, MemoryChunk::kAlignment)); 516 MemoryChunk::kAlignment)); 523 MemoryChunk::kAlignment, 540 MemoryChunk::kAlignment, [all...] |
spaces.h | 477 static const intptr_t kAlignment = 480 static const intptr_t kAlignmentMask = kAlignment - 1; 851 ASSERT(IsAddressAligned(start, MemoryChunk::kAlignment)); 856 ASSERT(IsAddressAligned(start, MemoryChunk::kAlignment)); [all...] |
/art/runtime/gc/accounting/ |
space_bitmap.h | 43 static const size_t kAlignment = 8; 52 // heap_begin of heap_capacity bytes, where objects are guaranteed to be kAlignment-aligned. 67 return offset / kAlignment / kBitsPerWord; 71 return static_cast<uintptr_t>(index * kAlignment * kBitsPerWord); 76 return static_cast<uintptr_t>(kWordHighBitMask) >> ((offset_ / kAlignment) % kBitsPerWord); 122 for (; visit_begin < visit_end; visit_begin += kAlignment) {
|
/art/runtime/gc/space/ |
large_object_space.h | 135 static const size_t kAlignment = kPageSize;
|
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
common.h | 65 static const size_t kAlignment = 8; 75 (kLinkSize > kAlignment ? kLinkSize : kAlignment); 76 static const size_t kSkippedClasses = (kAlignment < kMinClassSize ? 1 : 0);
|
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
common.h | 75 static const size_t kAlignment = 8;
|
/external/chromium/third_party/libjingle/source/talk/base/ |
stream.h | 534 static const int kAlignment = 16;
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
stream.h | 623 static const int kAlignment = 16; [all...] |
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/ |
tcmalloc_unittest.cc | 954 // kAlignment + kTooBig does not overflow. 955 const int kAlignment = 1 << 5; 959 ret = Memalign(kAlignment, kTooBig); 966 PosixMemalign(&ret, kAlignment, kTooBig)); [all...] |
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/ |
tcmalloc_unittest.cc | 954 // kAlignment + kTooBig does not overflow. 955 const int kAlignment = 1 << 5; 959 ret = Memalign(kAlignment, kTooBig); 966 PosixMemalign(&ret, kAlignment, kTooBig)); [all...] |
/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
videoframe_unittest.h | 68 static const int kAlignment = 16; 517 talk_base::scoped_ptr<uint8[]> buf(new uint8[buf_size + kAlignment]); 518 uint8* y = ALIGNP(buf.get(), kAlignment); 538 talk_base::scoped_ptr<uint8[]> buf(new uint8[buf_size + kAlignment]); 539 uint8* yuy2 = ALIGNP(buf.get(), kAlignment); 555 talk_base::scoped_ptr<uint8[]> buf(new uint8[buf_size + kAlignment + 1]); 556 uint8* yuy2 = ALIGNP(buf.get(), kAlignment) + 1; 721 talk_base::scoped_ptr<uint8[]> outbuf(new uint8[out_size + kAlignment]); 722 uint8 *out = ALIGNP(outbuf.get(), kAlignment); 737 talk_base::scoped_ptr<uint8[]> outbuf(new uint8[out_size + kAlignment]); [all...] |