Home | History | Annotate | Download | only in i915

Lines Matching refs:uint

56    uint num_immediates;
57 uint immediates_map[I915_MAX_CONSTANT];
62 uint declarations[I915_PROGRAM_SIZE];
63 uint program[I915_PROGRAM_SIZE];
65 uint *csr; /**< Cursor, points into program. */
67 uint *decl; /**< Cursor, points into declarations. */
69 uint decl_s; /**< flags for which s regs need to be decl'd */
70 uint decl_t; /**< flags for which t regs need to be decl'd */
72 uint temp_flag; /**< Tracks temporary regs which are in use */
73 uint utemp_flag; /**< Tracks TYPE_U temporary regs which are in use */
75 uint register_phases[I915_MAX_TEMPORARY];
76 uint nr_tex_indirect;
77 uint nr_tex_insn;
78 uint nr_alu_insn;
79 uint nr_decl_insn;
82 uint NumNativeInstructions;
83 uint NumNativeAluInstructions;
84 uint NumNativeTexInstructions;
85 uint NumNativeTexIndirections;
140 swizzle(int reg, uint x, uint y, uint z, uint w)
196 extern uint i915_get_temp(struct i915_fp_compile *p);
197 extern uint i915_get_utemp(struct i915_fp_compile *p);
201 extern uint i915_emit_texld(struct i915_fp_compile *p,
202 uint dest,
203 uint destmask,
204 uint sampler,
205 uint coord,
206 uint op,
207 uint num_coord);
209 extern uint i915_emit_arith(struct i915_fp_compile *p,
210 uint op,
211 uint dest,
212 uint mask,
213 uint saturate,
214 uint src0, uint src1, uint src2);
216 extern uint i915_emit_decl(struct i915_fp_compile *p,
217 uint type, uint nr, uint d0_flags);
220 extern uint i915_emit_const1f(struct i915_fp_compile *p, float c0);
222 extern uint i915_emit_const2f(struct i915_fp_compile *p,
225 extern uint i915_emit_const4fv(struct i915_fp_compile *p,
228 extern uint i915_emit_const4f(struct i915_fp_compile *p,
327 extern uint i915_num_coords(uint tex);