/external/deqp/framework/delibs/decpp/ |
deMemPool.hpp | 37 class MemPool 40 MemPool (const deMemPoolUtil* util = DE_NULL, deUint32 flags = 0u); 41 MemPool (MemPool* parent); 42 ~MemPool (void); 55 MemPool (const MemPool& other); // Not allowed! 56 MemPool& operator= (const MemPool& other); // Not allowed! 61 // MemPool utils [all...] |
deMemPool.cpp | 32 char* copyToPool (de::MemPool* pool, const char* string)
|
dePoolString.hpp | 45 explicit PoolString (MemPool* pool); 46 PoolString (MemPool* pool, const PoolString& other); 73 inline PoolString::PoolString (MemPool* pool)
|
dePoolArray.cpp | 34 MemPool pool; 108 MemPool pool; 240 MemPool pool; 272 MemPool pool;
|
dePoolArray.hpp | 58 explicit PoolArray (MemPool* pool); 59 PoolArray (MemPool* pool, const PoolArray<T, Alignment>& other); 96 MemPool* m_pool; 217 PoolArray<T, Alignment>::PoolArray (MemPool* pool)
|
/device/moto/shamu/camera/QCamera/HAL/core/inc/ |
QCameraHWI_Mem.h | 45 struct MemPool : public RefBase { 46 MemPool(int buffer_size, int num_buffers, 50 virtual ~MemPool() = 0; 69 class AshmemPool : public MemPool { 76 class PmemPool : public MemPool { 93 class IonPool : public MemPool {
|
/device/moto/shamu/camera/QCamera/HAL/core/src/ |
QCameraHWI_Mem.cpp | 65 MemPool::MemPool(int buffer_size, int num_buffers, 77 void MemPool::completeInitialization() 97 MemPool(buffer_size, 102 ALOGV("constructing MemPool %s backed by ashmem: " 139 MemPool::~MemPool() 141 ALOGV("destroying MemPool %s", mName); 145 ALOGV("destroying MemPool %s completed", mName); 149 status_t MemPool::dump(int fd, const Vector<String16>& args) cons [all...] |
/external/pdfium/third_party/lcms2-2.6/src/ |
cmsnamed.c | 61 // Grows a mempool table for a MLU. Each time this function is called, mempool size is multiplied times two. 80 NewPtr = _cmsRealloc(mlu ->ContextID, mlu ->MemPool, size); 84 mlu ->MemPool = NewPtr; 165 Ptr = (cmsUInt8Number*) mlu ->MemPool; 257 NewMlu ->MemPool = NULL; 261 NewMlu ->MemPool = _cmsMalloc(mlu ->ContextID, mlu ->PoolUsed); 262 if (NewMlu ->MemPool == NULL) goto Error; 267 if (NewMlu ->MemPool == NULL || mlu ->MemPool == NULL) goto Error [all...] |
cmsplugin.c | 523 if (ctx ->MemPool == NULL) { 527 ctx->MemPool = _cmsCreateSubAlloc(0, 2*1024); 535 return _cmsSubAlloc(ctx->MemPool, size); 787 ctx ->MemPool = _cmsCreateSubAlloc(ctx, 22 * sizeof(void*)); // default size about 32 pointers 788 if (ctx ->MemPool == NULL) { 847 ctx ->MemPool = _cmsCreateSubAlloc(ctx, 22 * sizeof(void*)); 848 if (ctx ->MemPool == NULL) { 921 if (ctx -> MemPool != NULL) 922 _cmsSubAllocDestroy(ctx ->MemPool); 923 ctx -> MemPool = NULL [all...] |
cmserr.c | 185 ctx ->chunks[MemPlugin] = _cmsSubAllocDup(ctx ->MemPool, src ->chunks[MemPlugin], sizeof(_cmsMemPluginChunkType)); 317 ctx ->chunks[MemPlugin] = _cmsSubAllocDup(ctx ->MemPool, src ->chunks[MemPlugin], sizeof(_cmsMemPluginChunkType)); 516 ctx ->chunks[Logger] = _cmsSubAllocDup(ctx ->MemPool, from, sizeof(_cmsLogErrorChunkType)); 637 ctx ->chunks[MutexPlugin] = _cmsSubAllocDup(ctx ->MemPool, from, sizeof(_cmsMutexPluginChunkType));
|
cmsxform.c | 51 ctx ->chunks[AdaptationStateContext] = _cmsSubAllocDup(ctx ->MemPool, from, sizeof(_cmsAdaptationStateChunkType)); 141 ctx ->chunks[AlarmCodesContext] = _cmsSubAllocDup(ctx ->MemPool, from, sizeof(_cmsAlarmCodesChunkType)); 487 _cmsTransformCollection *newEntry = ( _cmsTransformCollection *) _cmsSubAllocDup(ctx ->MemPool, entry, sizeof(_cmsTransformCollection)); 503 ctx ->chunks[TransformPlugin] = _cmsSubAllocDup(ctx->MemPool, &newHead, sizeof(_cmsTransformPluginChunkType)); 516 ctx ->chunks[TransformPlugin] = _cmsSubAllocDup(ctx ->MemPool, &TransformPluginChunkType, sizeof(_cmsTransformPluginChunkType)); [all...] |
lcms2_internal.h | 434 _cmsSubAllocator* MemPool; // The memory pool that stores context data 662 _cmsMLUentry* Entries; // Array of pointers to strings allocated in MemPool 667 void* MemPool; // Pointer to begin of memory pool [all...] |
cmscnvrt.c | 128 cmsIntentsList *newEntry = ( cmsIntentsList *) _cmsSubAllocDup(ctx ->MemPool, entry, sizeof(cmsIntentsList)); 144 ctx ->chunks[IntentPlugin] = _cmsSubAllocDup(ctx->MemPool, &newHead, sizeof(_cmsIntentsPluginChunkType)); 157 ctx ->chunks[IntentPlugin] = _cmsSubAllocDup(ctx ->MemPool, &IntentsPluginChunkType, sizeof(_cmsIntentsPluginChunkType)); [all...] |
cmsgamma.c | 86 _cmsParametricCurvesCollection *newEntry = ( _cmsParametricCurvesCollection *) _cmsSubAllocDup(ctx ->MemPool, entry, sizeof(_cmsParametricCurvesCollection)); 102 ctx ->chunks[CurvesPlugin] = _cmsSubAllocDup(ctx->MemPool, &newHead, sizeof(_cmsCurvesPluginChunkType)); 118 ctx ->chunks[CurvesPlugin] = _cmsSubAllocDup(ctx ->MemPool, &CurvesPluginChunk, sizeof(_cmsCurvesPluginChunkType)); [all...] |
cmstypes.c | [all...] |
cmsopt.c | [all...] |
cmspack.c | [all...] |
cmsintrp.c | 55 ctx ->chunks[InterpPlugin] = _cmsSubAllocDup(ctx ->MemPool, from, sizeof(_cmsInterpPluginChunkType)); [all...] |
/external/deqp/external/vulkancts/framework/vulkan/ |
vkBinaryRegistry.hpp | 219 de::MemPool m_memPool;
|
/external/tinyxml2/ |
tinyxml2.h | 231 class MemPool
234 MemPool() {}
235 virtual ~MemPool() {}
247 class MemPoolT : public MemPool
290 printf( "Mempool %s watermark=%d [%dk] current=%d size=%d nAlloc=%d blocks=%d\n",
603 MemPool* memPool;
832 MemPool* memPool;
[all...] |