Lines Matching defs:io
726 struct dxil_signature_record *io)
730 for (unsigned i = 0; i < num; ++i, ++io) {
731 for (unsigned j = 0; j < io->num_elements; ++j) {
733 mask_to_string(io->elements[j].mask, mask);
735 io->name, io->elements[j].semantic_index,
736 mask, io->elements[j].reg, io->sysvalue,
737 component_type_as_string(io->elements[j].comp_type));
758 unsigned num, struct dxil_psv_signature_element *io)
762 for (unsigned i = 0; i < num; ++i, ++io) {
764 m->sem_string_table->buf + io->semantic_name_offset,
765 (int)io->start_row, (int)io->rows,
766 (int)((io->cols_and_start & 0xf) >> 4),
767 (int)(io->cols_and_start & 0xf),
768 (int)io->semantic_kind,
769 component_type_as_string(io->component_type),
770 (int)io->interpolation_mode,
771 (int)io->dynamic_mask_and_stream);
772 for (int k = 0; k < io->rows; ++k) {
775 _mesa_string_buffer_printf(buf,"%d ", m->sem_index_table.data[io->start_row + k]);