Home
last modified time | relevance | path

Searched refs:storageSize (Results 1 – 25 of 39) 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/protobuf/objectivec/google/protobuf/
DWrappers.pbobjc.m83 storageSize:sizeof(GPBDoubleValue__storage_)
128 storageSize:sizeof(GPBFloatValue__storage_)
173 storageSize:sizeof(GPBInt64Value__storage_)
218 storageSize:sizeof(GPBUInt64Value__storage_)
263 storageSize:sizeof(GPBInt32Value__storage_)
308 storageSize:sizeof(GPBUInt32Value__storage_)
352 storageSize:sizeof(GPBBoolValue__storage_)
397 storageSize:sizeof(GPBStringValue__storage_)
442 storageSize:sizeof(GPBBytesValue__storage_)
DStruct.pbobjc.m119 storageSize:sizeof(GPBStruct__storage_)
219 storageSize:sizeof(GPBValue__storage_)
287 storageSize:sizeof(GPBListValue__storage_)
DApi.pbobjc.m153 storageSize:sizeof(GPBApi__storage_)
274 storageSize:sizeof(GPBMethod__storage_)
347 storageSize:sizeof(GPBMixin__storage_)
DType.pbobjc.m179 storageSize:sizeof(GPBType__storage_)
334 storageSize:sizeof(GPBField__storage_)
566 storageSize:sizeof(GPBEnum__storage_)
645 storageSize:sizeof(GPBEnumValue__storage_)
701 storageSize:sizeof(GPBOption__storage_)
DEmpty.pbobjc.m70 storageSize:sizeof(GPBEmpty__storage_)
DSourceContext.pbobjc.m83 storageSize:sizeof(GPBSourceContext__storage_)
DFieldMask.pbobjc.m83 storageSize:sizeof(GPBFieldMask__storage_)
DDuration.pbobjc.m94 storageSize:sizeof(GPBDuration__storage_)
DAny.pbobjc.m94 storageSize:sizeof(GPBAny__storage_)
DTimestamp.pbobjc.m94 storageSize:sizeof(GPBTimestamp__storage_)
/external/skqp/src/core/
DSkWriteBuffer.h76 SkBinaryWriteBuffer(void* initialStorage, size_t storageSize);
86 void reset(void* storage = nullptr, size_t storageSize = 0) {
87 fWriter.reset(storage, storageSize);
DSkDeque.cpp38 SkDeque::SkDeque(size_t elemSize, void* storage, size_t storageSize, int allocCount) in SkDeque() argument
43 SkASSERT(storageSize == 0 || storage != nullptr); in SkDeque()
46 if (storageSize >= sizeof(Block) + elemSize) { in SkDeque()
48 fFrontBlock->init(storageSize); in SkDeque()
DSkMipMap.cpp397 size_t storageSize = SkMipMap::AllocLevelsSize(countLevels, size); in Build() local
398 if (0 == storageSize) { in Build()
404 SkDiscardableMemory* dm = fact(storageSize); in Build()
408 mipmap = new SkMipMap(storageSize, dm); in Build()
410 mipmap = new SkMipMap(sk_malloc_throw(storageSize), storageSize); in Build()
DSkWriteBuffer.cpp26 SkBinaryWriteBuffer::SkBinaryWriteBuffer(void* storage, size_t storageSize) in SkBinaryWriteBuffer() argument
29 , fWriter(storage, storageSize) in SkBinaryWriteBuffer()
/external/skia/src/core/
DSkDeque.cpp38 SkDeque::SkDeque(size_t elemSize, void* storage, size_t storageSize, int allocCount) in SkDeque() argument
43 SkASSERT(storageSize == 0 || storage != nullptr); in SkDeque()
46 if (storageSize >= sizeof(Block) + elemSize) { in SkDeque()
48 fFrontBlock->init(storageSize); in SkDeque()
DSkWriteBuffer.h83 SkBinaryWriteBuffer(void* initialStorage, size_t storageSize);
93 void reset(void* storage = nullptr, size_t storageSize = 0) {
94 fWriter.reset(storage, storageSize);
DSkMipmap.cpp559 size_t storageSize = SkMipmap::AllocLevelsSize(countLevels, size); in Build() local
560 if (0 == storageSize) { in Build()
566 SkDiscardableMemory* dm = fact(storageSize); in Build()
570 mipmap = new SkMipmap(storageSize, dm); in Build()
572 mipmap = new SkMipmap(sk_malloc_throw(storageSize), storageSize); in Build()
DSkWriteBuffer.cpp28 SkBinaryWriteBuffer::SkBinaryWriteBuffer(void* storage, size_t storageSize) in SkBinaryWriteBuffer() argument
31 , fWriter(storage, storageSize) in SkBinaryWriteBuffer()
/external/protobuf/objectivec/
DGPBDescriptor_PackagePrivate.h154 storageSize:(uint32_t)storageSize
160 storageSize:(uint32_t)storage
DGPBDescriptor.m120 storageSize:(uint32_t)storageSize
155 storageSize:storageSize
164 storageSize:(uint32_t)storageSize
170 storageSize_ = storageSize;
/external/llvm-project/mlir/lib/IR/
DAttributeDetail.h441 size_t storageSize = llvm::divideCeil(elementWidth, CHAR_BIT); in getKey() local
442 assert(((data.size() / storageSize) == numElements) && in getKey()
446 auto firstElt = data.take_front(storageSize); in getKey()
451 for (size_t i = storageSize, e = data.size(); i != e; i += storageSize) in getKey()
452 if (memcmp(data.data(), &data[i], storageSize)) in getKey()
/external/swiftshader/src/Vulkan/
DVkImage.cpp954 VkDeviceSize storageSize = 0; in getStorageSize() local
956 if(aspectMask & VK_IMAGE_ASPECT_COLOR_BIT) storageSize += getLayerSize(VK_IMAGE_ASPECT_COLOR_BIT); in getStorageSize()
957 if(aspectMask & VK_IMAGE_ASPECT_DEPTH_BIT) storageSize += getLayerSize(VK_IMAGE_ASPECT_DEPTH_BIT); in getStorageSize()
958 …if(aspectMask & VK_IMAGE_ASPECT_STENCIL_BIT) storageSize += getLayerSize(VK_IMAGE_ASPECT_STENCIL_B… in getStorageSize()
959 …if(aspectMask & VK_IMAGE_ASPECT_PLANE_0_BIT) storageSize += getLayerSize(VK_IMAGE_ASPECT_PLANE_0_B… in getStorageSize()
960 …if(aspectMask & VK_IMAGE_ASPECT_PLANE_1_BIT) storageSize += getLayerSize(VK_IMAGE_ASPECT_PLANE_1_B… in getStorageSize()
961 …if(aspectMask & VK_IMAGE_ASPECT_PLANE_2_BIT) storageSize += getLayerSize(VK_IMAGE_ASPECT_PLANE_2_B… in getStorageSize()
963 return arrayLayers * storageSize; in getStorageSize()
/external/skia/include/private/
DSkDeque.h33 SkDeque(size_t elemSize, void* storage, size_t storageSize, int allocCount = 1);
/external/skqp/include/core/
DSkDeque.h34 SkDeque(size_t elemSize, void* storage, size_t storageSize, int allocCount = 1);

12