HomeSort by relevance Sort by last modified time
    Searched refs:cmd_info (Results 1 - 9 of 9) sorted by null

  /external/vulkan-validation-layers/
unique_objects_generator.py 408 def generate_create_ndo_code(self, indent, proto, params, cmd_info):
415 if cmd_info[-1].len is not None:
423 create_ndo_code += '%sfor (uint32_t index0 = 0; index0 < %s; index0++) {\n' % (indent, cmd_info[-1].len)
425 ndo_dest = '%s[index0]' % cmd_info[-1].name
437 def generate_destroy_ndo_code(self, indent, proto, cmd_info):
442 if cmd_info[-1].len is not None:
447 if self.isHandleTypeNonDispatchable(cmd_info[param].type) == True:
450 destroy_ndo_code += '%sif ((VK_SUCCESS == result) && (%s)) {\n' % (indent, cmd_info[param].name)
453 destroy_ndo_code += '%sfor (uint32_t index0 = 0; index0 < %s; index0++) {\n' % (indent, cmd_info[param].len)
455 destroy_ndo_code += '%s%s handle = %s[index0];\n' % (indent, cmd_info[param].type, cmd_info[param].name
    [all...]
  /hardware/broadcom/wlan/bcmdhd/wifi_hal/
common.h 154 } cmd_info; typedef in typeref:struct:__anon40103
180 cmd_info *cmd; // Outstanding commands
common.cpp 186 memmove(&info->cmd[i], &info->cmd[i+1], (info->num_cmd - i - 1) * sizeof(cmd_info));
223 memmove(&info->cmd[i], &info->cmd[i+1], (info->num_cmd - i - 1) * sizeof(cmd_info));
wifi_hal.cpp 247 info->cmd = (cmd_info *)malloc(sizeof(cmd_info) * DEFAULT_CMD_SIZE);
369 cmd_info *cmdi = &(info->cmd[bad_commands]);
    [all...]
  /hardware/qcom/wlan/qcwcn/wifi_hal/
common.h 79 } cmd_info; typedef in typeref:struct:__anon44121
114 cmd_info *cmd; // Outstanding commands
common.cpp 212 memmove(&info->cmd[i], &info->cmd[i+1], (info->num_cmd - i) * sizeof(cmd_info));
229 memmove(&info->cmd[i], &info->cmd[i+1], (info->num_cmd - i) * sizeof(cmd_info));
wifi_hal.cpp 509 info->cmd = (cmd_info *)malloc(sizeof(cmd_info) * DEFAULT_CMD_SIZE);
    [all...]
  /external/vulkan-validation-layers/demos/smoke/
Smoke.cpp 421 VkCommandBufferAllocateInfo cmd_info = {}; local
422 cmd_info.sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO;
423 cmd_info.commandBufferCount = static_cast<uint32_t>(frame_data_.size());
436 cmd_info.commandPool = cmd_pool;
437 cmd_info.level = (cmd_pool == cmd_pools.back()) ?
440 vk::assert_success(vk::AllocateCommandBuffers(dev_, &cmd_info, cmds.data()));
  /frameworks/rs/rsov/driver/
rsovScript.cpp 506 VkCommandBufferAllocateInfo cmd_info = { local
514 res = vkAllocateCommandBuffers(mDevice, &cmd_info, &cmd);

Completed in 113 milliseconds