Home
last modified time | relevance | path

Searched refs:newBlockSize (Results 1 – 4 of 4) sorted by relevance

/third_party/vk-gl-cts/external/openglcts/modules/gl/
Dgl4cTextureBarrierTests.cpp617 int newBlockSize = getBlockSize(testPass, renderPass); in setupRenderPass() local
618 if (newBlockSize != m_blockSize) in setupRenderPass()
620 m_blockSize = newBlockSize; in setupRenderPass()
/third_party/skia/third_party/externals/d3d12allocator/src/
DD3D12MemAlloc.cpp3482 UINT64 newBlockSize = m_PreferredBlockSize; in AllocatePage() local
3491 const UINT64 smallerNewBlockSize = newBlockSize / 2; in AllocatePage()
3494 newBlockSize = smallerNewBlockSize; in AllocatePage()
3505 HRESULT hr = newBlockSize <= freeMemory ? in AllocatePage()
3506 CreateBlock(newBlockSize, &newBlockIndex) : E_OUTOFMEMORY; in AllocatePage()
3512 const UINT64 smallerNewBlockSize = newBlockSize / 2; in AllocatePage()
3515 newBlockSize = smallerNewBlockSize; in AllocatePage()
3517 hr = newBlockSize <= freeMemory ? in AllocatePage()
3518 CreateBlock(newBlockSize, &newBlockIndex) : E_OUTOFMEMORY; in AllocatePage()
3815 UINT64 newBlockSize = m_PreferredBlockSize; in SetMinBytes() local
[all …]
/third_party/libcoap/src/
Dblock.c98 int newBlockSize; in coap_write_block_opt() local
106 newBlockSize = coap_flsll((long long)avail) - 5; in coap_write_block_opt()
108 "decrease block size for %zu to %d\n", avail, newBlockSize); in coap_write_block_opt()
110 block->szx = newBlockSize; in coap_write_block_opt()
/third_party/skia/third_party/vulkanmemoryallocator/include/
Dvk_mem_alloc.h12698 VkDeviceSize newBlockSize = m_PreferredBlockSize; in AllocatePage() local
12708 const VkDeviceSize smallerNewBlockSize = newBlockSize / 2; in AllocatePage()
12711 newBlockSize = smallerNewBlockSize; in AllocatePage()
12722 VkResult res = (newBlockSize <= freeMemory || !canFallbackToDedicated) ? in AllocatePage()
12723 CreateBlock(newBlockSize, &newBlockIndex) : VK_ERROR_OUT_OF_DEVICE_MEMORY; in AllocatePage()
12729 const VkDeviceSize smallerNewBlockSize = newBlockSize / 2; in AllocatePage()
12732 newBlockSize = smallerNewBlockSize; in AllocatePage()
12734 res = (newBlockSize <= freeMemory || !canFallbackToDedicated) ? in AllocatePage()
12735 … CreateBlock(newBlockSize, &newBlockIndex) : VK_ERROR_OUT_OF_DEVICE_MEMORY; in AllocatePage()
12761 … VMA_DEBUG_LOG(" Created new block #%u Size=%llu", pBlock->GetId(), newBlockSize); in AllocatePage()