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

/external/icu/icu4c/source/common/
H A Dubidi.c193 * If *pMemory!=NULL, then assume *pSize>0.
201 void **pMemory = (void **)bidiMem; local
203 if(*pMemory==NULL) {
205 if(mayAllocate && (*pMemory=uprv_malloc(sizeNeeded))!=NULL) {
226 if((memory=uprv_realloc(*pMemory, sizeNeeded))!=NULL) {
227 *pMemory=memory;
/external/vulkan-validation-layers/loader/
H A Dloader.c184 void loader_heap_free(const struct loader_instance *instance, void *pMemory) { argument
185 if (pMemory == NULL)
189 pMemory);
192 free(pMemory);
195 void *loader_heap_realloc(const struct loader_instance *instance, void *pMemory, argument
198 if (pMemory == NULL || orig_size == 0)
201 loader_heap_free(instance, pMemory);
207 memset(((uint8_t *)pMemory) + size, 0, orig_size - size);
208 return pMemory;
216 memcpy(new_ptr, pMemory, orig_siz
229 loader_tls_heap_free(void *pMemory) argument
[all...]
H A Dtrampoline.c906 VkDeviceMemory *pMemory) {
911 return disp->AllocateMemory(device, pAllocateInfo, pAllocator, pMemory);
904 vkAllocateMemory(VkDevice device, const VkMemoryAllocateInfo *pAllocateInfo, const VkAllocationCallbacks *pAllocator, VkDeviceMemory *pMemory) argument
/external/vulkan-validation-layers/layers/
H A Dparameter_validation.cpp1881 bool PostAllocateMemory(VkDevice device, VkDeviceMemory *pMemory, VkResult result) { argument
1893 const VkAllocationCallbacks *pAllocator, VkDeviceMemory *pMemory) {
1899 skipCall |= parameter_validation_vkAllocateMemory(my_data->report_data, pAllocateInfo, pAllocator, pMemory);
1902 result = get_dispatch_table(pc_device_table_map, device)->AllocateMemory(device, pAllocateInfo, pAllocator, pMemory);
1904 PostAllocateMemory(device, pMemory, result);
1892 vkAllocateMemory(VkDevice device, const VkMemoryAllocateInfo *pAllocateInfo, const VkAllocationCallbacks *pAllocator, VkDeviceMemory *pMemory) argument

Completed in 267 milliseconds