Lines Matching defs:scope
34 VkSystemAllocationScope scope)
36 return alloc->pfnAllocation(alloc->pUserData, size, align, scope);
42 VkSystemAllocationScope scope)
44 void *mem = vk_alloc(alloc, size, align, scope);
56 VkSystemAllocationScope scope)
58 return alloc->pfnReallocation(alloc->pUserData, ptr, size, align, scope);
72 VkSystemAllocationScope scope)
78 char *copy = vk_alloc(alloc, size, 1, scope);
91 VkSystemAllocationScope scope)
94 return vk_alloc(alloc, size, align, scope);
96 return vk_alloc(parent_alloc, size, align, scope);
103 VkSystemAllocationScope scope)
105 void *mem = vk_alloc2(parent_alloc, alloc, size, align, scope);