| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/etnaviv/ |
| H A D | etnaviv_asm.h | 93 /* Compose two swizzles (computes swz1.swz2) */ 94 static inline uint32_t inst_swiz_compose(uint32_t swz1, uint32_t swz2) argument 96 return INST_SWIZ_X((swz1 >> (((swz2 >> 0)&3)*2))&3) | 97 INST_SWIZ_Y((swz1 >> (((swz2 >> 2)&3)*2))&3) | 98 INST_SWIZ_Z((swz1 >> (((swz2 >> 4)&3)*2))&3) | 99 INST_SWIZ_W((swz1 >> (((swz2 >> 6)&3)*2))&3);
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/etnaviv/ |
| H A D | etnaviv_asm.h | 107 /* Compose two swizzles (computes swz1.swz2) */ 108 static inline uint32_t inst_swiz_compose(uint32_t swz1, uint32_t swz2) argument 110 return INST_SWIZ_X((swz1 >> (((swz2 >> 0)&3)*2))&3) | 111 INST_SWIZ_Y((swz1 >> (((swz2 >> 2)&3)*2))&3) | 112 INST_SWIZ_Z((swz1 >> (((swz2 >> 4)&3)*2))&3) | 113 INST_SWIZ_W((swz1 >> (((swz2 >> 6)&3)*2))&3);
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r300/compiler/ |
| H A D | radeon_dataflow_swizzles.c | 104 unsigned new_swizzle, chan, swz0, swz1, swz2, swz3, found_swizzle, swz; local in function:try_rewrite_constant 154 swz2 = GET_SWZ(new_swizzle, 2); 169 if (swz2 == RC_SWIZZLE_UNUSED) { 196 if (swz2 == RC_SWIZZLE_Z) { 231 if (swz2 == RC_SWIZZLE_X) { 266 if (swz2 == RC_SWIZZLE_Y) { 302 if (swz2 == RC_SWIZZLE_Y) {
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r300/compiler/ |
| H A D | radeon_dataflow_swizzles.c | 104 unsigned new_swizzle, chan, swz0, swz1, swz2, swz3, found_swizzle, swz; local in function:try_rewrite_constant 154 swz2 = GET_SWZ(new_swizzle, 2); 169 if (swz2 == RC_SWIZZLE_UNUSED) { 196 if (swz2 == RC_SWIZZLE_Z) { 231 if (swz2 == RC_SWIZZLE_X) { 266 if (swz2 == RC_SWIZZLE_Y) { 302 if (swz2 == RC_SWIZZLE_Y) {
|
| /xsrc/external/mit/mesa-demos/dist/src/vp/ |
| H A D | Makefile.am | 77 swz2.txt \
|
| H A D | Makefile.in | 404 swz2.txt \
|
| /xsrc/external/mit/mesa-demos/dist/src/fp/ |
| H A D | Makefile.am | 88 swz2.txt \
|
| H A D | Makefile.in | 435 swz2.txt \
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/ |
| H A D | u_format.c | 849 const unsigned char swz2[4], 855 dst[i] = swz2[i] <= PIPE_SWIZZLE_W ? 856 swz1[swz2[i]] : swz2[i]; 848 util_format_compose_swizzles(const unsigned char swz1[4],const unsigned char swz2[4],unsigned char dst[4]) argument
|
| H A D | u_format.h | 1356 * swz2(swz1(V)) = dst(V) 1359 const unsigned char swz2[4],
|
| /xsrc/external/mit/MesaLib/dist/src/util/format/ |
| H A D | u_format.c | 899 const unsigned char swz2[4], 905 dst[i] = swz2[i] <= PIPE_SWIZZLE_W ? 906 swz1[swz2[i]] : swz2[i]; 898 util_format_compose_swizzles(const unsigned char swz1[4],const unsigned char swz2[4],unsigned char dst[4]) argument
|
| H A D | u_format.h | 1653 * swz2(swz1(V)) = dst(V) 1656 const unsigned char swz2[4],
|
| /xsrc/external/mit/MesaLib/src/panfrost/bifrost/ |
| H A D | bi_packer.c | 769 unsigned swz2 = swz2_table[I->src[2].swizzle]; local in function:bi_pack_fma_fma_v2f16 770 assert(swz2 < 4); 776 return 0x400000 | (src0 << 0) | (src1 << 3) | (src2 << 6) | (swz0 << 9) | (swz1 << 11) | (round << 13) | (clamp << 15) | (neg2 << 18) | (swz2 << 19) | (derived_17 << 17);
|
| H A D | bifrost_gen_disasm.c | 1190 const char *swz2 = swz2_table[_BITS(bits, 19, 2)]; local in function:bi_disasm_fma_fma_v2f16 1210 fputs(swz2, fp);
|