Searched defs:allocSize (Results 1 - 7 of 7) sorted by relevance
/external/skia/src/core/ |
H A D | SkPictureFlat.cpp | 119 size_t allocSize = sizeof(SkFlatData) + size + sizeof(uint32_t); local 120 SkFlatData* result = (SkFlatData*) controller->allocThrow(allocSize);
|
/external/webkit/Source/WebKit2/Shared/mac/ |
H A D | ShareableSurface.cpp | 89 unsigned long allocSize = IOSurfaceAlignProperty(kIOSurfaceAllocSize, height * bytesPerRow); local 90 if (!allocSize) 109 values[5] = CFNumberCreate(0, kCFNumberLongType, &allocSize);
|
/external/eigen/Eigen/src/SparseCore/ |
H A D | AmbiVector.h | 72 Index allocSize = (size * sizeof(ListEl))/sizeof(Scalar); local 73 m_allocatedElements = (allocSize*sizeof(Scalar))/sizeof(ListEl); 74 m_buffer = new Scalar[allocSize]; 90 Index allocSize = m_allocatedElements * sizeof(ListEl); local 91 allocSize = allocSize/sizeof(Scalar) + (allocSize%sizeof(Scalar)>0?1:0); 92 Scalar* newBuffer = new Scalar[allocSize];
|
/external/webkit/Source/JavaScriptCore/jit/ |
H A D | ExecutableAllocator.h | 346 size_t allocSize = roundUpAllocationSize(n, JIT_ALLOCATOR_PAGE_SIZE); local 347 Allocation mem = systemAlloc(allocSize); 352 m_end = m_freePtr + allocSize; 357 size_t allocSize = roundUpAllocationSize(n, JIT_ALLOCATOR_PAGE_SIZE); local 359 Allocation result = systemAlloc(allocSize); 364 if ((allocSize - n) > static_cast<size_t>(m_end - m_freePtr)) { 367 m_end = static_cast<char*>(result.base()) + allocSize;
|
/external/webkit/Source/WebCore/platform/graphics/cg/ |
H A D | ImageBufferCG.cpp | 68 unsigned long allocSize = IOSurfaceAlignProperty(kIOSurfaceAllocSize, size.height() * bytesPerRow); local 69 if (!allocSize) 85 values[5] = CFNumberCreate(0, kCFNumberLongType, &allocSize);
|
/external/icu4c/common/ |
H A D | unisetspan.cpp | 266 int32_t allocSize; local 269 allocSize=stringsLength*(4+1+1+1+1)+utf8Length; 271 allocSize=stringsLength; // One set of span lengths. 274 allocSize+=stringsLength*4+utf8Length; 277 if(allocSize<=(int32_t)sizeof(staticLengths)) { 280 utf8Lengths=(int32_t *)uprv_malloc(allocSize); 407 int32_t allocSize=stringsLength*(4+1+1+1+1)+utf8Length; local 408 if(allocSize<=(int32_t)sizeof(staticLengths)) { 411 utf8Lengths=(int32_t *)uprv_malloc(allocSize); 420 uprv_memcpy(utf8Lengths, otherStringSpan.utf8Lengths, allocSize); [all...] |
/external/clang/lib/CodeGen/ |
H A D | CGExprCXX.cpp | 1195 llvm::Value *allocSize = local 1199 allocatorArgs.add(RValue::get(allocSize), sizeType); 1282 EnterNewDeleteCleanup(*this, E, allocation, allocSize, allocatorArgs); 1287 assert((allocSize == allocSizeWithoutCookie) == 1289 if (allocSize != allocSizeWithoutCookie) {
|
Completed in 1730 milliseconds