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

  /external/chromium_org/third_party/angle_dx11/src/compiler/
PoolAlloc.cpp 216 // much memory the caller asked for. allocationSize is the total
219 size_t allocationSize = TAllocation::allocationSize(numBytes);
221 if (allocationSize < numBytes)
228 if (allocationSize <= pageSize - currentPageOffset) {
233 currentPageOffset += allocationSize;
239 if (allocationSize > pageSize - headerSkip) {
244 size_t numBytesToAlloc = allocationSize + headerSkip;
246 if (numBytesToAlloc < allocationSize)
281 currentPageOffset = (headerSkip + allocationSize + alignmentMask) & ~alignmentMask
    [all...]
PoolAlloc.h 68 inline static size_t allocationSize(size_t size) {
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/
utilities.h 30 int AllocateFirstFreeBits(unsigned int *bits, unsigned int allocationSize, unsigned int bitsSize);
utilities.cpp 173 int AllocateFirstFreeBits(unsigned int *bits, unsigned int allocationSize, unsigned int bitsSize)
175 ASSERT(allocationSize <= bitsSize);
177 unsigned int mask = std::numeric_limits<unsigned int>::max() >> (std::numeric_limits<unsigned int>::digits - allocationSize);
179 for (unsigned int i = 0; i < bitsSize - allocationSize + 1; i++)
  /external/chromium_org/third_party/WebKit/Source/wtf/
FastMalloc.cpp 421 #define END_POISON_INDEX(allocationSize) (((allocationSize) - sizeof(uint32_t)) / sizeof(uint32_t))
422 #define POISON_ALLOCATION(allocation, allocationSize) do { \
423 ASSERT((allocationSize) >= 2 * sizeof(uint32_t)); \
426 if ((allocationSize) < 4 * sizeof(uint32_t)) \
429 reinterpret_cast<uint32_t*>(allocation)[END_POISON_INDEX(allocationSize)] = 0xbadbeef7; \
432 #define POISON_DEALLOCATION_EXPLICIT(allocation, allocationSize, startPoison, endPoison) do { \
433 ASSERT((allocationSize) >= 2 * sizeof(uint32_t)); \
436 if ((allocationSize) < 4 * sizeof(uint32_t)) \
439 reinterpret_cast<uint32_t*>(allocation)[END_POISON_INDEX(allocationSize)] = (endPoison) ^ PTR_TO_UINT32(allocation);
    [all...]
  /external/clang/lib/CodeGen/
CGExprCXX.cpp 634 // care because it only overflows if allocationSize does, too, and
641 llvm::APInt allocationSize
649 sizeWithoutCookie = llvm::ConstantInt::get(CGF.SizeTy, allocationSize);
651 allocationSize = allocationSize.uadd_ov(cookieSize, overflow);
659 size = llvm::ConstantInt::get(CGF.SizeTy, allocationSize);
    [all...]
  /external/clang/lib/AST/
Decl.cpp     [all...]
  /prebuilts/devtools/tools/lib/
ddmlib.jar 
  /prebuilts/misc/common/ddmlib/
ddmlib-prebuilt.jar 

Completed in 2097 milliseconds