/external/deqp/framework/delibs/decpp/ |
D | deArrayBuffer.hpp | 91 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/ |
D | GPBWrappers.pbobjc.m | 69 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_)
|
D | GPBDescriptor_PackagePrivate.h | 194 storageSize:(uint32_t)storageSize 200 storageSize:(uint32_t)storage
|
D | GPBStruct.pbobjc.m | 114 storageSize:sizeof(GPBStruct__storage_) 214 storageSize:sizeof(GPBValue__storage_) 282 storageSize:sizeof(GPBListValue__storage_)
|
D | GPBApi.pbobjc.m | 145 storageSize:sizeof(GPBApi__storage_) 266 storageSize:sizeof(GPBMethod__storage_) 339 storageSize:sizeof(GPBMixin__storage_)
|
D | GPBType.pbobjc.m | 172 storageSize:sizeof(GPBType__storage_) 327 storageSize:sizeof(GPBField__storage_) 559 storageSize:sizeof(GPBEnum__storage_) 638 storageSize:sizeof(GPBEnumValue__storage_) 694 storageSize:sizeof(GPBOption__storage_)
|
D | GPBEmpty.pbobjc.m | 56 storageSize:sizeof(GPBEmpty__storage_)
|
D | GPBSourceContext.pbobjc.m | 69 storageSize:sizeof(GPBSourceContext__storage_)
|
D | GPBFieldMask.pbobjc.m | 69 storageSize:sizeof(GPBFieldMask__storage_)
|
D | GPBTimestamp.pbobjc.m | 80 storageSize:sizeof(GPBTimestamp__storage_)
|
/external/protobuf/objectivec/ |
D | GPBWrappers.pbobjc.m | 69 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_)
|
D | GPBDescriptor_PackagePrivate.h | 194 storageSize:(uint32_t)storageSize 200 storageSize:(uint32_t)storage
|
D | GPBStruct.pbobjc.m | 114 storageSize:sizeof(GPBStruct__storage_) 214 storageSize:sizeof(GPBValue__storage_) 282 storageSize:sizeof(GPBListValue__storage_)
|
D | GPBApi.pbobjc.m | 145 storageSize:sizeof(GPBApi__storage_) 266 storageSize:sizeof(GPBMethod__storage_) 339 storageSize:sizeof(GPBMixin__storage_)
|
D | GPBType.pbobjc.m | 172 storageSize:sizeof(GPBType__storage_) 327 storageSize:sizeof(GPBField__storage_) 559 storageSize:sizeof(GPBEnum__storage_) 638 storageSize:sizeof(GPBEnumValue__storage_) 694 storageSize:sizeof(GPBOption__storage_)
|
D | GPBEmpty.pbobjc.m | 56 storageSize:sizeof(GPBEmpty__storage_)
|
D | GPBFieldMask.pbobjc.m | 69 storageSize:sizeof(GPBFieldMask__storage_)
|
D | GPBSourceContext.pbobjc.m | 69 storageSize:sizeof(GPBSourceContext__storage_)
|
/external/skia/src/base/ |
D | SkDeque.cpp | 41 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()
|
D | SkTDArray.cpp | 28 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/ |
D | SkWriteBuffer.h | 102 SkBinaryWriteBuffer(void* initialStorage, size_t storageSize); 112 void reset(void* storage = nullptr, size_t storageSize = 0) { 113 fWriter.reset(storage, storageSize);
|
D | SkMipmap.cpp | 568 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()
|
D | SkWriteBuffer.cpp | 43 SkBinaryWriteBuffer::SkBinaryWriteBuffer(void* storage, size_t storageSize) in SkBinaryWriteBuffer() argument 46 , fWriter(storage, storageSize) in SkBinaryWriteBuffer()
|
/external/swiftshader/src/Vulkan/ |
D | VkImage.cpp | 982 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/ |
D | SkDeque.h | 35 SkDeque(size_t elemSize, void* storage, size_t storageSize, int allocCount = 1);
|