HomeSort by relevance Sort by last modified time
    Searched defs:allocationSize (Results 1 - 4 of 4) 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) {
  /external/clang/lib/AST/
Decl.cpp     [all...]
  /external/clang/lib/CodeGen/
CGExprCXX.cpp 629 // care because it only overflows if allocationSize does, too, and
636 llvm::APInt allocationSize
644 sizeWithoutCookie = llvm::ConstantInt::get(CGF.SizeTy, allocationSize);
646 allocationSize = allocationSize.uadd_ov(cookieSize, overflow);
654 size = llvm::ConstantInt::get(CGF.SizeTy, allocationSize);
    [all...]

Completed in 186 milliseconds