Searched refs:allocSize (Results 1 - 15 of 15) sorted by relevance

/external/eigen/Eigen/src/SparseCore/
H A DAmbiVector.h72 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/chromium_org/third_party/skia/src/core/
H A DSkPictureFlat.cpp114 size_t allocSize = sizeof(SkFlatData) + size; local
115 SkFlatData* result = (SkFlatData*) controller->allocThrow(allocSize);
/external/skia/src/core/
H A DSkPictureFlat.cpp114 size_t allocSize = sizeof(SkFlatData) + size; local
115 SkFlatData* result = (SkFlatData*) controller->allocThrow(allocSize);
/external/srec/portable/src/
H A Dpmemory_ext.c88 #define GUARD_OFF_END(allocSize) ((allocSize) - sizeof(unsigned int))
/external/chromium_org/third_party/icu/source/common/
H A Dunisetspan.cpp264 int32_t allocSize; local
267 allocSize=stringsLength*(4+1+1+1+1)+utf8Length;
269 allocSize=stringsLength; // One set of span lengths.
272 allocSize+=stringsLength*4+utf8Length;
275 if(allocSize<=(int32_t)sizeof(staticLengths)) {
278 utf8Lengths=(int32_t *)uprv_malloc(allocSize);
405 int32_t allocSize=stringsLength*(4+1+1+1+1)+utf8Length; local
406 if(allocSize<=(int32_t)sizeof(staticLengths)) {
409 utf8Lengths=(int32_t *)uprv_malloc(allocSize);
418 uprv_memcpy(utf8Lengths, otherStringSpan.utf8Lengths, allocSize);
[all...]
/external/icu4c/common/
H A Dunisetspan.cpp266 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/chromium_org/third_party/WebKit/Source/wtf/
H A DPartitionAlloc.cpp452 size_t allocSize = QuantizedAllocation::quantizedSize(newSize);
453 allocSize = partitionCookieSizeAdjustAdd(allocSize);
454 size_t newIndex = allocSize >> kBucketShift;
H A DHashTable.h863 size_t allocSize = size * sizeof(ValueType); local
864 ValueType* result = static_cast<ValueType*>(partitionAllocGeneric(WTF::Partitions::getBufferPartition(), allocSize));
866 memset(result, '\0', allocSize);
/external/chromium_org/third_party/sqlite/src/src/
H A Dmalloc.c86 int allocSize
89 sqlite3_release_memory(allocSize);
/external/chromium_org/third_party/skia/src/effects/gradients/
H A DSkGradientShader.cpp475 const size_t allocSize = sizeof(uint16_t) * entryCount;
478 fCache16Storage = (uint16_t*)sk_malloc_throw(allocSize);
498 fCache16Storage = (uint16_t*)sk_malloc_throw(allocSize);
/external/skia/src/effects/gradients/
H A DSkGradientShader.cpp475 const size_t allocSize = sizeof(uint16_t) * entryCount;
478 fCache16Storage = (uint16_t*)sk_malloc_throw(allocSize);
498 fCache16Storage = (uint16_t*)sk_malloc_throw(allocSize);
/external/clang/lib/CodeGen/
H A DCGExprCXX.cpp1216 llvm::Value *allocSize = local
1220 allocatorArgs.add(RValue::get(allocSize), sizeType);
1300 EnterNewDeleteCleanup(*this, E, allocation, allocSize, allocatorArgs);
1305 assert((allocSize == allocSizeWithoutCookie) ==
1307 if (allocSize != allocSizeWithoutCookie) {
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c17806 int allocSize
17809 sqlite3_release_memory(allocSize);
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c18671 int allocSize
18674 sqlite3_release_memory(allocSize);
[all...]
/external/sqlite/dist/
H A Dsqlite3.c18671 int allocSize
18674 sqlite3_release_memory(allocSize);
[all...]

Completed in 820 milliseconds