Home
last modified time | relevance | path

Searched refs:storageSize (Results 1 – 25 of 47) sorted by relevance

12

/external/deqp/framework/delibs/decpp/
DdeArrayBuffer.hpp91 const size_t storageSize = (numElements - 1) * Stride + sizeof(T); in ArrayBuffer() local
92 void* const ptr = detail::ArrayBuffer_AlignedMalloc(storageSize, Alignment); in ArrayBuffer()
115 const size_t storageSize = sizeof(T) * numElements; in ArrayBuffer() local
116 deMemcpy(tmp.m_ptr, ptr, (int)storageSize); in ArrayBuffer()
138 const size_t storageSize = (other.m_cap - 1) * Stride + sizeof(T); in ArrayBuffer() local
141 deMemcpy(tmp.m_ptr, other.m_ptr, (int)storageSize); in ArrayBuffer()
/external/cronet/third_party/protobuf/objectivec/
DGPBWrappers.pbobjc.m69 storageSize:sizeof(GPBDoubleValue__storage_)
114 storageSize:sizeof(GPBFloatValue__storage_)
159 storageSize:sizeof(GPBInt64Value__storage_)
204 storageSize:sizeof(GPBUInt64Value__storage_)
249 storageSize:sizeof(GPBInt32Value__storage_)
294 storageSize:sizeof(GPBUInt32Value__storage_)
338 storageSize:sizeof(GPBBoolValue__storage_)
383 storageSize:sizeof(GPBStringValue__storage_)
428 storageSize:sizeof(GPBBytesValue__storage_)
DGPBDescriptor_PackagePrivate.h194 storageSize:(uint32_t)storageSize
200 storageSize:(uint32_t)storage
DGPBStruct.pbobjc.m114 storageSize:sizeof(GPBStruct__storage_)
214 storageSize:sizeof(GPBValue__storage_)
282 storageSize:sizeof(GPBListValue__storage_)
DGPBApi.pbobjc.m145 storageSize:sizeof(GPBApi__storage_)
266 storageSize:sizeof(GPBMethod__storage_)
339 storageSize:sizeof(GPBMixin__storage_)
DGPBType.pbobjc.m172 storageSize:sizeof(GPBType__storage_)
327 storageSize:sizeof(GPBField__storage_)
559 storageSize:sizeof(GPBEnum__storage_)
638 storageSize:sizeof(GPBEnumValue__storage_)
694 storageSize:sizeof(GPBOption__storage_)
DGPBEmpty.pbobjc.m56 storageSize:sizeof(GPBEmpty__storage_)
DGPBSourceContext.pbobjc.m69 storageSize:sizeof(GPBSourceContext__storage_)
DGPBFieldMask.pbobjc.m69 storageSize:sizeof(GPBFieldMask__storage_)
DGPBTimestamp.pbobjc.m80 storageSize:sizeof(GPBTimestamp__storage_)
/external/protobuf/objectivec/
DGPBWrappers.pbobjc.m69 storageSize:sizeof(GPBDoubleValue__storage_)
114 storageSize:sizeof(GPBFloatValue__storage_)
159 storageSize:sizeof(GPBInt64Value__storage_)
204 storageSize:sizeof(GPBUInt64Value__storage_)
249 storageSize:sizeof(GPBInt32Value__storage_)
294 storageSize:sizeof(GPBUInt32Value__storage_)
338 storageSize:sizeof(GPBBoolValue__storage_)
383 storageSize:sizeof(GPBStringValue__storage_)
428 storageSize:sizeof(GPBBytesValue__storage_)
DGPBDescriptor_PackagePrivate.h194 storageSize:(uint32_t)storageSize
200 storageSize:(uint32_t)storage
DGPBStruct.pbobjc.m114 storageSize:sizeof(GPBStruct__storage_)
214 storageSize:sizeof(GPBValue__storage_)
282 storageSize:sizeof(GPBListValue__storage_)
DGPBApi.pbobjc.m145 storageSize:sizeof(GPBApi__storage_)
266 storageSize:sizeof(GPBMethod__storage_)
339 storageSize:sizeof(GPBMixin__storage_)
DGPBType.pbobjc.m172 storageSize:sizeof(GPBType__storage_)
327 storageSize:sizeof(GPBField__storage_)
559 storageSize:sizeof(GPBEnum__storage_)
638 storageSize:sizeof(GPBEnumValue__storage_)
694 storageSize:sizeof(GPBOption__storage_)
DGPBEmpty.pbobjc.m56 storageSize:sizeof(GPBEmpty__storage_)
DGPBFieldMask.pbobjc.m69 storageSize:sizeof(GPBFieldMask__storage_)
DGPBSourceContext.pbobjc.m69 storageSize:sizeof(GPBSourceContext__storage_)
/external/skia/src/base/
DSkDeque.cpp41 SkDeque::SkDeque(size_t elemSize, void* storage, size_t storageSize, int allocCount) in SkDeque() argument
46 SkASSERT(storageSize == 0 || storage != nullptr); in SkDeque()
49 if (storageSize >= sizeof(Block) + elemSize) { in SkDeque()
51 fFrontBlock->init(storageSize); in SkDeque()
DSkTDArray.cpp28 size_t storageSize = this->bytes(size); local
29 fStorage = static_cast<std::byte*>(sk_malloc_throw(storageSize));
30 memcpy(fStorage, src, storageSize);
/external/skia/src/core/
DSkWriteBuffer.h102 SkBinaryWriteBuffer(void* initialStorage, size_t storageSize);
112 void reset(void* storage = nullptr, size_t storageSize = 0) {
113 fWriter.reset(storage, storageSize);
DSkMipmap.cpp568 size_t storageSize = SkMipmap::AllocLevelsSize(countLevels, size); in Build() local
569 if (0 == storageSize) { in Build()
575 SkDiscardableMemory* dm = fact(storageSize); in Build()
579 mipmap = new SkMipmap(storageSize, dm); in Build()
581 mipmap = new SkMipmap(sk_malloc_throw(storageSize), storageSize); in Build()
DSkWriteBuffer.cpp43 SkBinaryWriteBuffer::SkBinaryWriteBuffer(void* storage, size_t storageSize) in SkBinaryWriteBuffer() argument
46 , fWriter(storage, storageSize) in SkBinaryWriteBuffer()
/external/swiftshader/src/Vulkan/
DVkImage.cpp982 VkDeviceSize storageSize = 0; in getStorageSize() local
984 if(aspectMask & VK_IMAGE_ASPECT_COLOR_BIT) storageSize += getLayerSize(VK_IMAGE_ASPECT_COLOR_BIT); in getStorageSize()
985 if(aspectMask & VK_IMAGE_ASPECT_DEPTH_BIT) storageSize += getLayerSize(VK_IMAGE_ASPECT_DEPTH_BIT); in getStorageSize()
986 …if(aspectMask & VK_IMAGE_ASPECT_STENCIL_BIT) storageSize += getLayerSize(VK_IMAGE_ASPECT_STENCIL_B… in getStorageSize()
987 …if(aspectMask & VK_IMAGE_ASPECT_PLANE_0_BIT) storageSize += getLayerSize(VK_IMAGE_ASPECT_PLANE_0_B… in getStorageSize()
988 …if(aspectMask & VK_IMAGE_ASPECT_PLANE_1_BIT) storageSize += getLayerSize(VK_IMAGE_ASPECT_PLANE_1_B… in getStorageSize()
989 …if(aspectMask & VK_IMAGE_ASPECT_PLANE_2_BIT) storageSize += getLayerSize(VK_IMAGE_ASPECT_PLANE_2_B… in getStorageSize()
991 return arrayLayers * storageSize; in getStorageSize()
/external/skia/include/private/base/
DSkDeque.h35 SkDeque(size_t elemSize, void* storage, size_t storageSize, int allocCount = 1);

12