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

  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
PoolAlloc.cpp 225 // much memory the caller asked for. allocationSize is the total
228 size_t allocationSize = TAllocation::allocationSize(numBytes);
240 if (currentPageOffset + allocationSize <= pageSize) {
245 currentPageOffset += allocationSize;
251 if (allocationSize + headerSkip > pageSize) {
256 size_t numBytesToAlloc = allocationSize + headerSkip;
289 currentPageOffset = (headerSkip + allocationSize + alignmentMask) & ~alignmentMask;
PoolAlloc.h 68 inline static size_t allocationSize(size_t size) {
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
AllocationInfo.java 122 AllocationInfo(int allocNumber, String allocatedClass, int allocationSize,
126 mAllocationSize = allocationSize;
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
utilities.cpp 162 int AllocateFirstFreeBits(unsigned int *bits, unsigned int allocationSize, unsigned int bitsSize)
164 ASSERT(allocationSize <= bitsSize);
166 unsigned int mask = std::numeric_limits<unsigned int>::max() >> (std::numeric_limits<unsigned int>::digits - allocationSize);
168 for (unsigned int i = 0; i < bitsSize - allocationSize + 1; i++)
utilities.h 28 int AllocateFirstFreeBits(unsigned int *bits, unsigned int allocationSize, unsigned int bitsSize);
  /external/clang/lib/CodeGen/
CGExprCXX.cpp 591 // care because it only overflows if allocationSize does, too, and
598 llvm::APInt allocationSize
606 sizeWithoutCookie = llvm::ConstantInt::get(CGF.SizeTy, allocationSize);
608 allocationSize = allocationSize.uadd_ov(cookieSize, overflow);
616 size = llvm::ConstantInt::get(CGF.SizeTy, allocationSize);
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
FastMalloc.cpp     [all...]
  /external/clang/lib/AST/
Decl.cpp     [all...]

Completed in 197 milliseconds