/third_party/vk-gl-cts/external/amber/src/src/vulkan/ |
H A D | vertex_buffer_test.cc | 43 dummyPtrs_.vkAllocateMemory = vkAllocateMemory; in DummyDevice() 82 static VkResult vkAllocateMemory(VkDevice, in vkAllocateMemory() function in amber::vulkan::__anon27554::DummyDevice
|
H A D | resource.cc | 147 if (device_->GetPtrs()->vkAllocateMemory(device_->GetVkDevice(), &alloc_info, in AllocateMemory() 149 return Result("Vulkan::Calling vkAllocateMemory Fail"); in AllocateMemory()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
H A D | vk_mem_alloc_wrapper.cpp | 26 funcs.vkAllocateMemory = vkAllocateMemory; in InitAllocator()
|
H A D | vk_wrapper.h | 1294 return vkAllocateMemory(device, &allocInfo, nullptr, &mHandle); in allocate()
|
/third_party/vk-gl-cts/build/include/ |
H A D | vk-wrappers-1-0.h | 3 PFN_vkAllocateMemory vkAllocateMemory; variable
|
/third_party/vk-gl-cts/build/ |
H A D | vk-wrappers-1-0.h | 3 PFN_vkAllocateMemory vkAllocateMemory; variable
|
/third_party/skia/third_party/externals/swiftshader/src/WSI/ |
H A D | VkSurfaceKHR.cpp | 61 VkResult status = vkAllocateMemory(device, &allocateInfo, nullptr, &deviceMemory); in allocateAndBindImageMemory()
|
/third_party/skia/third_party/externals/swiftshader/tests/VulkanUnitTests/ |
H A D | Device.cpp | 363 return driver->vkAllocateMemory(device, &info, 0, out); in AllocateMemory()
|
/third_party/skia/third_party/externals/angle2/src/third_party/volk/ |
H A D | volk.h | 118 PFN_vkAllocateMemory vkAllocateMemory; member 517 extern PFN_vkAllocateMemory vkAllocateMemory;
|
H A D | volk.c | 328 vkAllocateMemory = (PFN_vkAllocateMemory)load(context, "vkAllocateMemory"); in volkGenLoadDevice() 729 table->vkAllocateMemory = (PFN_vkAllocateMemory)load(context, "vkAllocateMemory"); in volkGenLoadDeviceTable() 1132 PFN_vkAllocateMemory vkAllocateMemory; variable
|
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/ |
H A D | VulkanHelper.cpp | 583 result = vkAllocateMemory(mDevice, &memoryAllocateInfo, nullptr, &deviceMemory); 983 result = vkAllocateMemory(mDevice, &memoryAllocateInfo, nullptr, &deviceMemory);
|
/third_party/skia/third_party/externals/imgui/backends/ |
H A D | imgui_impl_vulkan.cpp | 134 IMGUI_VULKAN_FUNC_MAP_MACRO(vkAllocateMemory) \ 366 err = vkAllocateMemory(v->Device, &alloc_info, v->Allocator, &buffer_memory); in CreateOrResizeBuffer() 579 err = vkAllocateMemory(v->Device, &alloc_info, v->Allocator, &bd->FontMemory); in ImGui_ImplVulkan_CreateFontsTexture() 630 err = vkAllocateMemory(v->Device, &alloc_info, v->Allocator, &bd->UploadBufferMemory); in ImGui_ImplVulkan_CreateFontsTexture()
|
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/ |
H A D | VkGetProcAddress.cpp | 176 MAKE_VULKAN_DEVICE_ENTRY(vkAllocateMemory),
|
H A D | libVulkan.cpp | 1089 VKAPI_ATTR VkResult VKAPI_CALL vkAllocateMemory(VkDevice device, const VkMemoryAllocateInfo *pAllocateInfo, const VkAllocationCallbacks *pAllocator, VkDeviceMemory *pMemory) in vkAllocateMemory() function 1818 result = vkAllocateMemory(device, &allocInfo, pAllocator, &devmem); in vkCreateImage()
|
/third_party/vulkan-loader/loader/ |
H A D | gpa_helper.c | 53 if (!strcmp(funcName, "vkAllocateMemory")) return vkAllocateMemory; in trampoline_get_proc_addr()
|
H A D | trampoline.c | 1150 LOADER_EXPORT VKAPI_ATTR VkResult VKAPI_CALL vkAllocateMemory(VkDevice device, const VkMemoryAllocateInfo *pAllocateInfo, in vkAllocateMemory() function 1155 "vkAllocateMemory: Invalid device [VUID-vkAllocateMemory-device-parameter]"); in vkAllocateMemory()
|
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/third_party/ |
H A D | vulkan_command_buffer_utils.cpp | 1103 res = vkAllocateMemory(info.device, &mem_alloc, NULL, &info.depth.mem); in init_depth_buffer() 1152 res = vkAllocateMemory(info.device, &alloc_info, NULL, &(info.uniform_data.mem)); in init_uniform_buffer() 1355 res = vkAllocateMemory(info.device, &alloc_info, NULL, &(info.vertex_buffer.mem)); in init_vertex_buffer()
|
/third_party/glfw/tests/ |
H A D | triangle-vulkan.c | 789 err = vkAllocateMemory(demo->device, &mem_alloc, NULL, &demo->depth.mem); in demo_prepare_depth() 857 err = vkAllocateMemory(demo->device, &mem_alloc, NULL, &tex_obj->mem); in demo_prepare_texture_image() 1071 err = vkAllocateMemory(demo->device, &mem_alloc, NULL, &demo->vertices.mem); in demo_prepare_vertices()
|
/third_party/skia/third_party/vulkanmemoryallocator/include/ |
H A D | vk_mem_alloc.h | 1605 m_VulkanFunctions.vkAllocateMemory = (PFN_vkAllocateMemory)vkAllocateMemory; 1632 The library makes calls to `vkAllocateMemory()` and `vkFreeMemory()` internally. 1873 should be made manually, using `vkCreateBuffer()` and `vkAllocateMemory()`. 1923 extern PFN_vkAllocateMemory vkAllocateMemory; 2077 /// Callback function called after successful vkAllocateMemory. 2092 /** \brief Set of callbacks that the library will call for `vkAllocateMemory` and `vkFreeMemory`. 2215 PFN_vkAllocateMemory VMA_NULLABLE vkAllocateMemory; member 2288 /// Informative callbacks for `vkAllocateMemory`, `vkFreeMemory`. Optional. 3912 vulkanFunctions.vkAllocateMemory [all...] |
/third_party/skia/third_party/externals/swiftshader/include/vulkan/ |
H A D | vulkan.hpp | 1558 VkResult vkAllocateMemory( VkDevice device, 1563 return ::vkAllocateMemory( device, pAllocateInfo, pAllocator, pMemory ); 10901 PFN_vkAllocateMemory vkAllocateMemory = 0; member in VULKAN_HPP_NAMESPACE::DispatchLoaderDynamic 11876 vkAllocateMemory = PFN_vkAllocateMemory( vkGetInstanceProcAddr( instance, "vkAllocateMemory" ) ); 13080 vkAllocateMemory = PFN_vkAllocateMemory( vkGetDeviceProcAddr( device, "vkAllocateMemory" ) );
|
H A D | vulkan_raii.hpp | 696 vkAllocateMemory = PFN_vkAllocateMemory( vkGetDeviceProcAddr( device, "vkAllocateMemory" ) ); in init() 1586 PFN_vkAllocateMemory vkAllocateMemory = 0; member in VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher 5725 getDispatcher()->vkAllocateMemory( static_cast<VkDevice>( *device ), in DeviceMemory() 5731 throwResultException( result, "vkAllocateMemory" ); in DeviceMemory()
|
/third_party/vulkan-headers/include/vulkan/ |
H A D | vulkan.hpp | 1151 VkResult vkAllocateMemory( VkDevice device, 1156 return ::vkAllocateMemory( device, pAllocateInfo, pAllocator, pMemory ); 16421 PFN_vkAllocateMemory vkAllocateMemory = 0; member in VULKAN_HPP_NAMESPACE::DispatchLoaderDynamic 17617 vkAllocateMemory = PFN_vkAllocateMemory( vkGetInstanceProcAddr( instance, "vkAllocateMemory" ) ); 18937 vkAllocateMemory = PFN_vkAllocateMemory( vkGetDeviceProcAddr( device, "vkAllocateMemory" ) );
|
/third_party/glfw/deps/glad/ |
H A D | vulkan.h | 5124 #define vkAllocateMemory glad_vkAllocateMemory macro 5866 glad_vkAllocateMemory = (PFN_vkAllocateMemory) load(userptr, "vkAllocateMemory"); in glad_vk_load_VK_VERSION_1_0()
|
/third_party/vk-gl-cts/external/vulkancts/scripts/src/ |
H A D | vulkan_sc_core.h | 2848 VKAPI_ATTR VkResult VKAPI_CALL vkAllocateMemory(
|
/third_party/skia/include/third_party/vulkan/vulkan/ |
H A D | vulkan_core.h | 3658 VKAPI_ATTR VkResult VKAPI_CALL vkAllocateMemory(
|