Searched refs:sizeInBytes (Results 1 - 25 of 58) sorted by relevance

123

/external/srec/portable/src/
H A Dpmemory_ext.h36 void* PortNew(size_t sizeInBytes);
41 void PortMemSetPoolSize(size_t sizeInBytes);
H A Dpmemory_ext.c70 #define MEM_MGR_SetPoolSize(sizeInBytes) PortMallocSetPoolSize(sizeInBytes)
73 #define MEM_MGR_Allocate(sizeInBytes) PortMalloc(sizeInBytes)
211 void PortMemSetPoolSize(size_t sizeInBytes) argument
213 MEM_MGR_SetPoolSize(sizeInBytes);
252 void* PortNew(size_t sizeInBytes) argument
264 sizeInBytes += GUARD_EXTRA; /* space for: requestedSize,guardStart,guardEnd */
267 pMemory = MEM_MGR_Allocate(sizeInBytes);
278 unsigned int * guardEndPtr = GUARD_PTR_FIELD(pMemory, GUARD_OFF_END(sizeInBytes));
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DArrayBufferDeallocationObserver.h36 virtual void ArrayBufferDeallocated(unsigned sizeInBytes) = 0;
H A DArrayBufferContents.h51 ArrayBufferContents(void* data, unsigned sizeInBytes);
58 unsigned sizeInBytes() const { return m_sizeInBytes; } function in class:WTF::ArrayBufferContents
H A DArrayBufferContents.cpp59 ArrayBufferContents::ArrayBufferContents(void* data, unsigned sizeInBytes) argument
61 , m_sizeInBytes(sizeInBytes)
/external/chromium_org/third_party/skia/src/gpu/
H A DGrIndexBuffer.h24 return this->sizeInBytes() / (sizeof(uint16_t) * 6);
27 GrIndexBuffer(GrGpu* gpu, bool isWrapped, size_t sizeInBytes, bool dynamic, bool cpuBacked) argument
28 : INHERITED(gpu, isWrapped, sizeInBytes, dynamic, cpuBacked) {}
H A DGrVertexBuffer.h18 GrVertexBuffer(GrGpu* gpu, bool isWrapped, size_t sizeInBytes, bool dynamic, bool cpuBacked) argument
19 : INHERITED(gpu, isWrapped, sizeInBytes, dynamic, cpuBacked) {}
H A DGrGeometryBuffer.h86 virtual size_t sizeInBytes() const { return fSizeInBytes; } function in class:GrGeometryBuffer
89 GrGeometryBuffer(GrGpu* gpu, bool isWrapped, size_t sizeInBytes, bool dynamic, bool cpuBacked) argument
91 , fSizeInBytes(sizeInBytes)
H A DGrResourceCache.cpp117 fClientDetachedBytes += entry->resource()->sizeInBytes();
132 fEntryBytes -= entry->resource()->sizeInBytes();
143 fClientDetachedBytes -= entry->resource()->sizeInBytes();
148 fEntryBytes += entry->resource()->sizeInBytes();
243 size_t size = entry->resource()->sizeInBytes();
392 bytes += entry->resource()->sizeInBytes();
H A DGrBufferAllocPool.cpp112 size_t flushSize = block.fBuffer->sizeInBytes() - block.fBytesFree;
138 size_t bytes = fBlocks[i].fBuffer->sizeInBytes() - fBlocks[i].fBytesFree;
164 size_t usedBytes = back.fBuffer->sizeInBytes() - back.fBytesFree;
204 size_t usedBytes = back.fBuffer->sizeInBytes() - back.fBytesFree;
234 size_t bytesUsed = block.fBuffer->sizeInBytes() - block.fBytesFree;
293 prev.fBuffer->sizeInBytes() - prev.fBytesFree);
351 GrAssert(flushSize <= buffer->sizeInBytes());
/external/skia/src/gpu/
H A DGrIndexBuffer.h24 return this->sizeInBytes() / (sizeof(uint16_t) * 6);
27 GrIndexBuffer(GrGpu* gpu, bool isWrapped, size_t sizeInBytes, bool dynamic, bool cpuBacked) argument
28 : INHERITED(gpu, isWrapped, sizeInBytes, dynamic, cpuBacked) {}
H A DGrVertexBuffer.h18 GrVertexBuffer(GrGpu* gpu, bool isWrapped, size_t sizeInBytes, bool dynamic, bool cpuBacked) argument
19 : INHERITED(gpu, isWrapped, sizeInBytes, dynamic, cpuBacked) {}
H A DGrGeometryBuffer.h86 virtual size_t sizeInBytes() const { return fSizeInBytes; } function in class:GrGeometryBuffer
89 GrGeometryBuffer(GrGpu* gpu, bool isWrapped, size_t sizeInBytes, bool dynamic, bool cpuBacked) argument
91 , fSizeInBytes(sizeInBytes)
H A DGrResourceCache.cpp117 fClientDetachedBytes += entry->resource()->sizeInBytes();
132 fEntryBytes -= entry->resource()->sizeInBytes();
143 fClientDetachedBytes -= entry->resource()->sizeInBytes();
148 fEntryBytes += entry->resource()->sizeInBytes();
243 size_t size = entry->resource()->sizeInBytes();
392 bytes += entry->resource()->sizeInBytes();
H A DGrBufferAllocPool.cpp112 size_t flushSize = block.fBuffer->sizeInBytes() - block.fBytesFree;
138 size_t bytes = fBlocks[i].fBuffer->sizeInBytes() - fBlocks[i].fBytesFree;
164 size_t usedBytes = back.fBuffer->sizeInBytes() - back.fBytesFree;
204 size_t usedBytes = back.fBuffer->sizeInBytes() - back.fBytesFree;
234 size_t bytesUsed = block.fBuffer->sizeInBytes() - block.fBytesFree;
293 prev.fBuffer->sizeInBytes() - prev.fBytesFree);
351 GrAssert(flushSize <= buffer->sizeInBytes());
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLPath.h31 virtual size_t sizeInBytes() const SK_OVERRIDE { return 100; }
H A DGrGLStencilBuffer.cpp16 size_t GrGLStencilBuffer::sizeInBytes() const { function in class:GrGLStencilBuffer
H A DGrGLStencilBuffer.h39 virtual size_t sizeInBytes() const SK_OVERRIDE;
/external/skia/src/gpu/gl/
H A DGrGLPath.h31 virtual size_t sizeInBytes() const SK_OVERRIDE { return 100; }
H A DGrGLStencilBuffer.cpp16 size_t GrGLStencilBuffer::sizeInBytes() const { function in class:GrGLStencilBuffer
H A DGrGLStencilBuffer.h39 virtual size_t sizeInBytes() const SK_OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/core/loader/cache/
H A DScriptResource.cpp80 setEncodedSize(script.sizeInBytes());
/external/chromium_org/third_party/skia/include/gpu/
H A DGrResource.h58 virtual size_t sizeInBytes() const = 0;
H A DGrRenderTarget.h29 virtual size_t sizeInBytes() const SK_OVERRIDE;
/external/skia/include/gpu/
H A DGrResource.h58 virtual size_t sizeInBytes() const = 0;

Completed in 417 milliseconds

123