HomeSort by relevance Sort by last modified time
    Searched refs:UREG (Results 1 - 7 of 7) sorted by null

  /external/mesa3d/src/gallium/drivers/i915/
i915_fpc_emit.c 68 return UREG(REG_TYPE_U, (bit - 1));
82 uint reg = UREG(type, nr);
122 dest = UREG(GET_UREG_TYPE(dest), GET_UREG_NR(dest));
194 const uint k = UREG(GET_UREG_TYPE(coord), GET_UREG_NR(coord));
223 tempReg = UREG(REG_TYPE_R, temp); /* make i915 register */
245 assert(dest == UREG(GET_UREG_TYPE(dest), GET_UREG_NR(dest)));
290 return swizzle(UREG(REG_TYPE_R, 0), ZERO, ZERO, ZERO, ZERO);
292 return swizzle(UREG(REG_TYPE_R, 0), ONE, ONE, ONE, ONE);
304 return swizzle(UREG(REG_TYPE_CONST, reg), idx, ZERO, ZERO, ONE);
342 return swizzle(UREG(REG_TYPE_CONST, reg), idx, idx + 1, ZERO, ONE)
    [all...]
i915_state_emit.c 448 int cst0_reg = swizzle(UREG(REG_TYPE_CONST, cst_idx), X, X, X, X);
449 int cst1_reg = swizzle(UREG(REG_TYPE_CONST, cst_idx), Y, Y, Y, Y);
450 int cst2_reg = swizzle(UREG(REG_TYPE_CONST, cst_idx), Z, Z, Z, Z);
451 int t1_reg = UREG(REG_TYPE_R, 1);
452 int t1x_reg = swizzle(UREG(REG_TYPE_R, 1), X, X, X, X);
453 int t1y_reg = swizzle(UREG(REG_TYPE_R, 1), Y, Y, Y, Y);
454 int t1z_reg = swizzle(UREG(REG_TYPE_R, 1), Z, Z, Z, Z);
i915_fpc_translate.c 111 * component-wise negation of ureg
116 /* Another neat thing about the UREG representation */
176 * Construct a ureg for the given source register. Will emit
193 src = UREG(REG_TYPE_R, index);
256 src = UREG(REG_TYPE_CONST, index);
292 * Construct a ureg for a destination register.
304 return UREG(REG_TYPE_OD, 0);
306 return UREG(REG_TYPE_OC, 0);
313 return UREG(REG_TYPE_R, dest->Register.Index);
    [all...]
i915_fpc.h 107 #define UREG_BAD 0xffffffff /* not a valid ureg */
116 /* Construct a ureg:
118 #define UREG( type, nr ) (((type)<< UREG_TYPE_SHIFT) | \
137 /* One neat thing about the UREG representation:
170 /* Macros for translating UREG's into the various register fields used
  /external/mesa3d/src/mesa/drivers/dri/i915/
i915_program.c 58 /* Macros for translating UREG's into the various register fields used
85 return UREG(REG_TYPE_R, (bit - 1));
99 return UREG(REG_TYPE_U, (bit - 1));
113 GLuint reg = UREG(type, nr);
150 dest = UREG(GET_UREG_TYPE(dest), GET_UREG_NR(dest));
214 return UREG(REG_TYPE_R, bit - 1);
225 if (coord != UREG(GET_UREG_TYPE(coord), GET_UREG_NR(coord))) {
248 assert(dest == UREG(GET_UREG_TYPE(dest), GET_UREG_NR(dest)));
306 return swizzle(UREG(REG_TYPE_R, 0), ZERO, ZERO, ZERO, ZERO);
308 return swizzle(UREG(REG_TYPE_R, 0), ONE, ONE, ONE, ONE)
    [all...]
i915_program.h 55 #define UREG_BAD 0xffffffff /* not a valid ureg */
64 /* Construct a ureg:
66 #define UREG( type, nr ) (((type)<< UREG_TYPE_SHIFT) | \
85 /* One neat thing about the UREG representation:
97 /* Another neat thing about the UREG representation:
i915_fragprog.c 76 * Retrieve a ureg for the given source register. Will emit
96 src = UREG(REG_TYPE_R, source->Index);
149 src = UREG(REG_TYPE_OC, 0);
152 src = UREG(REG_TYPE_OD, 0);
212 return UREG(REG_TYPE_OC, 0);
215 return UREG(REG_TYPE_OD, 0);
222 return UREG(REG_TYPE_R, inst->DstReg.Index);
389 UREG(REG_TYPE_OC, 0),
    [all...]

Completed in 2065 milliseconds