Lines Matching refs:cnst
346 list_for_each_entry(struct dxil_const, cnst, list, head) {
348 dump_value(d, &cnst->value);
350 dump_type_name(d, cnst->value.type);
351 if (!cnst->undef) {
352 switch (cnst->value.type->type) {
354 _mesa_string_buffer_printf(d->buf, " %10.5f\n", cnst->float_value);
357 _mesa_string_buffer_printf(d->buf, " %d\n", cnst->int_value);
362 i < cnst->value.type->array_or_vector_def.num_elems; i++) {
364 cnst->array_values[i]->id);
365 dump_type_name(d, cnst->value.type);
366 if (i != cnst->value.type->array_or_vector_def.num_elems - 1)