Home
last modified time | relevance | path

Searched refs:bytesMoved (Results 1 – 7 of 7) sorted by relevance

/external/angle/third_party/vulkan_memory_allocator/src/
DTests.cpp1400 defragStats.bytesMoved == 0 && defragStats.deviceMemoryBlocksFreed == 0); in TestDefragmentationSimple()
1432 TEST(defragStats.allocationsMoved > 0 && defragStats.bytesMoved > 0); in TestDefragmentationSimple()
1466 TEST(defragStats.allocationsMoved > 0 && defragStats.bytesMoved > 0); in TestDefragmentationSimple()
1540 TEST(defragStats.allocationsMoved == 1 && defragStats.bytesMoved > 0); in TestDefragmentationSimple()
1621 TEST(defragStats[caseIndex].allocationsMoved > 0 && defragStats[caseIndex].bytesMoved > 0); in TestDefragmentationWholePool()
1630 TEST(defragStats[0].bytesMoved == defragStats[1].bytesMoved); in TestDefragmentationWholePool()
1695 … wprintf(L"Moved allocations %u, bytes %llu\n", stats.allocationsMoved, stats.bytesMoved); in TestDefragmentationFull()
1842 TEST(stats.allocationsMoved > 0 && stats.bytesMoved > 0); in TestDefragmentationGpu()
2211 TEST(stats.allocationsMoved > 0 && stats.bytesMoved > 0); in TestDefragmentationIncrementalBasic()
2421 TEST(stats.allocationsMoved > 0 && stats.bytesMoved > 0); in TestDefragmentationIncrementalComplex()
Dvk_mem_alloc.h3579 VkDeviceSize bytesMoved; member
13549 const VkDeviceSize bytesMoved = pCtx->GetAlgorithm()->GetBytesMoved(); in Defragment() local
13551 pStats->bytesMoved += bytesMoved; in Defragment()
13553 VMA_ASSERT(bytesMoved <= maxBytesToMove); in Defragment()
13557 maxGpuBytesToMove -= bytesMoved; in Defragment()
13562 maxCpuBytesToMove -= bytesMoved; in Defragment()
/external/skqp/third_party/vulkanmemoryallocator/include/
Dvk_mem_alloc.h1953 VkDeviceSize bytesMoved; member
7006 const VkDeviceSize bytesMoved = m_pDefragmentator->GetBytesMoved(); in Defragment() local
7008 pDefragmentationStats->bytesMoved += bytesMoved; in Defragment()
7010 VMA_ASSERT(bytesMoved <= maxBytesToMove); in Defragment()
7012 maxBytesToMove -= bytesMoved; in Defragment()
/external/vulkan-validation-layers/layers/
Dvk_mem_alloc.h2878 VkDeviceSize bytesMoved; member
12327 const VkDeviceSize bytesMoved = pCtx->GetAlgorithm()->GetBytesMoved(); in Defragment() local
12329 pStats->bytesMoved += bytesMoved; in Defragment()
12331 VMA_ASSERT(bytesMoved <= maxBytesToMove); in Defragment()
12335 maxGpuBytesToMove -= bytesMoved; in Defragment()
12340 maxCpuBytesToMove -= bytesMoved; in Defragment()
/external/skia/third_party/vulkanmemoryallocator/include/
Dvk_mem_alloc.h3583 VkDeviceSize bytesMoved; member
13531 const VkDeviceSize bytesMoved = pCtx->GetAlgorithm()->GetBytesMoved(); in Defragment() local
13533 pStats->bytesMoved += bytesMoved; in Defragment()
13535 VMA_ASSERT(bytesMoved <= maxBytesToMove); in Defragment()
13539 maxGpuBytesToMove -= bytesMoved; in Defragment()
13544 maxCpuBytesToMove -= bytesMoved; in Defragment()
/external/conscrypt/common/src/jni/main/cpp/conscrypt/
Dnative_crypto.cc8441 size_t bytesMoved = BIO_number_read(rbio) + BIO_number_written(wbio); in sslRead() local
8470 if (BIO_number_read(rbio) + BIO_number_written(wbio) != bytesMoved && in sslRead()
8713 size_t bytesMoved = BIO_number_read(rbio) + BIO_number_written(wbio); in sslWrite() local
8743 if (BIO_number_read(rbio) + BIO_number_written(wbio) != bytesMoved && in sslWrite()
/external/angle/third_party/vulkan_memory_allocator/src/VmaReplay/
DVmaReplay.cpp2543 printf(" bytesMoved: %llu\n", defragStats.bytesMoved); in Defragment()