Home
last modified time | relevance | path

Searched refs:allocSize (Results 1 – 5 of 5) sorted by relevance

/external/webkit/JavaScriptCore/jit/
DExecutableAllocator.h147 size_t allocSize = roundUpAllocationSize(n, JIT_ALLOCATOR_PAGE_SIZE); in ExecutablePool() local
148 Allocation mem = systemAlloc(allocSize); in ExecutablePool()
153 m_end = m_freePtr + allocSize; in ExecutablePool()
158 size_t allocSize = roundUpAllocationSize(n, JIT_ALLOCATOR_PAGE_SIZE); in poolAllocate() local
160 Allocation result = systemAlloc(allocSize); in poolAllocate()
165 if ((allocSize - n) > static_cast<size_t>(m_end - m_freePtr)) { in poolAllocate()
168 m_end = result.pages + allocSize; in poolAllocate()
/external/icu4c/common/
Dunisetspan.cpp264 int32_t allocSize; in UnicodeSetStringSpan() local
267 allocSize=stringsLength*(4+1+1+1+1)+utf8Length; in UnicodeSetStringSpan()
269 allocSize=stringsLength; // One set of span lengths. in UnicodeSetStringSpan()
272 allocSize+=stringsLength*4+utf8Length; in UnicodeSetStringSpan()
275 if(allocSize<=(int32_t)sizeof(staticLengths)) { in UnicodeSetStringSpan()
278 utf8Lengths=(int32_t *)uprv_malloc(allocSize); in UnicodeSetStringSpan()
405 int32_t allocSize=stringsLength*(4+1+1+1+1)+utf8Length; in UnicodeSetStringSpan() local
406 if(allocSize<=(int32_t)sizeof(staticLengths)) { in UnicodeSetStringSpan()
409 utf8Lengths=(int32_t *)uprv_malloc(allocSize); in UnicodeSetStringSpan()
418 uprv_memcpy(utf8Lengths, otherStringSpan.utf8Lengths, allocSize); in UnicodeSetStringSpan()
/external/opencore/engines/2way/src/
Dpv_2way_proxy_adapter.cpp455 uint32 allocSize = sizeof(refcount_type) + (sizeof(char) * (oscl_strlen(aTag) + 1)); in SetLogAppender() local
456 uint8 * mem = (uint8*)myAlloc.allocate(allocSize); in SetLogAppender()
484 uint32 allocSize = sizeof(refcount_type) + (sizeof(char) * (oscl_strlen(aTag) + 1)); in RemoveLogAppender() local
485 uint8 * mem = (uint8*)myAlloc.allocate(allocSize); in RemoveLogAppender()
517 uint32 allocSize = sizeof(refcount_type) + (sizeof(char) * (oscl_strlen(aTag) + 1)); in SetLogLevel() local
518 uint8 * mem = (uint8*)myAlloc.allocate(allocSize); in SetLogLevel()
546 uint32 allocSize = sizeof(refcount_type) + (sizeof(char) * (oscl_strlen(aTag) + 1)); in GetLogLevel() local
547 uint8 * mem = (uint8*)myAlloc.allocate(allocSize); in GetLogLevel()
/external/srec/portable/src/
Dpmemory_ext.c88 #define GUARD_OFF_END(allocSize) ((allocSize) - sizeof(unsigned int)) argument
/external/sqlite/dist/
Dsqlite3.c13780 int allocSize in softHeapLimitEnforcer() argument
13782 sqlite3_release_memory(allocSize); in softHeapLimitEnforcer()