HomeSort by relevance Sort by last modified time
    Searched refs:allocationSize (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/third_party/angle/src/compiler/translator/
PoolAlloc.cpp 217 // much memory the caller asked for. allocationSize is the total
220 size_t allocationSize = TAllocation::allocationSize(numBytes);
222 if (allocationSize < numBytes)
229 if (allocationSize <= pageSize - currentPageOffset) {
234 currentPageOffset += allocationSize;
240 if (allocationSize > pageSize - headerSkip) {
245 size_t numBytesToAlloc = allocationSize + headerSkip;
247 if (numBytesToAlloc < allocationSize)
282 currentPageOffset = (headerSkip + allocationSize + alignmentMask) & ~alignmentMask
    [all...]
PoolAlloc.h 68 inline static size_t allocationSize(size_t size) {
  /external/chromium_org/third_party/WebKit/Source/core/html/
CollectionItemsCache.h 54 ptrdiff_t allocationSize() const { return m_cachedList.capacity() * sizeof(NodeType*); }
73 if (ptrdiff_t diff = allocationSize())
95 ptrdiff_t oldCapacity = allocationSize();
100 if (ptrdiff_t diff = allocationSize() - oldCapacity)
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/
AllocationProfile.js 232 node.allocationSize,
282 this.allocationSize = size;
298 this.allocationSize = 0;
379 this.totalSize += node.allocationSize;
404 var size = node.allocationSize;
410 bottomUpNode.allocationSize += size;
  /external/chromium_org/third_party/angle/src/common/
utilities.cpp 319 int AllocateFirstFreeBits(unsigned int *bits, unsigned int allocationSize, unsigned int bitsSize)
321 ASSERT(allocationSize <= bitsSize);
323 unsigned int mask = std::numeric_limits<unsigned int>::max() >> (std::numeric_limits<unsigned int>::digits - allocationSize);
325 for (unsigned int i = 0; i < bitsSize - allocationSize + 1; i++)
utilities.h 35 int AllocateFirstFreeBits(unsigned int *bits, unsigned int allocationSize, unsigned int bitsSize);
  /external/chromium_org/third_party/WebKit/Source/wtf/
Vector.h 294 size_t sizeToAllocate = allocationSize(newCapacity);
299 size_t allocationSize(size_t capacity) const
375 using Base::allocationSize;
446 size_t allocationSize(size_t capacity) const
450 return Base::allocationSize(capacity);
731 using Base::allocationSize;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/heap/
Heap.cpp 222 size_t allocationSize = size + blinkPageSize;
223 base = static_cast<Address>(mmap(alignedRandomAddress, allocationSize, PROT_NONE, MAP_ANON | MAP_PRIVATE, -1, 0));
226 Address end = base + allocationSize;
254 size_t allocationSize = size + blinkPageSize;
256 base = static_cast<Address>(VirtualAlloc(0, allocationSize, MEM_RESERVE, PAGE_NOACCESS));
270 base = static_cast<Address>(VirtualAlloc(0, allocationSize, MEM_RESERVE, PAGE_NOACCESS));
344 size_t allocationSize = payloadSize + 2 * osPageSize();
345 PageMemoryRegion* pageMemoryRegion = PageMemoryRegion::allocate(allocationSize, 1);
632 size_t allocationSize = allocationSizeFromSize(size);
639 ensureCurrentAllocation(allocationSize, gcInfo)
    [all...]
Heap.h     [all...]
  /external/clang/lib/CodeGen/
CGExprCXX.cpp 546 // care because it only overflows if allocationSize does, too, and
553 llvm::APInt allocationSize
561 sizeWithoutCookie = llvm::ConstantInt::get(CGF.SizeTy, allocationSize);
563 allocationSize = allocationSize.uadd_ov(cookieSize, overflow);
571 size = llvm::ConstantInt::get(CGF.SizeTy, allocationSize);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
StringImpl.cpp 299 StringImpl* string = static_cast<StringImpl*>(partitionAllocGeneric(Partitions::getBufferPartition(), allocationSize<LChar>(length)));
315 StringImpl* string = static_cast<StringImpl*>(partitionAllocGeneric(Partitions::getBufferPartition(), allocationSize<UChar>(length)));
330 size_t size = is8Bit ? allocationSize<LChar>(length) : allocationSize<UChar>(length);
    [all...]
StringImpl.h 428 template<typename CharType> static size_t allocationSize(unsigned length)
  /external/clang/lib/AST/
Decl.cpp     [all...]

Completed in 445 milliseconds