Lines Matching refs:buffer
663 char buffer[BUFSIZE];
667 buffer[msglen++] = ':';
669 memcpy(&buffer[msglen], cmd, cmdlen);
673 buffer[msglen++] = '=';
674 memcpy(&buffer[msglen], param, paramlen);
676 buffer[msglen++] = ';';
679 os_socket_send(instance_data->control_client, buffer, msglen, 0);
1037 /* Upload buffer */
1077 /* Copy buffer to image */
1132 VkBuffer *buffer,
1137 if (*buffer != VK_NULL_HANDLE)
1138 data->vtable.DestroyBuffer(data->device, *buffer, NULL);
1147 VK_CHECK(data->vtable.CreateBuffer(data->device, &buffer_info, NULL, buffer));
1150 data->vtable.GetBufferMemoryRequirements(data->device, *buffer, &req);
1158 VK_CHECK(data->vtable.BindBufferMemory(data->device, *buffer, *buffer_memory, 0));
1214 0, nullptr, /* buffer memory barriers */
1359 0, nullptr, /* buffer memory barriers */
1780 /* Command buffer pool */
2088 VkBuffer buffer,
2097 device_data->vtable.CmdDrawIndirect(commandBuffer, buffer, offset, drawCount, stride);
2102 VkBuffer buffer,
2111 device_data->vtable.CmdDrawIndexedIndirect(commandBuffer, buffer, offset, drawCount, stride);
2116 VkBuffer buffer,
2127 device_data->vtable.CmdDrawIndirectCount(commandBuffer, buffer, offset,
2134 VkBuffer buffer,
2145 device_data->vtable.CmdDrawIndexedIndirectCount(commandBuffer, buffer, offset,
2165 VkBuffer buffer,
2172 device_data->vtable.CmdDispatchIndirect(commandBuffer, buffer, offset);
2388 /* It is legal to free a NULL command buffer*/
2431 /* Merge the submitted command buffer stats into the device. */
2435 /* Attach the command buffer to the queue so we remember to read its
2446 fprintf(stderr, "Command buffer submitted multiple times before present.\n"
2471 /* Merge the submitted command buffer stats into the device. */
2475 /* Attach the command buffer to the queue so we remember to read its
2486 fprintf(stderr, "Command buffer submitted multiple times before present.\n"