Lines Matching refs:scope
46 VkSystemAllocationScope scope)
48 return alloc->pfnAllocation(alloc->pUserData, size, align, scope);
54 VkSystemAllocationScope scope)
56 void *mem = vk_alloc(alloc, size, align, scope);
68 VkSystemAllocationScope scope)
70 return alloc->pfnReallocation(alloc->pUserData, ptr, size, align, scope);
84 VkSystemAllocationScope scope)
90 char *copy = (char *)vk_alloc(alloc, size, 1, scope);
101 VkSystemAllocationScope scope,
105 char *ptr = (char *)vk_alloc(alloc, size, 1, scope);
114 VkSystemAllocationScope scope,
119 char *ptr = vk_vasprintf(alloc, scope, fmt, args);
129 VkSystemAllocationScope scope)
132 return vk_alloc(alloc, size, align, scope);
134 return vk_alloc(parent_alloc, size, align, scope);
141 VkSystemAllocationScope scope)
143 void *mem = vk_alloc2(parent_alloc, alloc, size, align, scope);
232 VkSystemAllocationScope scope)
234 void *ptr = vk_alloc(alloc, ma->size, ma->align, scope);
272 VkSystemAllocationScope scope)
274 return vk_multialloc_alloc(ma, alloc ? alloc : parent_alloc, scope);
280 VkSystemAllocationScope scope)
282 void *ptr = vk_multialloc_alloc(ma, alloc, scope);
296 VkSystemAllocationScope scope)
298 return vk_multialloc_zalloc(ma, alloc ? alloc : parent_alloc, scope);