Home
last modified time | relevance | path

Searched refs:allocType (Results 1 – 10 of 10) sorted by relevance

/external/angle/src/libANGLE/renderer/vulkan/
DMemoryTracking.cpp241 void MemoryAllocationTracker::onMemoryAllocImpl(vk::MemoryAllocationType allocType, in onMemoryAllocImpl() argument
246 ASSERT(allocType != vk::MemoryAllocationType::InvalidEnum && size != 0); in onMemoryAllocImpl()
254 uint32_t allocTypeIndex = ToUnderlying(allocType); in onMemoryAllocImpl()
265 memAllocLogInfo.allocType = allocType; in onMemoryAllocImpl()
285 uint32_t allocTypeIndex = ToUnderlying(allocType); in onMemoryAllocImpl()
300 void MemoryAllocationTracker::onMemoryDeallocImpl(vk::MemoryAllocationType allocType, in onMemoryDeallocImpl() argument
305 ASSERT(allocType != vk::MemoryAllocationType::InvalidEnum && size != 0); in onMemoryDeallocImpl()
322 ASSERT(memInfoEntry->allocType == allocType && memInfoEntry->size == size); in onMemoryDeallocImpl()
324 uint32_t allocTypeIndex = ToUnderlying(memInfoEntry->allocType); in onMemoryDeallocImpl()
351 uint32_t allocTypeIndex = ToUnderlying(allocType); in onMemoryDeallocImpl()
[all …]
DMemoryTracking.h78 MemoryAllocationType allocType; member
154 void onMemoryAllocImpl(vk::MemoryAllocationType allocType,
158 void onMemoryDeallocImpl(vk::MemoryAllocationType allocType,
187 void setPendingMemoryAlloc(vk::MemoryAllocationType allocType,
Dvk_renderer.h634 void onMemoryAlloc(vk::MemoryAllocationType allocType, in onMemoryAlloc() argument
639 mMemoryAllocationTracker.onMemoryAllocImpl(allocType, size, memoryTypeIndex, in onMemoryAlloc()
644 void onMemoryDealloc(vk::MemoryAllocationType allocType, in onMemoryDealloc() argument
649 mMemoryAllocationTracker.onMemoryDeallocImpl(allocType, size, memoryTypeIndex, in onMemoryDealloc()
/external/skia/vma_android/include/
Dvk_mem_alloc.h6332 VmaSuballocationType allocType,
6511 void RoundupAllocRequest(VmaSuballocationType allocType,
6519 VmaSuballocationType allocType) const;
6521 void AllocPages(uint8_t allocType, VkDeviceSize offset, VkDeviceSize size);
6535 uint8_t allocType; member
6547 void AllocPage(RegionInfo& page, uint8_t allocType);
6580 void VmaBlockBufferImageGranularity::RoundupAllocRequest(VmaSuballocationType allocType, in RoundupAllocRequest() argument
6587 if (allocType == VMA_SUBALLOCATION_TYPE_UNKNOWN || in RoundupAllocRequest()
6588 allocType == VMA_SUBALLOCATION_TYPE_IMAGE_UNKNOWN || in RoundupAllocRequest()
6589 allocType == VMA_SUBALLOCATION_TYPE_IMAGE_OPTIMAL) in RoundupAllocRequest()
[all …]
/external/angle/third_party/vulkan_memory_allocator/include/
Dvk_mem_alloc.h6395 VmaSuballocationType allocType,
6574 void RoundupAllocRequest(VmaSuballocationType allocType,
6582 VmaSuballocationType allocType) const;
6584 void AllocPages(uint8_t allocType, VkDeviceSize offset, VkDeviceSize size);
6598 uint8_t allocType; member
6610 void AllocPage(RegionInfo& page, uint8_t allocType);
6643 void VmaBlockBufferImageGranularity::RoundupAllocRequest(VmaSuballocationType allocType, in RoundupAllocRequest() argument
6650 if (allocType == VMA_SUBALLOCATION_TYPE_UNKNOWN || in RoundupAllocRequest()
6651 allocType == VMA_SUBALLOCATION_TYPE_IMAGE_UNKNOWN || in RoundupAllocRequest()
6652 allocType == VMA_SUBALLOCATION_TYPE_IMAGE_OPTIMAL) in RoundupAllocRequest()
[all …]
/external/armnn/delegate/opaque/src/
DOpaqueDelegateUtils.hpp531 auto allocType = TfLiteOpaqueTensorGetAllocationType(tfLiteTensor); in CreateConstTensor() local
532 if (allocType != kTfLiteMmapRo) in CreateConstTensor()
534 …rmnn::Exception("TfLiteArmnnDelegate: Not constant allocation type: " + std::to_string(allocType)); in CreateConstTensor()
/external/clang/lib/CodeGen/
DCGExprCXX.cpp1318 QualType allocType = getContext().getBaseElementType(E->getAllocatedType()); in EmitCXXNewExpr() local
1352 getContext().getTypeAlignInChars(allocType)); in EmitCXXNewExpr()
1384 getContext().getTypeAlignInChars(allocType); in EmitCXXNewExpr()
1398 (!allocType.isPODType(getContext()) || E->hasInitializer()); in EmitCXXNewExpr()
1437 E, allocType); in EmitCXXNewExpr()
1440 llvm::Type *elementTy = ConvertTypeForMem(allocType); in EmitCXXNewExpr()
1451 EmitNewInitializer(*this, E, allocType, elementTy, result, numElements, in EmitCXXNewExpr()
/external/vulkan-validation-layers/layers/
Dvk_mem_alloc.h5233 VmaSuballocationType allocType,
5318 VmaSuballocationType allocType,
5372 VmaSuballocationType allocType,
5499 VmaSuballocationType allocType,
5609 VmaSuballocationType allocType,
7846 VmaSuballocationType allocType, in CreateAllocationRequest() argument
7853 VMA_ASSERT(allocType != VMA_SUBALLOCATION_TYPE_FREE); in CreateAllocationRequest()
7885 allocType, in CreateAllocationRequest()
7910 allocType, in CreateAllocationRequest()
7934 allocType, in CreateAllocationRequest()
[all …]
/external/angle/third_party/vulkan_memory_allocator/src/
DTests.cpp1736 for (uint8_t allocType = 0; allocType < 4; ++allocType) in TestJson() local
1743 switch (allocType) in TestJson()
/external/clang/lib/Sema/
DSemaExprCXX.cpp1329 QualType allocType) { in doesUsualArrayDeleteWantSize() argument
1331 allocType->getBaseElementTypeUnsafe()->getAs<RecordType>(); in doesUsualArrayDeleteWantSize()