Home
last modified time | relevance | path

Searched refs:dispatch_table (Results 1 – 25 of 46) sorted by relevance

12

/third_party/musl/porting/linux/user/src/hook/
Dmalloc_common.c12 volatile const struct MallocDispatchType* dispatch_table = get_current_dispatch_table(); in malloc() local
13 if (__predict_false(dispatch_table != NULL)) { in malloc()
14 void*ret = dispatch_table->malloc(bytes); in malloc()
26 volatile const struct MallocDispatchType* dispatch_table = get_current_dispatch_table(); in free() local
27 if (__predict_false(dispatch_table != NULL)) { in free()
28 dispatch_table->free(mem); in free()
36 volatile const struct MallocDispatchType* dispatch_table = get_current_dispatch_table(); in mmap() local
37 if (__predict_false(dispatch_table != NULL)) { in mmap()
38 return dispatch_table->mmap(addr, length, prot, flags, fd, offset); in mmap()
46 volatile const struct MallocDispatchType* dispatch_table = get_current_dispatch_table(); in munmap() local
[all …]
Dmusl_preinit.c296 …rary_handle, const char* shared_lib, const char* prefix, struct MallocDispatchType* dispatch_table) in init_malloc_hook_shared_library() argument
323 if (!init_hook_functions(shared_library_handle, dispatch_table, prefix)) { in init_malloc_hook_shared_library()
331 …ared_library(const char* shared_lib, const char* prefix, struct MallocDispatchType* dispatch_table) in load_malloc_hook_shared_library() argument
342 if (!init_malloc_hook_shared_library(shared_library_handle, shared_lib, prefix, dispatch_table)) { in load_malloc_hook_shared_library()
/third_party/mesa3d/src/vulkan/util/
Dvk_physical_device.c33 const struct vk_physical_device_dispatch_table *dispatch_table) in vk_physical_device_init() argument
42 pdevice->dispatch_table = *dispatch_table; in vk_physical_device_init()
46 &pdevice->dispatch_table, &vk_common_physical_device_entrypoints, false); in vk_physical_device_init()
108 pdevice->dispatch_table.GetPhysicalDeviceFeatures2(physicalDevice, in vk_common_GetPhysicalDeviceFeatures()
124 pdevice->dispatch_table.GetPhysicalDeviceProperties2(physicalDevice, in vk_common_GetPhysicalDeviceProperties()
140 pdevice->dispatch_table.GetPhysicalDeviceMemoryProperties2(physicalDevice, in vk_common_GetPhysicalDeviceMemoryProperties()
171 pdevice->dispatch_table.GetPhysicalDeviceFormatProperties2(physicalDevice, in vk_common_GetPhysicalDeviceFormatProperties()
202 pdevice->dispatch_table.GetPhysicalDeviceImageFormatProperties2(physicalDevice, in vk_common_GetPhysicalDeviceImageFormatProperties()
231 pdevice->dispatch_table.GetPhysicalDeviceSparseImageFormatProperties2(physicalDevice, in vk_common_GetPhysicalDeviceSparseImageFormatProperties()
245 pdevice->dispatch_table.GetPhysicalDeviceSparseImageFormatProperties2(physicalDevice, in vk_common_GetPhysicalDeviceSparseImageFormatProperties()
Dvk_device.c38 const struct vk_device_dispatch_table *dispatch_table, in vk_device_init() argument
51 device->dispatch_table = *dispatch_table; in vk_device_init()
55 &device->dispatch_table, &vk_common_device_entrypoints, false); in vk_device_init()
128 return vk_device_dispatch_table_get_if_supported(&device->dispatch_table, in vk_device_get_proc_addr()
166 device->dispatch_table.GetDeviceQueue2(_device, &info, pQueue); in vk_common_GetDeviceQueue()
212 device->dispatch_table.GetBufferMemoryRequirements2(_device, &info, &reqs); in vk_common_GetBufferMemoryRequirements()
232 return device->dispatch_table.BindBufferMemory2(_device, 1, &bind); in vk_common_BindBufferMemory()
249 device->dispatch_table.GetImageMemoryRequirements2(_device, &info, &reqs); in vk_common_GetImageMemoryRequirements()
269 return device->dispatch_table.BindImageMemory2(_device, 1, &bind); in vk_common_BindImageMemory()
286 device->dispatch_table.GetImageSparseMemoryRequirements2(_device, in vk_common_GetImageSparseMemoryRequirements()
[all …]
Dvk_cmd_copy.c59 disp->device->dispatch_table.CmdCopyBuffer2KHR(commandBuffer, &info); in vk_common_CmdCopyBuffer()
101 disp->device->dispatch_table.CmdCopyImage2KHR(commandBuffer, &info); in vk_common_CmdCopyImage()
142 disp->device->dispatch_table.CmdCopyBufferToImage2KHR(commandBuffer, &info); in vk_common_CmdCopyBufferToImage()
183 disp->device->dispatch_table.CmdCopyImageToBuffer2KHR(commandBuffer, &info); in vk_common_CmdCopyImageToBuffer()
232 disp->device->dispatch_table.CmdBlitImage2KHR(commandBuffer, &info); in vk_common_CmdBlitImage()
274 disp->device->dispatch_table.CmdResolveImage2KHR(commandBuffer, &info); in vk_common_CmdResolveImage()
Dvk_instance.c37 const struct vk_instance_dispatch_table *dispatch_table, in vk_instance_init() argument
125 instance->dispatch_table = *dispatch_table; in vk_instance_init()
129 &instance->dispatch_table, &vk_common_instance_entrypoints, false); in vk_instance_init()
234 func = vk_instance_dispatch_table_get_if_supported(&instance->dispatch_table, in vk_instance_get_proc_addr()
268 func = vk_instance_dispatch_table_get(&instance->dispatch_table, name); in vk_instance_get_proc_addr_unchecked()
Dvk_synchronization2.c42 device->dispatch_table.CmdWriteTimestamp2KHR(commandBuffer, in vk_common_CmdWriteTimestamp()
150 device->dispatch_table.CmdPipelineBarrier2KHR(commandBuffer, &dep_info); in vk_common_CmdPipelineBarrier()
177 device->dispatch_table.CmdSetEvent2KHR(commandBuffer, event, &dep_info); in vk_common_CmdSetEvent()
189 device->dispatch_table.CmdResetEvent2KHR(commandBuffer, in vk_common_CmdResetEvent()
231 device->dispatch_table.CmdWaitEvents2KHR(commandBuffer, eventCount, pEvents, deps); in vk_common_CmdWaitEvents()
248 device->dispatch_table.CmdPipelineBarrier(commandBuffer, in vk_common_CmdWaitEvents()
267 device->dispatch_table.CmdWriteBufferMarker2AMD(commandBuffer, in vk_common_CmdWriteBufferMarkerAMD()
392 VkResult result = device->dispatch_table.QueueSubmit2KHR(_queue, in vk_common_QueueSubmit()
Dvk_physical_device.h42 struct vk_physical_device_dispatch_table dispatch_table; member
54 const struct vk_physical_device_dispatch_table *dispatch_table);
Dvk_device.h43 struct vk_device_dispatch_table dispatch_table; member
62 const struct vk_device_dispatch_table *dispatch_table,
Dvk_instance.h52 struct vk_instance_dispatch_table dispatch_table; member
78 const struct vk_instance_dispatch_table *dispatch_table,
Dvk_render_pass.c229 device->dispatch_table.CreateRenderPass2(_device, create_info, in vk_common_CreateRenderPass()
252 disp->device->dispatch_table.CmdBeginRenderPass2(commandBuffer, in vk_common_CmdBeginRenderPass()
268 disp->device->dispatch_table.CmdEndRenderPass2(commandBuffer, &info); in vk_common_CmdEndRenderPass()
289 disp->device->dispatch_table.CmdNextSubpass2(commandBuffer, &begin_info, in vk_common_CmdNextSubpass()
/third_party/boost/libs/mpl/example/fsm/
Dplayer2.cpp56 struct dispatch_table struct
81 init_cell(dispatch_table* self_) in init_cell() argument
92 dispatch_table* self;
97 dispatch_table() in dispatch_table() argument
117 static const dispatch_table instance; argument
125 const dispatch_table<Fsm, initial_state, Stt, Event>
126 dispatch_table<Fsm, initial_state, Stt, Event>::instance;
141 typedef dispatch_table<Derived, Derived::initial_state,stt,Event> table; in process_event()
157 friend class dispatch_table;
/third_party/boost/boost/msm/back/
Dfavor_compile_time.hpp78 struct dispatch_table < Fsm, Stt, Event, ::boost::msm::back::favor_compile_time> struct
119 init_cell(dispatch_table* self_) in init_cell()
180 dispatch_table* self;
189 default_init_cell(dispatch_table* self_,chain_row* tofill_entries_) in default_init_cell()
260 dispatch_table* self;
270 default_init_cell(dispatch_table* self_,chain_row* tofill_entries_) in default_init_cell()
285 dispatch_table* self;
291 dispatch_table() in dispatch_table() function
307 static const dispatch_table instance;
314 const boost::msm::back::dispatch_table<Fsm,Stt, Event,favor_compile_time> argument
[all …]
Ddispatch_table.hpp39 struct dispatch_table struct
165 init_cell(dispatch_table* self_) in init_cell()
272 dispatch_table* self;
281 default_init_cell(dispatch_table* self_,cell* tofill_entries_) in default_init_cell()
320 dispatch_table* self;
330 default_init_cell(dispatch_table* self_,cell* tofill_entries_) in default_init_cell()
358 dispatch_table* self;
364 dispatch_table() in dispatch_table() argument
423 static const dispatch_table instance; argument
/third_party/mesa3d/src/virtio/vulkan/
Dvn_common.h243 const struct vk_instance_dispatch_table *dispatch_table, in vn_instance_base_init() argument
248 dispatch_table, info, alloc); in vn_instance_base_init()
264 const struct vk_physical_device_dispatch_table *dispatch_table) in vn_physical_device_base_init() argument
268 supported_extensions, dispatch_table); in vn_physical_device_base_init()
282 const struct vk_device_dispatch_table *dispatch_table, in vn_device_base_init() argument
287 dispatch_table, info, alloc); in vn_device_base_init()
Dvn_device.c283 struct vk_device_dispatch_table dispatch_table; in vn_CreateDevice() local
284 vk_device_dispatch_table_from_entrypoints(&dispatch_table, in vn_CreateDevice()
286 vk_device_dispatch_table_from_entrypoints(&dispatch_table, in vn_CreateDevice()
289 &dispatch_table, pCreateInfo, alloc); in vn_CreateDevice()
/third_party/protobuf/python/google/protobuf/internal/
Dtesting_refleaks.py81 self._saved_pickle_registry = copyreg.dispatch_table.copy()
104 copyreg.dispatch_table.clear()
105 copyreg.dispatch_table.update(self._saved_pickle_registry)
/third_party/python/Lib/test/libregrtest/
Drefleak.py43 ps = copyreg.dispatch_table.copy()
157 copyreg.dispatch_table.clear()
158 copyreg.dispatch_table.update(ps)
/third_party/mesa3d/src/gallium/frontends/lavapipe/
Dlvp_wsi.c32 func = vk_instance_dispatch_table_get(&pdevice->vk.instance->dispatch_table, pName); in lvp_wsi_proc_addr()
36 func = vk_physical_device_dispatch_table_get(&pdevice->vk.dispatch_table, pName); in lvp_wsi_proc_addr()
/third_party/mesa3d/src/panfrost/vulkan/
Dpanvk_device.c173 struct vk_instance_dispatch_table dispatch_table; in panvk_CreateInstance() local
175 vk_instance_dispatch_table_from_entrypoints(&dispatch_table, in panvk_CreateInstance()
178 vk_instance_dispatch_table_from_entrypoints(&dispatch_table, in panvk_CreateInstance()
183 &dispatch_table, in panvk_CreateInstance()
281 struct vk_physical_device_dispatch_table dispatch_table; in panvk_physical_device_init() local
282 vk_physical_device_dispatch_table_from_entrypoints(&dispatch_table, in panvk_physical_device_init()
285 vk_physical_device_dispatch_table_from_entrypoints(&dispatch_table, in panvk_physical_device_init()
291 &dispatch_table); in panvk_physical_device_init()
963 struct vk_device_dispatch_table dispatch_table; in panvk_CreateDevice() local
979 vk_device_dispatch_table_from_entrypoints(&dispatch_table, in panvk_CreateDevice()
[all …]
/third_party/python/Lib/
Dcopy.py53 from copyreg import dispatch_table
86 reductor = dispatch_table.get(cls)
155 reductor = dispatch_table.get(cls)
Dcopyreg.py10 dispatch_table = {} variable
15 dispatch_table[ob_type] = pickle_function
/third_party/python/Lib/multiprocessing/
Dreduction.py36 _copyreg_dispatch_table = copyreg.dispatch_table
40 self.dispatch_table = self._copyreg_dispatch_table.copy()
41 self.dispatch_table.update(self._extra_reducers)
/third_party/mesa3d/src/broadcom/vulkan/
Dv3dv_wsi.c39 func = vk_instance_dispatch_table_get(&pdevice->vk.instance->dispatch_table, pName); in v3dv_wsi_proc_addr()
43 func = vk_physical_device_dispatch_table_get(&pdevice->vk.dispatch_table, pName); in v3dv_wsi_proc_addr()
/third_party/python/Lib/idlelib/idle_test/
Dtest_rpc.py20 rpc.CodePickler.dispatch_table)

12