Lines Matching refs:cnst
351 list_for_each_entry(struct dxil_const, cnst, list, head) {
353 dump_value(d, &cnst->value);
355 dump_type_name(d, cnst->value.type);
356 if (!cnst->undef) {
357 switch (cnst->value.type->type) {
359 _mesa_string_buffer_printf(d->buf, " %10.5f\n", cnst->float_value);
362 _mesa_string_buffer_printf(d->buf, " %d\n", cnst->int_value);
367 i < cnst->value.type->array_or_vector_def.num_elems; i++) {
369 cnst->array_values[i]->id);
370 dump_type_name(d, cnst->value.type);
371 if (i != cnst->value.type->array_or_vector_def.num_elems - 1)