Home
last modified time | relevance | path

Searched refs:queue_info (Results 1 – 7 of 7) sorted by relevance

/external/syslinux/gpxe/src/drivers/net/ath5k/
Dath5k_qcu.c35 const struct ath5k_txq_info *queue_info) in ath5k_hw_set_tx_queueprops() argument
40 memcpy(&ah->ah_txq, queue_info, sizeof(struct ath5k_txq_info)); in ath5k_hw_set_tx_queueprops()
43 if ((queue_info->tqi_type == AR5K_TX_QUEUE_DATA && in ath5k_hw_set_tx_queueprops()
44 ((queue_info->tqi_subtype == AR5K_WME_AC_VI) || in ath5k_hw_set_tx_queueprops()
45 (queue_info->tqi_subtype == AR5K_WME_AC_VO))) || in ath5k_hw_set_tx_queueprops()
46 queue_info->tqi_type == AR5K_TX_QUEUE_UAPSD) in ath5k_hw_set_tx_queueprops()
56 struct ath5k_txq_info *queue_info) in ath5k_hw_setup_tx_queue() argument
70 if (queue_info != NULL) { in ath5k_hw_setup_tx_queue()
71 queue_info->tqi_type = queue_type; in ath5k_hw_setup_tx_queue()
72 ret = ath5k_hw_set_tx_queueprops(ah, queue_info); in ath5k_hw_setup_tx_queue()
Dath5k.h1137 extern int ath5k_hw_set_tx_queueprops(struct ath5k_hw *ah, const struct ath5k_txq_info *queue_info);
1140 struct ath5k_txq_info *queue_info);
/external/vulkan-validation-layers/demos/smoke/
DShell.cpp284 std::array<VkDeviceQueueCreateInfo, 2> queue_info = {}; in create_dev() local
285 queue_info[0].sType = VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO; in create_dev()
286 queue_info[0].queueFamilyIndex = ctx_.game_queue_family; in create_dev()
287 queue_info[0].queueCount = settings_.queue_count; in create_dev()
288 queue_info[0].pQueuePriorities = queue_priorities.data(); in create_dev()
291 queue_info[1].sType = VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO; in create_dev()
292 queue_info[1].queueFamilyIndex = ctx_.present_queue_family; in create_dev()
293 queue_info[1].queueCount = 1; in create_dev()
294 queue_info[1].pQueuePriorities = queue_priorities.data(); in create_dev()
301 dev_info.pQueueCreateInfos = queue_info.data(); in create_dev()
/external/selinux/checkpolicy/
Dqueue.h24 typedef struct queue_info { struct
Dqueue.c17 q = (queue_t) malloc(sizeof(struct queue_info)); in queue_create()
/external/vulkan-validation-layers/tests/
Dvktestbinding.cpp252 std::vector<VkDeviceQueueCreateInfo> queue_info; in init() local
253 queue_info.reserve(queue_props.size()); in init()
270 queue_info.push_back(qi); in init()
276 dev_info.queueCreateInfoCount = queue_info.size(); in init()
277 dev_info.pQueueCreateInfos = queue_info.data(); in init()
Dlayer_validation_tests.cpp1963 std::vector<VkDeviceQueueCreateInfo> queue_info; in TEST_F() local
1964 queue_info.reserve(queue_props.size()); in TEST_F()
1974 queue_info.push_back(qi); in TEST_F()
1985 device_create_info.queueCreateInfoCount = queue_info.size(); in TEST_F()
1986 device_create_info.pQueueCreateInfos = queue_info.data(); in TEST_F()