Searched refs:inputs_count (Results 1 - 25 of 33) sorted by relevance

12

/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/a2xx/
H A Dir2.h68 unsigned inputs_count; member in struct:ir2_frag_linkage
H A Dir2_nir.c501 instr->src[0] = ir2_src(ctx->f->inputs_count, IR2_SWIZZLE_ZW, IR2_SRC_INPUT);
513 instr->src[0] = ir2_src(ctx->f->inputs_count, 0, IR2_SRC_INPUT);
568 for (idx = 0; idx < ctx->f->inputs_count; idx++)
571 if (idx == ctx->f->inputs_count)
628 tmp->src[0] = ir2_src(ctx->f->inputs_count, 0, IR2_SRC_INPUT);
760 n = ctx->f->inputs_count++;
1102 ctx->f->inputs_count = 0;
1112 for (idx = 0; idx < ctx->f->inputs_count; idx++) {
1145 ctx->input[ctx->f->inputs_count].initialized = false;
H A Dfd2_program.c269 vs_export = MAX2(1, f->inputs_count) - 1;
281 COND(fp, A2XX_SQ_CONTEXT_MISC_PARAM_GEN_POS(f->inputs_count)) |
H A Dir2_assemble.c379 if (ctx->so->type == MESA_SHADER_VERTEX && ctx->f->inputs_count == 0) {
485 alloc.size = ctx->f->inputs_count - 1;
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/a2xx/
H A Dir2.h68 unsigned inputs_count; member in struct:ir2_frag_linkage
H A Dir2_nir.c520 instr->src[0] = ir2_src(ctx->f->inputs_count, 0, IR2_SRC_INPUT);
576 for (idx = 0; idx < ctx->f->inputs_count; idx++)
579 if (idx == ctx->f->inputs_count)
637 tmp->src[0] = ir2_src(ctx->f->inputs_count, 0, IR2_SRC_INPUT);
649 ir2_src(ctx->f->inputs_count, IR2_SWIZZLE_ZW, IR2_SRC_INPUT);
773 n = ctx->f->inputs_count++;
1139 ctx->f->inputs_count = 0;
1149 for (idx = 0; idx < ctx->f->inputs_count; idx++) {
1182 ctx->input[ctx->f->inputs_count].initialized = false;
H A Dfd2_program.c254 vs_export = MAX2(1, f->inputs_count) - 1;
267 COND(fp, A2XX_SQ_CONTEXT_MISC_PARAM_GEN_POS(f->inputs_count)) |
H A Dir2_assemble.c383 if (ctx->so->type == MESA_SHADER_VERTEX && ctx->f->inputs_count == 0) {
492 alloc.size = ctx->f->inputs_count - 1;
/xsrc/external/mit/MesaLib.old/dist/src/freedreno/ir3/
H A Dir3_shader.h400 unsigned inputs_count; member in struct:ir3_shader_variant
593 while (++i < so->inputs_count)
632 if (j >= fs->inputs_count)
659 for (j = 0; j < so->inputs_count; j++)
H A Dir3_shader.c70 for (i = 0; i < v->inputs_count; i++) {
375 for (i = 0; i < so->inputs_count; i++) {
395 for (i = 0; i < so->inputs_count; i++) {
H A Dir3_compiler_nir.c1111 unsigned r = regid(so->inputs_count, 0);
1112 unsigned n = so->inputs_count++;
2378 so->inputs_count = MAX2(so->inputs_count, n + 1);
2464 uint8_t used_components[so->inputs_count];
2480 compile_assert(ctx, i < so->inputs_count);
2494 for (unsigned i = 0; i < so->inputs_count; i++) {
2733 while ((i < so->inputs_count) && !so->inputs[i].sysval)
2979 for (i = 0; i < so->inputs_count; i++) {
/xsrc/external/mit/MesaLib/dist/src/freedreno/ir3/
H A Dir3_shader.h586 unsigned inputs_count; member in struct:ir3_shader_variant
857 while (++i < so->inputs_count)
939 if (j >= fs->inputs_count)
993 for (j = 0; j < so->inputs_count; j++)
H A Dir3_compiler_nir.c1458 unsigned n = so->inputs_count++;
3350 so->inputs_count = MAX2(so->inputs_count, n + 1);
3351 compile_assert(ctx, so->inputs_count < ARRAY_SIZE(so->inputs));
3413 uint8_t used_components[so->inputs_count];
3429 compile_assert(ctx, i < so->inputs_count);
3438 compile_assert(ctx, i < so->inputs_count);
3464 for (unsigned i = 0; i < so->inputs_count; i++) {
3699 ctx->so->inputs_count = ctx->s->num_inputs;
3700 compile_assert(ctx, ctx->so->inputs_count < ARRAY_SIZ
[all...]
H A Dir3_shader.c66 for (i = 0; i < v->inputs_count; i++) {
715 for (i = 0; i < so->inputs_count; i++) {
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/a3xx/
H A Dfd3_program.c385 for (j = -1; (j = ir3_next_varying(fp, j)) < (int)fp->inputs_count; ) {
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/a3xx/
H A Dfd3_program.c361 for (j = -1; (j = ir3_next_varying(fp, j)) < (int)fp->inputs_count;) {
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/a6xx/
H A Dfd6_program.c628 for (j = -1; (j = ir3_next_varying(s[FS].v, j)) < (int)s[FS].v->inputs_count; ) {
698 for (int j = -1; (j = ir3_next_varying(fs, j)) < (int)fs->inputs_count; ) {
H A Dfd6_emit.c635 4 * (10 * vp->inputs_count + 2), FD_RINGBUFFER_STREAMING);
637 for (i = 0, j = 0; i <= vp->inputs_count; i++) {
/xsrc/external/mit/MesaLib.old/dist/src/freedreno/vulkan/
H A Dtu_pipeline.c646 (i = ir3_next_varying(fs, i)) < (int) fs->inputs_count;) {
953 /* why do we go beyond inputs_count? */
954 assert(vs->inputs_count + 1 <= MAX_VERTEX_ATTRIBS);
955 for (uint32_t i = 0; i <= vs->inputs_count; i++) {
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/a6xx/
H A Dfd6_program.c1040 for (uint32_t i = 0; i < vs->inputs_count; i++)
1126 for (int j = -1; (j = ir3_next_varying(fs, j)) < (int)fs->inputs_count;) {
1213 for (unsigned i = 0; i < bs->inputs_count; i++) {
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/a4xx/
H A Dfd4_program.c483 for (j = -1; (j = ir3_next_varying(s[FS].v, j)) < (int)s[FS].v->inputs_count; ) {
H A Dfd4_emit.c374 for (i = 0; i < vp->inputs_count; i++) {
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/a5xx/
H A Dfd5_program.c640 for (j = -1; (j = ir3_next_varying(s[FS].v, j)) < (int)s[FS].v->inputs_count; ) {
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/a4xx/
H A Dfd4_emit.c386 for (i = 0; i < vp->inputs_count; i++) {
H A Dfd4_program.c479 (j = ir3_next_varying(s[FS].v, j)) < (int)s[FS].v->inputs_count;) {

Completed in 33 milliseconds

12