OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:device_table_map
(Results
1 - 5
of
5
) sorted by null
/external/vulkan-validation-layers/layers/
vk_layer_table.h
32
typedef std::unordered_map<void *, VkLayerDispatchTable *>
device_table_map
;
typedef
34
VkLayerDispatchTable *initDeviceTable(VkDevice device, const PFN_vkGetDeviceProcAddr gpa,
device_table_map
&map);
47
VkLayerDispatchTable *get_dispatch_table(
device_table_map
&map, void *object);
56
void destroy_dispatch_table(
device_table_map
&map, dispatch_key key);
vk_layer_table.cpp
32
static
device_table_map
tableMap;
40
device_table_map
::const_iterator it = tableMap.find((void *)key);
60
void destroy_dispatch_table(
device_table_map
&map, dispatch_key key) {
62
device_table_map
::const_iterator it = map.find((void *)key);
90
VkLayerDispatchTable *get_dispatch_table(
device_table_map
&map, void *object) {
92
device_table_map
::const_iterator it = map.find((void *)key);
173
VkLayerDispatchTable *initDeviceTable(VkDevice device, const PFN_vkGetDeviceProcAddr gpa,
device_table_map
&map) {
176
device_table_map
::const_iterator it = map.find((void *)key);
unique_objects.h
66
static
device_table_map
unique_objects_device_table_map;
object_tracker.h
94
static
device_table_map
object_tracker_device_table_map;
[
all
...]
parameter_validation.cpp
69
static
device_table_map
pc_device_table_map;
[
all
...]
Completed in 158 milliseconds