/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_sf.h | 65 struct brw_reg pv; 66 struct brw_reg det; 67 struct brw_reg dx0; 68 struct brw_reg dx2; 69 struct brw_reg dy0; 70 struct brw_reg dy2; 74 struct brw_reg z[3]; 75 struct brw_reg inv_w[3]; 79 struct brw_reg vert[3]; 83 struct brw_reg inv_det [all...] |
brw_clip.h | 78 struct brw_reg R0; 79 struct brw_reg vertex[MAX_VERTS]; 81 struct brw_reg t; 82 struct brw_reg t0, t1; 83 struct brw_reg dp0, dp1; 85 struct brw_reg dpPrev; 86 struct brw_reg dp; 87 struct brw_reg loopcount; 88 struct brw_reg nr_verts; 89 struct brw_reg planemask [all...] |
brw_wm.h | 117 struct brw_reg hw_reg; /* emitted to this reg, may not always be there */ 125 struct brw_reg hw_reg; /* nr filled in in pass2, everything else, pass0 */ 264 struct brw_reg reg; 269 struct brw_reg stack; 270 struct brw_reg emit_mask_reg; 280 struct brw_reg reg; 321 struct brw_reg, 322 struct brw_reg), 323 const struct brw_reg *dst, 325 const struct brw_reg *arg0) [all...] |
brw_eu.h | 73 struct brw_reg struct 175 * Construct a brw_reg. 186 static INLINE struct brw_reg brw_reg( GLuint file, function 196 struct brw_reg reg; 230 static INLINE struct brw_reg brw_vec16_reg( GLuint file, 234 return brw_reg(file, 246 static INLINE struct brw_reg brw_vec8_reg( GLuint file, 250 return brw_reg(file, 262 static INLINE struct brw_reg brw_vec4_reg( GLuint file [all...] |
brw_gs.h | 81 struct brw_reg R0; 88 struct brw_reg SVBI; 90 struct brw_reg vertex[MAX_GS_VERTS]; 91 struct brw_reg header; 92 struct brw_reg temp; 98 struct brw_reg destination_indices;
|
brw_vs.h | 101 struct brw_reg r0; 102 struct brw_reg r1; 103 struct brw_reg regs[PROGRAM_ADDRESS+1][128]; 104 struct brw_reg tmp; 108 struct brw_reg reg; 111 struct brw_reg userplane[MAX_CLIP_PLANES]; 116 struct brw_reg reg;
|
brw_eu_util.c | 39 struct brw_reg dst, 40 struct brw_reg src) 54 struct brw_reg dst, 55 struct brw_reg src, 73 struct brw_reg dst, 74 struct brw_reg src, 107 struct brw_reg dst,
|
brw_vec4_emit.cpp | 65 struct brw_reg reg = brw_vec8_grf(grf, 0); 78 struct brw_reg reg = brw_vec8_grf(grf, 0); 156 struct brw_reg 159 struct brw_reg brw_reg; local 163 brw_reg = brw_vec8_grf(dst.reg + dst.reg_offset, 0); 164 brw_reg = retype(brw_reg, dst.type); 165 brw_reg.dw1.bits.writemask = dst.writemask; 169 brw_reg = brw_message_reg(dst.reg + dst.reg_offset) 193 struct brw_reg brw_reg; local [all...] |
brw_wm_emit.c | 38 can_do_pln(struct intel_context *intel, const struct brw_reg *deltas) 116 const struct brw_reg *dst, 120 struct brw_reg r1 = brw_vec1_grf(1, 0); 121 struct brw_reg r1_uw = retype(r1, BRW_REGISTER_TYPE_UW); 122 struct brw_reg dst0_uw, dst1_uw; 163 const struct brw_reg *dst, 165 const struct brw_reg *arg0) 168 struct brw_reg r1 = brw_vec1_grf(1, 0); 207 const struct brw_reg *dst, 209 const struct brw_reg *arg0 [all...] |
brw_vec4.h | 52 HW_REG, /* a struct brw_reg */ 69 struct brw_reg fixed_hw_reg; 137 dst_reg(struct brw_reg reg); 167 struct brw_reg get_dst(void); 168 struct brw_reg get_src(int i); 414 void emit_psiz_and_flags(struct brw_reg reg); 415 void emit_clip_distances(struct brw_reg reg, int offset); 444 struct brw_reg dst, 445 struct brw_reg *src); 448 struct brw_reg dst [all...] |
brw_fs_emit.cpp | 44 struct brw_reg implied_header; 122 fs_visitor::generate_pixel_xy(struct brw_reg dst, bool is_x) 124 struct brw_reg g1_uw = retype(brw_vec1_grf(1, 0), BRW_REGISTER_TYPE_UW); 125 struct brw_reg src; 126 struct brw_reg deltas; 151 struct brw_reg dst, struct brw_reg *src) 153 struct brw_reg delta_x = src[0]; 154 struct brw_reg delta_y = src[1]; 155 struct brw_reg interp = src[2] 673 struct brw_reg brw_reg; local [all...] |
brw_fs.h | 63 FIXED_HW_REG, /* a struct brw_reg */ 87 fs_reg(struct brw_reg fixed_hw_reg); 112 struct brw_reg fixed_hw_reg; 268 void generate_pixel_xy(struct brw_reg dst, bool is_x); 269 void generate_linterp(fs_inst *inst, struct brw_reg dst, 270 struct brw_reg *src); 271 void generate_tex(fs_inst *inst, struct brw_reg dst, struct brw_reg src); 273 struct brw_reg dst, 274 struct brw_reg src) [all...] |
brw_vs_emit.c | 80 static struct brw_reg get_tmp( struct brw_vs_compile *c ) 82 struct brw_reg tmp = brw_vec8_grf(c->last_tmp, 0); 90 static void release_tmp( struct brw_vs_compile *c, struct brw_reg tmp ) 354 c->regs[PROGRAM_ADDRESS][i] = brw_reg(BRW_GENERAL_REGISTER_FILE, 430 struct brw_reg dst, 431 struct brw_reg arg0, 433 struct brw_reg, 434 struct brw_reg )) 438 struct brw_reg tmp = brw_writemask(get_tmp(c), dst.dw1.bits.writemask); 453 struct brw_reg dst [all...] |
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_sf.h | 65 struct brw_reg pv; 66 struct brw_reg det; 67 struct brw_reg dx0; 68 struct brw_reg dx2; 69 struct brw_reg dy0; 70 struct brw_reg dy2; 74 struct brw_reg z[3]; 75 struct brw_reg inv_w[3]; 79 struct brw_reg vert[3]; 83 struct brw_reg inv_det [all...] |
brw_clip.h | 78 struct brw_reg R0; 79 struct brw_reg vertex[MAX_VERTS]; 81 struct brw_reg t; 82 struct brw_reg t0, t1; 83 struct brw_reg dp0, dp1; 85 struct brw_reg dpPrev; 86 struct brw_reg dp; 87 struct brw_reg loopcount; 88 struct brw_reg nr_verts; 89 struct brw_reg planemask [all...] |
brw_wm.h | 117 struct brw_reg hw_reg; /* emitted to this reg, may not always be there */ 125 struct brw_reg hw_reg; /* nr filled in in pass2, everything else, pass0 */ 264 struct brw_reg reg; 269 struct brw_reg stack; 270 struct brw_reg emit_mask_reg; 280 struct brw_reg reg; 321 struct brw_reg, 322 struct brw_reg), 323 const struct brw_reg *dst, 325 const struct brw_reg *arg0) [all...] |
brw_eu.h | 73 struct brw_reg struct 175 * Construct a brw_reg. 186 static INLINE struct brw_reg brw_reg( GLuint file, function 196 struct brw_reg reg; 230 static INLINE struct brw_reg brw_vec16_reg( GLuint file, 234 return brw_reg(file, 246 static INLINE struct brw_reg brw_vec8_reg( GLuint file, 250 return brw_reg(file, 262 static INLINE struct brw_reg brw_vec4_reg( GLuint file [all...] |
brw_gs.h | 81 struct brw_reg R0; 88 struct brw_reg SVBI; 90 struct brw_reg vertex[MAX_GS_VERTS]; 91 struct brw_reg header; 92 struct brw_reg temp; 98 struct brw_reg destination_indices;
|
brw_vs.h | 101 struct brw_reg r0; 102 struct brw_reg r1; 103 struct brw_reg regs[PROGRAM_ADDRESS+1][128]; 104 struct brw_reg tmp; 108 struct brw_reg reg; 111 struct brw_reg userplane[MAX_CLIP_PLANES]; 116 struct brw_reg reg;
|
brw_eu_util.c | 39 struct brw_reg dst, 40 struct brw_reg src) 54 struct brw_reg dst, 55 struct brw_reg src, 73 struct brw_reg dst, 74 struct brw_reg src, 107 struct brw_reg dst,
|
brw_vec4_emit.cpp | 65 struct brw_reg reg = brw_vec8_grf(grf, 0); 78 struct brw_reg reg = brw_vec8_grf(grf, 0); 156 struct brw_reg 159 struct brw_reg brw_reg; local 163 brw_reg = brw_vec8_grf(dst.reg + dst.reg_offset, 0); 164 brw_reg = retype(brw_reg, dst.type); 165 brw_reg.dw1.bits.writemask = dst.writemask; 169 brw_reg = brw_message_reg(dst.reg + dst.reg_offset) 193 struct brw_reg brw_reg; local [all...] |
brw_wm_emit.c | 38 can_do_pln(struct intel_context *intel, const struct brw_reg *deltas) 116 const struct brw_reg *dst, 120 struct brw_reg r1 = brw_vec1_grf(1, 0); 121 struct brw_reg r1_uw = retype(r1, BRW_REGISTER_TYPE_UW); 122 struct brw_reg dst0_uw, dst1_uw; 163 const struct brw_reg *dst, 165 const struct brw_reg *arg0) 168 struct brw_reg r1 = brw_vec1_grf(1, 0); 207 const struct brw_reg *dst, 209 const struct brw_reg *arg0 [all...] |
brw_vec4.h | 52 HW_REG, /* a struct brw_reg */ 69 struct brw_reg fixed_hw_reg; 137 dst_reg(struct brw_reg reg); 167 struct brw_reg get_dst(void); 168 struct brw_reg get_src(int i); 414 void emit_psiz_and_flags(struct brw_reg reg); 415 void emit_clip_distances(struct brw_reg reg, int offset); 444 struct brw_reg dst, 445 struct brw_reg *src); 448 struct brw_reg dst [all...] |
brw_fs_emit.cpp | 44 struct brw_reg implied_header; 122 fs_visitor::generate_pixel_xy(struct brw_reg dst, bool is_x) 124 struct brw_reg g1_uw = retype(brw_vec1_grf(1, 0), BRW_REGISTER_TYPE_UW); 125 struct brw_reg src; 126 struct brw_reg deltas; 151 struct brw_reg dst, struct brw_reg *src) 153 struct brw_reg delta_x = src[0]; 154 struct brw_reg delta_y = src[1]; 155 struct brw_reg interp = src[2] 673 struct brw_reg brw_reg; local [all...] |
brw_fs.h | 63 FIXED_HW_REG, /* a struct brw_reg */ 87 fs_reg(struct brw_reg fixed_hw_reg); 112 struct brw_reg fixed_hw_reg; 268 void generate_pixel_xy(struct brw_reg dst, bool is_x); 269 void generate_linterp(fs_inst *inst, struct brw_reg dst, 270 struct brw_reg *src); 271 void generate_tex(fs_inst *inst, struct brw_reg dst, struct brw_reg src); 273 struct brw_reg dst, 274 struct brw_reg src) [all...] |