OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:instance_table_map
(Results
1 - 5
of
5
) sorted by null
/external/vulkan-validation-layers/layers/
vk_layer_table.h
33
typedef std::unordered_map<void *, VkLayerInstanceDispatchTable *>
instance_table_map
;
typedef
36
VkLayerInstanceDispatchTable *initInstanceTable(VkInstance instance, const PFN_vkGetInstanceProcAddr gpa,
instance_table_map
&map);
49
VkLayerInstanceDispatchTable *get_dispatch_table(
instance_table_map
&map, void *object);
57
void destroy_dispatch_table(
instance_table_map
&map, dispatch_key key);
vk_layer_table.cpp
33
static
instance_table_map
tableInstanceMap;
47
instance_table_map
::const_iterator it = tableInstanceMap.find((void *)key);
73
void destroy_dispatch_table(
instance_table_map
&map, dispatch_key key) {
75
instance_table_map
::const_iterator it = map.find((void *)key);
105
VkLayerInstanceDispatchTable *get_dispatch_table(
instance_table_map
&map, void *object) {
108
instance_table_map
::const_iterator it = map.find((void *)key);
146
VkLayerInstanceDispatchTable *initInstanceTable(VkInstance instance, const PFN_vkGetInstanceProcAddr gpa,
instance_table_map
&map) {
149
instance_table_map
::const_iterator it = map.find((void *)key);
unique_objects.h
67
static
instance_table_map
unique_objects_instance_table_map;
object_tracker.h
95
static
instance_table_map
object_tracker_instance_table_map;
[
all
...]
parameter_validation.cpp
70
static
instance_table_map
pc_instance_table_map;
[
all
...]
Completed in 195 milliseconds