Searched defs:pMemory (Results 1 - 8 of 8) sorted by relevance

/external/vulkan-validation-layers/layers/
H A Dunique_objects.cpp335 const VkAllocationCallbacks *pAllocator, VkDeviceMemory *pMemory) {
381 VkResult result = device_data->device_dispatch_table->AllocateMemory(device, input_allocate_info, pAllocator, pMemory);
386 device_data->unique_id_mapping[unique_id] = reinterpret_cast<uint64_t &>(*pMemory);
387 *pMemory = reinterpret_cast<VkDeviceMemory &>(unique_id);
334 AllocateMemory(VkDevice device, const VkMemoryAllocateInfo *pAllocateInfo, const VkAllocationCallbacks *pAllocator, VkDeviceMemory *pMemory) argument
H A Dobject_tracker.cpp627 const VkAllocationCallbacks *pAllocator, VkDeviceMemory *pMemory) {
636 VkResult result = get_dispatch_table(ot_device_table_map, device)->AllocateMemory(device, pAllocateInfo, pAllocator, pMemory);
640 CreateObject(device, *pMemory, VK_DEBUG_REPORT_OBJECT_TYPE_DEVICE_MEMORY_EXT, pAllocator);
626 AllocateMemory(VkDevice device, const VkMemoryAllocateInfo *pAllocateInfo, const VkAllocationCallbacks *pAllocator, VkDeviceMemory *pMemory) argument
H A Dparameter_validation.cpp1838 const VkAllocationCallbacks *pAllocator, VkDeviceMemory *pMemory) {
1844 skip_call |= parameter_validation_vkAllocateMemory(my_data->report_data, pAllocateInfo, pAllocator, pMemory);
1847 result = get_dispatch_table(pc_device_table_map, device)->AllocateMemory(device, pAllocateInfo, pAllocator, pMemory);
1837 AllocateMemory(VkDevice device, const VkMemoryAllocateInfo *pAllocateInfo, const VkAllocationCallbacks *pAllocator, VkDeviceMemory *pMemory) argument
H A Dcore_validation.cpp5073 const VkAllocationCallbacks *pAllocator, VkDeviceMemory *pMemory) {
5075 VkResult result = my_data->dispatch_table.AllocateMemory(device, pAllocateInfo, pAllocator, pMemory);
5078 add_mem_obj_info(my_data, device, *pMemory, pAllocateInfo);
5072 AllocateMemory(VkDevice device, const VkMemoryAllocateInfo *pAllocateInfo, const VkAllocationCallbacks *pAllocator, VkDeviceMemory *pMemory) argument
/external/icu/icu4c/source/common/
H A Dubidi.c195 * If *pMemory!=NULL, then assume *pSize>0.
203 void **pMemory = (void **)bidiMem; local
205 if(*pMemory==NULL) {
207 if(mayAllocate && (*pMemory=uprv_malloc(sizeNeeded))!=NULL) {
228 if((memory=uprv_realloc(*pMemory, sizeNeeded))!=NULL) {
229 *pMemory=memory;
/external/vulkan-validation-layers/loader/
H A Dloader.c168 void *pMemory = NULL; local
176 pMemory = instance->alloc_callbacks.pfnAllocation(
181 pMemory = malloc(size);
183 return pMemory;
187 void *pMemory) {
188 if (pMemory != NULL) {
194 instance->alloc_callbacks.pUserData, pMemory);
197 free(pMemory);
203 void *pMemory, size_t orig_size, size_t size,
206 if (pMemory
186 loader_instance_heap_free(const struct loader_instance *instance, void *pMemory) argument
202 loader_instance_heap_realloc(const struct loader_instance *instance, void *pMemory, size_t orig_size, size_t size, VkSystemAllocationScope alloc_scope) argument
231 loader_instance_tls_heap_free(void *pMemory) argument
237 void *pMemory = NULL; local
255 loader_device_heap_free(const struct loader_device *device, void *pMemory) argument
271 loader_device_heap_realloc(const struct loader_device *device, void *pMemory, size_t orig_size, size_t size, VkSystemAllocationScope alloc_scope) argument
[all...]
H A Dtrampoline.c998 VkDeviceMemory *pMemory) {
1003 return disp->AllocateMemory(device, pAllocateInfo, pAllocator, pMemory);
996 vkAllocateMemory(VkDevice device, const VkMemoryAllocateInfo *pAllocateInfo, const VkAllocationCallbacks *pAllocator, VkDeviceMemory *pMemory) argument
/external/vulkan-validation-layers/tests/layers/
H A Dwrap_objects.cpp241 VKAPI_ATTR VkResult VKAPI_CALL vkAllocateMemory(VkDevice device, const VkMemoryAllocateInfo* pAllocateInfo, const VkAllocationCallbacks* pAllocator, VkDeviceMemory* pMemory) argument
243 VkResult result = device_dispatch_table(device)->AllocateMemory(device, pAllocateInfo, pAllocator, pMemory);

Completed in 288 milliseconds