Lines Matching defs:value
92 mir_use_count(compiler_context *ctx, unsigned value)
97 if (mir_has_arg(ins, value))
101 if (ctx->blend_input == value)
104 if (ctx->blend_src1 == value)
110 /* Checks if a value is used only once (or totally dead), which is an important
114 mir_single_use(compiler_context *ctx, unsigned value)
117 if (value == SSA_FIXED_REGISTER(REGISTER_CONSTANT))
120 return mir_use_count(ctx, value) <= 1;
184 unsigned value = 0;
193 value |= (a << d);
196 return value;