/external/mesa3d/src/mesa/swrast_setup/ |
ss_context.c | 93 #define SWZ ((SWvertex *)0) 94 #define SWOffset(MEMBER) (((char *)&(SWZ->MEMBER)) - ((char *)SWZ))
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/ |
nv50_ir_from_sm4.cpp | [all...] |
/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
nv50_ir_from_sm4.cpp | [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/ |
r500_fragprog.c | 201 unsigned int swz = GET_SWZ(reg.Swizzle, i); local 202 if (swz == RC_SWIZZLE_UNUSED) { 206 if (swz >= 4) 227 unsigned int swz = GET_SWZ(reg.Swizzle, i); local 228 if (swz != RC_SWIZZLE_UNUSED && swz != RC_SWIZZLE_ZERO) 251 unsigned int swz = GET_SWZ(src.Swizzle, i); local 252 if (swz == RC_SWIZZLE_UNUSED || !GET_BIT(usemask, i))
|
radeon_emulate_loops.c | 52 rc_swizzle Swz; 123 (1 << GET_SWZ(count_inst->Swz,0) != mask)){ 142 inst->U.I.SrcReg[0].Swizzle == count_inst->Swz){ 146 inst->U.I.SrcReg[1].Swizzle == count_inst->Swz){ 231 count_inst.Swz = counter->Swizzle;
|
r500_fragprog_emit.c | 141 static unsigned int fix_hw_swizzle(unsigned int swz) 143 switch (swz) { 146 swz = 4; 149 swz = 5; 152 swz = 6; 156 return swz;
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_wm_fp.c | 577 struct prog_instruction *swz; local 580 /* dst.xz = swz src0.1zzz 582 swz = emit_op(c, 590 swz->SrcReg[0].Negate &= ~NEGATE_X; 637 struct prog_instruction *swz; local 639 /* dst.xw = swz src0.1111 641 swz = emit_op(c, 649 swz->SrcReg[0].Negate = NEGATE_NONE;
|
brw_vs_constval.c | 77 GLubyte swz ) 79 switch (swz) {
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
r500_fragprog.c | 201 unsigned int swz = GET_SWZ(reg.Swizzle, i); local 202 if (swz == RC_SWIZZLE_UNUSED) { 206 if (swz >= 4) 227 unsigned int swz = GET_SWZ(reg.Swizzle, i); local 228 if (swz != RC_SWIZZLE_UNUSED && swz != RC_SWIZZLE_ZERO) 251 unsigned int swz = GET_SWZ(src.Swizzle, i); local 252 if (swz == RC_SWIZZLE_UNUSED || !GET_BIT(usemask, i))
|
radeon_emulate_loops.c | 52 rc_swizzle Swz; 123 (1 << GET_SWZ(count_inst->Swz,0) != mask)){ 142 inst->U.I.SrcReg[0].Swizzle == count_inst->Swz){ 146 inst->U.I.SrcReg[1].Swizzle == count_inst->Swz){ 231 count_inst.Swz = counter->Swizzle;
|
r500_fragprog_emit.c | 141 static unsigned int fix_hw_swizzle(unsigned int swz) 143 switch (swz) { 146 swz = 4; 149 swz = 5; 152 swz = 6; 156 return swz;
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_wm_fp.c | 577 struct prog_instruction *swz; local 580 /* dst.xz = swz src0.1zzz 582 swz = emit_op(c, 590 swz->SrcReg[0].Negate &= ~NEGATE_X; 637 struct prog_instruction *swz; local 639 /* dst.xw = swz src0.1111 641 swz = emit_op(c, 649 swz->SrcReg[0].Negate = NEGATE_NONE;
|
brw_vs_constval.c | 77 GLubyte swz ) 79 switch (swz) {
|
/external/chromium_org/third_party/mesa/src/src/mesa/program/ |
nvfragparse.c | 691 GLuint swz[4]; local 696 if (!Parse_SwizzleSuffix(token, swz)) 699 dstReg->CondSwizzle = MAKE_SWIZZLE4(swz[0], swz[1], swz[2], swz[3]); 1070 GLuint swz[4]; local 1075 if (!Parse_SwizzleSuffix(token, swz)) 1078 srcReg->Swizzle = MAKE_SWIZZLE4(swz[0], swz[1], swz[2], swz[3]) [all...] |
program_parse.y | 145 unsigned swz; 164 %token <temp_inst> ARL KIL SWZ TXD_OP 540 SWZ_instruction: SWZ maskedDstReg ',' srcReg ',' extendedSwizzle 693 $$.swizzle = MAKE_SWIZZLE4($1.swz, $3.swz, $5.swz, $7.swz); 713 $$.swz = ($1 == 0) ? SWIZZLE_ZERO : SWIZZLE_ONE; 735 $$.swz = SWIZZLE_X; 739 $$.swz = SWIZZLE_Y [all...] |
prog_optimize.c | 159 is_swizzle_regular(GLuint swz) 161 return GET_SWZ(swz,0) <= SWIZZLE_W && 162 GET_SWZ(swz,1) <= SWIZZLE_W && 163 GET_SWZ(swz,2) <= SWIZZLE_W && 164 GET_SWZ(swz,3) <= SWIZZLE_W; 287 const GLuint swz = GET_SWZ(inst->SrcReg[j].Swizzle, comp); local 288 ASSERT(swz < 4); 289 if ((read_mask & (1 << swz)) == 0) 291 if (swz <= SWIZZLE_W) 292 tempRead[index][swz] = GL_TRUE [all...] |
/external/mesa3d/src/mesa/program/ |
nvfragparse.c | 691 GLuint swz[4]; local 696 if (!Parse_SwizzleSuffix(token, swz)) 699 dstReg->CondSwizzle = MAKE_SWIZZLE4(swz[0], swz[1], swz[2], swz[3]); 1070 GLuint swz[4]; local 1075 if (!Parse_SwizzleSuffix(token, swz)) 1078 srcReg->Swizzle = MAKE_SWIZZLE4(swz[0], swz[1], swz[2], swz[3]) [all...] |
program_parse.y | 145 unsigned swz; 164 %token <temp_inst> ARL KIL SWZ TXD_OP 540 SWZ_instruction: SWZ maskedDstReg ',' srcReg ',' extendedSwizzle 693 $$.swizzle = MAKE_SWIZZLE4($1.swz, $3.swz, $5.swz, $7.swz); 713 $$.swz = ($1 == 0) ? SWIZZLE_ZERO : SWIZZLE_ONE; 735 $$.swz = SWIZZLE_X; 739 $$.swz = SWIZZLE_Y [all...] |
prog_optimize.c | 159 is_swizzle_regular(GLuint swz) 161 return GET_SWZ(swz,0) <= SWIZZLE_W && 162 GET_SWZ(swz,1) <= SWIZZLE_W && 163 GET_SWZ(swz,2) <= SWIZZLE_W && 164 GET_SWZ(swz,3) <= SWIZZLE_W; 287 const GLuint swz = GET_SWZ(inst->SrcReg[j].Swizzle, comp); local 288 ASSERT(swz < 4); 289 if ((read_mask & (1 << swz)) == 0) 291 if (swz <= SWIZZLE_W) 292 tempRead[index][swz] = GL_TRUE [all...] |
/external/chromium_org/third_party/mesa/src/docs/ |
relnotes-6.4.html | 65 <li>fixed broken fragment program KIL and SWZ instructions
|
/external/llvm/lib/Target/R600/ |
R600ISelLowering.h | 53 SDValue OptimizeSwizzle(SDValue BuildVector, SDValue Swz[], SelectionDAG &DAG) const;
|
/external/mesa3d/docs/ |
relnotes-6.4.html | 65 <li>fixed broken fragment program KIL and SWZ instructions
|
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/ |
st_mesa_to_tgsi.c | 383 const unsigned *swz ) 385 return ureg_swizzle( src, swz[0], swz[1], swz[2], swz[3] ); 390 * Translate a SWZ instruction into a MOV, MUL or MAD instruction. EG: 392 * SWZ dst, src.x-y10 [all...] |
/external/mesa3d/src/mesa/state_tracker/ |
st_mesa_to_tgsi.c | 383 const unsigned *swz ) 385 return ureg_swizzle( src, swz[0], swz[1], swz[2], swz[3] ); 390 * Translate a SWZ instruction into a MOV, MUL or MAD instruction. EG: 392 * SWZ dst, src.x-y10 [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
texparam.c | 210 set_swizzle_component(GLuint *swizzle, GLuint comp, GLuint swz) 213 ASSERT(swz <= SWIZZLE_NIL); 216 GLuint s = (*swizzle & ~mask) | (swz << (3 * comp)); 450 const GLint swz = comp_to_swizzle(params[0]); local 451 if (swz < 0) { 460 set_swizzle_component(&texObj->_Swizzle, comp, swz); 471 const GLint swz = comp_to_swizzle(params[comp]); local 472 if (swz >= 0) { 474 set_swizzle_component(&texObj->_Swizzle, comp, swz); [all...] |