Lines Matching refs:pAllocInfo
321 void* allocateHeap (const VkMemoryAllocateInfo* pAllocInfo) in allocateHeap() argument
325 if (pAllocInfo->allocationSize > 0) in allocateHeap()
327 void* const heapPtr = deMalloc((size_t)pAllocInfo->allocationSize); in allocateHeap()
352 PrivateDeviceMemory (VkDevice, const VkMemoryAllocateInfo* pAllocInfo) in PrivateDeviceMemory() argument
353 : m_memory(allocateHeap(pAllocInfo)) in PrivateDeviceMemory()
358 deMemset(m_memory, 0xcd, (size_t)pAllocInfo->allocationSize); in PrivateDeviceMemory()
373 AHardwareBuffer* findOrCreateHwBuffer (const VkMemoryAllocateInfo* pAllocInfo) in findOrCreateHwBuffer() argument
375 …AllocateInfo* const exportInfo = findStructure<VkExportMemoryAllocateInfo>(pAllocInfo->pNext); in findOrCreateHwBuffer()
376 …ID* const importInfo = findStructure<VkImportAndroidHardwareBufferInfoANDROID>(pAllocInfo->pNext); in findOrCreateHwBuffer()
377 …cateInfo* const dedicatedInfo = findStructure<VkMemoryDedicatedAllocateInfo>(pAllocInfo->pNext); in findOrCreateHwBuffer()
435 hwbufferDesc.width = static_cast<deUint32>(pAllocInfo->allocationSize); in findOrCreateHwBuffer()
451 ExternalDeviceMemoryAndroid (VkDevice, const VkMemoryAllocateInfo* pAllocInfo) in ExternalDeviceMemoryAndroid() argument
452 : m_hwbuffer(findOrCreateHwBuffer(pAllocInfo)) in ExternalDeviceMemoryAndroid()