HomeSort by relevance Sort by last modified time
    Searched full:dispatch_table (Results 1 - 25 of 59) sorted by null

1 2 3

  /external/vulkan-validation-layers/layers/
unique_objects.cpp 118 layer_init_instance_dispatch_table(*pInstance, &instance_data->dispatch_table, fpGetInstanceProcAddr);
122 &instance_data->dispatch_table, *pInstance, pCreateInfo->enabledExtensionCount, pCreateInfo->ppEnabledExtensionNames);
152 VkLayerInstanceDispatchTable *disp_table = &instance_data->dispatch_table;
191 layer_init_device_dispatch_table(*pDevice, &my_device_data->dispatch_table, fpGetDeviceProcAddr);
206 dev_data->dispatch_table.DestroyDevice(device, pAllocator);
245 return instance_data->dispatch_table.EnumerateDeviceExtensionProperties(physicalDevice, NULL, pCount, pProperties);
255 const auto &table = device_data->dispatch_table;
267 const auto &table = instance_data->dispatch_table;
274 VkLayerInstanceDispatchTable *disp_table = &instance_data->dispatch_table;
307 VkResult result = device_data->dispatch_table.CreateComputePipelines(device, pipelineCache, createInfoCount
    [all...]
unique_objects.h 52 VkLayerInstanceDispatchTable dispatch_table = {}; member in struct:unique_objects::instance_layer_data
67 VkLayerDispatchTable dispatch_table = {}; member in struct:unique_objects::layer_data
core_validation.cpp 112 VkLayerInstanceDispatchTable dispatch_table; member in struct:core_validation::instance_layer_data
128 VkLayerDispatchTable dispatch_table; member in struct:core_validation::layer_data
    [all...]
  /external/python/cpython3/Lib/multiprocessing/
reduction.py 36 _copyreg_dispatch_table = copyreg.dispatch_table
40 self.dispatch_table = self._copyreg_dispatch_table.copy()
41 self.dispatch_table.update(self._extra_reducers)
  /external/python/cpython3/Lib/test/libregrtest/
refleak.py 56 ps = copyreg.dispatch_table.copy()
130 copyreg.dispatch_table.clear()
131 copyreg.dispatch_table.update(ps)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
copy_reg.py 12 dispatch_table = {} variable
20 dispatch_table[ob_type] = pickle_function
copy.py 53 from copy_reg import dispatch_table
82 reductor = dispatch_table.get(cls)
176 reductor = dispatch_table.get(cls)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
copy_reg.py 12 dispatch_table = {} variable
20 dispatch_table[ob_type] = pickle_function
copy.py 53 from copy_reg import dispatch_table
82 reductor = dispatch_table.get(cls)
176 reductor = dispatch_table.get(cls)
  /external/python/cpython2/Lib/
copy_reg.py 12 dispatch_table = {} variable
20 dispatch_table[ob_type] = pickle_function
copy.py 53 from copy_reg import dispatch_table
82 reductor = dispatch_table.get(cls)
176 reductor = dispatch_table.get(cls)
  /external/python/cpython3/Lib/
copyreg.py 10 dispatch_table = {} variable
15 dispatch_table[ob_type] = pickle_function
copy.py 53 from copyreg import dispatch_table
90 reductor = dispatch_table.get(cls)
163 reductor = dispatch_table.get(cls)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
copy_reg.py 12 dispatch_table = {} variable
20 dispatch_table[ob_type] = pickle_function
copy.py 53 from copy_reg import dispatch_table
82 reductor = dispatch_table.get(cls)
176 reductor = dispatch_table.get(cls)
  /prebuilts/gdb/linux-x86/lib/python2.7/
copy_reg.py 12 dispatch_table = {} variable
20 dispatch_table[ob_type] = pickle_function
copy.py 53 from copy_reg import dispatch_table
82 reductor = dispatch_table.get(cls)
176 reductor = dispatch_table.get(cls)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
copy_reg.py 12 dispatch_table = {} variable
20 dispatch_table[ob_type] = pickle_function
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
copy_reg.py 12 dispatch_table = {} variable
20 dispatch_table[ob_type] = pickle_function
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/layers/
core_validation.cpp 100 VkLayerInstanceDispatchTable dispatch_table; member in struct:core_validation::instance_layer_data
133 VkLayerDispatchTable dispatch_table; member in struct:core_validation::layer_data
    [all...]
vk_layer_table.cpp 57 fprintf(stderr, "destroy device dispatch_table: map: 0x%p, key: 0x%p, table: 0x%p\n", &map, key, it->second);
70 fprintf(stderr, "destroy instance dispatch_table: map: 0x%p, key: 0x%p, table: 0x%p\n", &map, key, it->second);
  /external/python/cpython3/Doc/library/
pickle.rst 320 .. attribute:: dispatch_table
331 :attr:`dispatch_table` attribute, and it will instead use the
334 one can set the :attr:`dispatch_table` attribute to a dict-like
336 :attr:`dispatch_table` attribute then this will be used as the
674 available as :data:`copyreg.dispatch_table`. Therefore, one may
675 choose to use a modified copy of :data:`copyreg.dispatch_table` as a
682 p.dispatch_table = copyreg.dispatch_table.copy()
683 p.dispatch_table[SomeClass] = reduce_SomeClass
690 dispatch_table = copyreg.dispatch_table.copy(
    [all...]
copyreg.rst 41 :attr:`~pickle.Pickler.dispatch_table` attribute of a pickler
  /external/python/cpython3/Lib/test/
test_pickle.py 127 return pickle.dispatch_table.copy()
135 return collections.ChainMap({}, pickle.dispatch_table)
180 return pickle.dispatch_table.copy()
185 return collections.ChainMap({}, pickle.dispatch_table)
  /bionic/libc/bionic/
malloc_common.cpp 382 static void* LoadSharedLibrary(const char* shared_lib, const char* prefix, MallocDispatch* dispatch_table) {
408 if (!InitMallocFunctions(impl_handle, dispatch_table, prefix)) {
435 MallocDispatch dispatch_table; local
436 void* impl_handle = LoadSharedLibrary(shared_lib, prefix, &dispatch_table);
448 globals->malloc_dispatch = dispatch_table;

Completed in 4603 milliseconds

1 2 3