Lines Matching defs:scope
42 VkSystemAllocationScope scope)
44 return alloc->pfnAllocation(alloc->pUserData, size, align, scope);
50 VkSystemAllocationScope scope)
52 void *mem = vk_alloc(alloc, size, align, scope);
64 VkSystemAllocationScope scope)
66 return alloc->pfnReallocation(alloc->pUserData, ptr, size, align, scope);
80 VkSystemAllocationScope scope)
86 char *copy = (char *)vk_alloc(alloc, size, 1, scope);
97 VkSystemAllocationScope scope,
101 char *ptr = (char *)vk_alloc(alloc, size, 1, scope);
110 VkSystemAllocationScope scope,
115 char *ptr = vk_vasprintf(alloc, scope, fmt, args);
125 VkSystemAllocationScope scope)
128 return vk_alloc(alloc, size, align, scope);
130 return vk_alloc(parent_alloc, size, align, scope);
137 VkSystemAllocationScope scope)
139 void *mem = vk_alloc2(parent_alloc, alloc, size, align, scope);
231 VkSystemAllocationScope scope)
233 char *ptr = (char *)vk_alloc(alloc, ma->size, ma->align, scope);
267 VkSystemAllocationScope scope)
269 return vk_multialloc_alloc(ma, alloc ? alloc : parent_alloc, scope);
275 VkSystemAllocationScope scope)
277 void *ptr = vk_multialloc_alloc(ma, alloc, scope);
291 VkSystemAllocationScope scope)
293 return vk_multialloc_zalloc(ma, alloc ? alloc : parent_alloc, scope);