Searched refs:SRC (Results 1 - 25 of 35) sorted by path

12

/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/softpipe/
H A Dsp_quad_blend.c73 #define VEC4_COPY(DST, SRC) \
75 DST[0] = SRC[0]; \
76 DST[1] = SRC[1]; \
77 DST[2] = SRC[2]; \
78 DST[3] = SRC[3]; \
81 #define VEC4_SCALAR(DST, SRC) \
83 DST[0] = SRC; \
84 DST[1] = SRC; \
85 DST[2] = SRC; \
86 DST[3] = SRC; \
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
H A Dmacros.h260 #define COPY_4V( DST, SRC ) \
262 (DST)[0] = (SRC)[0]; \
263 (DST)[1] = (SRC)[1]; \
264 (DST)[2] = (SRC)[2]; \
265 (DST)[3] = (SRC)[3]; \
275 /* The GLuint cast might fail if DST or SRC are not dword-aligned (RISC) */
281 #define COPY_SZ_4V(DST, SZ, SRC) \
284 case 4: (DST)[3] = (SRC)[3]; \
285 case 3: (DST)[2] = (SRC)[2]; \
286 case 2: (DST)[1] = (SRC)[
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/mesa/math/
H A Dm_translate.c97 #define PTR_ELT(ptr, elt) (((SRC *)ptr)[elt])
114 #define SRC GLbyte macro
159 #undef SRC
172 #define SRC GLubyte macro
207 #undef SRC
219 #define SRC GLshort macro
261 #undef SRC
273 #define SRC GLushort macro
314 #undef SRC
326 #define SRC GLin macro
380 #define SRC macro
433 #define SRC macro
481 #define SRC macro
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/tests/
H A Dtest_glsl_to_tgsi_lifetime.cpp1240 #define SRC(X, S) vector<pair<int, const char *>>(1, make_pair(X, S)) macro
1251 { TGSI_OPCODE_MOV, DST(1, WRITEMASK_Y), SRC(in1, "x"), {}, SWZ()},
1252 { TGSI_OPCODE_IF, {}, SRC(in0, "xxxx"), {}, SWZ()},
1253 { TGSI_OPCODE_MOV, DST(1, WRITEMASK_X), SRC(in1, "y"), {}, SWZ()},
1255 { TGSI_OPCODE_MOV, DST(2, WRITEMASK_XY), SRC(1, "xy"), {}, SWZ()},
1257 { TGSI_OPCODE_MOV, DST(out0, WRITEMASK_XYZW), SRC(2, "xyxy"), {}, SWZ()},
1267 { TGSI_OPCODE_MOV, DST(1, WRITEMASK_X), SRC(in1, "x"), {}, SWZ()},
1268 { TGSI_OPCODE_IF, {}, SRC(in0, "xxxx"), {}, SWZ()},
1269 { TGSI_OPCODE_MOV, DST(1, WRITEMASK_Y), SRC(in1, "y"), {}, SWZ()},
1271 { TGSI_OPCODE_MOV, DST(2, WRITEMASK_XY), SRC(
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/mesa/swrast/
H A Ds_chan.h80 #define COPY_CHAN4(DST, SRC) COPY_4UBV(DST, SRC)
92 #define COPY_CHAN4(DST, SRC) COPY_4V(DST, SRC)
104 #define COPY_CHAN4(DST, SRC) COPY_4V(DST, SRC)
/xsrc/external/mit/MesaLib.old/dist/src/mesa/x86/
H A Dsse_xform4.S35 #define SRC(i) REGOFF(i * 4, ESI) macro
78 MOVSS( SRC(0), XMM0 ) /* ox */
82 MOVSS( SRC(1), XMM1 ) /* oy */
86 MOVSS( SRC(2), XMM2 ) /* oz */
90 MOVSS( SRC(3), XMM3 ) /* ow */
150 MOVSS( SRC(0), XMM4 ) /* ox */
154 MOVSS( SRC(1), XMM5 ) /* oy */
158 MOVSS( SRC(2), XMM6 ) /* oz */
162 MOVSS( SRC(3), XMM7 ) /* ow */
171 MOVSS( SRC(
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/util/
H A Du_math.h732 #define COPY_4V( DST, SRC ) \
734 (DST)[0] = (SRC)[0]; \
735 (DST)[1] = (SRC)[1]; \
736 (DST)[2] = (SRC)[2]; \
737 (DST)[3] = (SRC)[3]; \
743 #define COPY_4FV( DST, SRC ) COPY_4V(DST, SRC)
/xsrc/external/mit/MesaLib.old/src/mesa/main/
H A Dformat_pack.c50 #define UNPACK(SRC, OFFSET, BITS) (((SRC) >> (OFFSET)) & MAX_UINT(BITS))
51 #define PACK(SRC, OFFSET, BITS) (((SRC) & MAX_UINT(BITS)) << (OFFSET))
H A Dformat_unpack.c49 #define UNPACK(SRC, OFFSET, BITS) (((SRC) >> (OFFSET)) & MAX_UINT(BITS))
/xsrc/external/mit/MesaLib/dist/docs/drivers/freedreno/
H A Disaspec.rst173 {ABSNEG}{SRC_R}{HALF}{SRC}
176 <field name="SRC" low="0" high="7" type="#reg-gpr"/>
/xsrc/external/mit/MesaLib/dist/src/freedreno/decode/scripts/
H A Dparse-submits.lua39 dbg("SRC: %s %ux%u 0x%x\n", fmt, w, h, base)
160 printf(" SRC[0x%x:0x%x]:\t%ux%u\t\t%s (%s)\n", source.base, source.flag, source.w, source.h, source.format, source.samples)
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/softpipe/
H A Dsp_quad_blend.c73 #define VEC4_COPY(DST, SRC) \
75 DST[0] = SRC[0]; \
76 DST[1] = SRC[1]; \
77 DST[2] = SRC[2]; \
78 DST[3] = SRC[3]; \
81 #define VEC4_SCALAR(DST, SRC) \
83 DST[0] = SRC; \
84 DST[1] = SRC; \
85 DST[2] = SRC; \
86 DST[3] = SRC; \
[all...]
/xsrc/external/mit/MesaLib/dist/src/mesa/main/
H A Dmacros.h286 #define COPY_4V( DST, SRC ) \
288 (DST)[0] = (SRC)[0]; \
289 (DST)[1] = (SRC)[1]; \
290 (DST)[2] = (SRC)[2]; \
291 (DST)[3] = (SRC)[3]; \
301 /* The GLuint cast might fail if DST or SRC are not dword-aligned (RISC) */
307 #define COPY_SZ_4V(DST, SZ, SRC) \
310 case 4: (DST)[3] = (SRC)[3]; \
312 case 3: (DST)[2] = (SRC)[2]; \
314 case 2: (DST)[1] = (SRC)[
[all...]
/xsrc/external/mit/MesaLib/dist/src/mesa/math/
H A Dm_translate.c97 #define PTR_ELT(ptr, elt) (((SRC *)ptr)[elt])
114 #define SRC GLbyte macro
159 #undef SRC
172 #define SRC GLubyte macro
207 #undef SRC
219 #define SRC GLshort macro
261 #undef SRC
273 #define SRC GLushort macro
314 #undef SRC
326 #define SRC GLin macro
380 #define SRC macro
433 #define SRC macro
481 #define SRC macro
[all...]
/xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/tests/
H A Dtest_glsl_to_tgsi_lifetime.cpp1240 #define SRC(X, S) vector<pair<int, const char *>>(1, make_pair(X, S)) macro
1251 { TGSI_OPCODE_MOV, DST(1, WRITEMASK_Y), SRC(in1, "x"), {}, SWZ()},
1252 { TGSI_OPCODE_IF, {}, SRC(in0, "xxxx"), {}, SWZ()},
1253 { TGSI_OPCODE_MOV, DST(1, WRITEMASK_X), SRC(in1, "y"), {}, SWZ()},
1255 { TGSI_OPCODE_MOV, DST(2, WRITEMASK_XY), SRC(1, "xy"), {}, SWZ()},
1257 { TGSI_OPCODE_MOV, DST(out0, WRITEMASK_XYZW), SRC(2, "xyxy"), {}, SWZ()},
1267 { TGSI_OPCODE_MOV, DST(1, WRITEMASK_X), SRC(in1, "x"), {}, SWZ()},
1268 { TGSI_OPCODE_IF, {}, SRC(in0, "xxxx"), {}, SWZ()},
1269 { TGSI_OPCODE_MOV, DST(1, WRITEMASK_Y), SRC(in1, "y"), {}, SWZ()},
1271 { TGSI_OPCODE_MOV, DST(2, WRITEMASK_XY), SRC(
[all...]
/xsrc/external/mit/MesaLib/dist/src/mesa/swrast/
H A Ds_chan.h80 #define COPY_CHAN4(DST, SRC) COPY_4UBV(DST, SRC)
92 #define COPY_CHAN4(DST, SRC) COPY_4V(DST, SRC)
104 #define COPY_CHAN4(DST, SRC) COPY_4V(DST, SRC)
/xsrc/external/mit/MesaLib/dist/src/mesa/x86/
H A Dsse_xform4.S36 #define SRC(i) REGOFF(i * 4, ESI) macro
79 MOVSS( SRC(0), XMM0 ) /* ox */
83 MOVSS( SRC(1), XMM1 ) /* oy */
87 MOVSS( SRC(2), XMM2 ) /* oz */
91 MOVSS( SRC(3), XMM3 ) /* ow */
151 MOVSS( SRC(0), XMM4 ) /* ox */
155 MOVSS( SRC(1), XMM5 ) /* oy */
159 MOVSS( SRC(2), XMM6 ) /* oz */
163 MOVSS( SRC(3), XMM7 ) /* ow */
172 MOVSS( SRC(
[all...]
/xsrc/external/mit/MesaLib/dist/src/util/
H A Du_math.h716 #define COPY_4V( DST, SRC ) \
718 (DST)[0] = (SRC)[0]; \
719 (DST)[1] = (SRC)[1]; \
720 (DST)[2] = (SRC)[2]; \
721 (DST)[3] = (SRC)[3]; \
727 #define COPY_4FV( DST, SRC ) COPY_4V(DST, SRC)
/xsrc/external/mit/pixman/dist/pixman/
H A Dpixman-arm-neon-asm.h439 pld [SRC, #(PREFETCH_DISTANCE_SIMPLE * src_bpp / 8)]
473 pixld_src (\lowbit * 8 / dst_w_bpp), src_bpp, src_basereg, SRC
535 pixld_src \chunk_size, src_bpp, src_basereg, SRC
587 add SRC, SRC, SRC_STRIDE, lsl #src_bpp_shift
596 sub SRC, SRC, W, lsl #src_bpp_shift
668 (src_basereg - pixblock_size * src_bpp / 64), SRC
677 SRC .req r4 /* source buffer pointer */
773 ldr SRC, [s
[all...]
H A Dpixman-arm-neon.c128 PIXMAN_ARM_BIND_SCALED_NEAREST_SRC_DST (neon, 8888_0565, SRC,
130 PIXMAN_ARM_BIND_SCALED_NEAREST_SRC_DST (neon, 0565_8888, SRC,
138 PIXMAN_ARM_BIND_SCALED_BILINEAR_SRC_DST (0, neon, 8888_8888, SRC,
140 PIXMAN_ARM_BIND_SCALED_BILINEAR_SRC_DST (0, neon, 8888_0565, SRC,
142 PIXMAN_ARM_BIND_SCALED_BILINEAR_SRC_DST (0, neon, 0565_x888, SRC,
144 PIXMAN_ARM_BIND_SCALED_BILINEAR_SRC_DST (0, neon, 0565_0565, SRC,
151 PIXMAN_ARM_BIND_SCALED_BILINEAR_SRC_A8_DST (0, neon, 8888_8_8888, SRC,
153 PIXMAN_ARM_BIND_SCALED_BILINEAR_SRC_A8_DST (0, neon, 8888_8_0565, SRC,
155 PIXMAN_ARM_BIND_SCALED_BILINEAR_SRC_A8_DST (0, neon, 0565_8_x888, SRC,
157 PIXMAN_ARM_BIND_SCALED_BILINEAR_SRC_A8_DST (0, neon, 0565_8_0565, SRC,
[all...]
H A Dpixman-arm-simd-asm-scaled.S70 SRC .req r2
86 ldr\()\t TMP1, [SRC, TMP1]
93 ldr\()\t TMP2, [SRC, TMP2]
112 pld [SRC, PF_OFFS, asr #(16 - \bpp_shift)]
134 ldr\()\t\()ne TMP1, [SRC, TMP1]
139 .unreq SRC
H A Dpixman-arm-simd-asm.S62 pixld \cond, \numbytes, \firstreg, SRC, \unaligned_src
70 110: pixld , 16, 0, SRC, \unaligned_src
71 pixld , 16, 4, SRC, \unaligned_src
72 pld [SRC, SCRATCH]
119 ldr SRC, [sp, #ARGS_STACK_OFFSET]
120 mov STRIDE_S, SRC
121 mov MASK, SRC
122 mov STRIDE_M, SRC
126 ldrh SRC, [sp, #ARGS_STACK_OFFSET]
127 orr SRC, SR
[all...]
H A Dpixman-arm-simd-asm.h289 * "base" - base address register of channel to preload (SRC, MASK or DST)
443 preload_middle src_bpp, SRC, 1
447 preload_middle src_bpp, SRC, 0
483 preload_trailing src_bpp, src_bpp_shift, SRC
523 tst SRC, #3
536 tst SRC, #3
563 add SRC, SRC, STRIDE_S
700 SRC .req r4 /* source pixel pointer */
721 ldr SRC, [s
[all...]
H A Dpixman-arm-simd.c68 PIXMAN_ARM_BIND_SCALED_NEAREST_SRC_DST (armv6, 0565_0565, SRC,
70 PIXMAN_ARM_BIND_SCALED_NEAREST_SRC_DST (armv6, 8888_8888, SRC,
190 PIXMAN_STD_FAST_PATH (SRC, a8r8g8b8, null, a8r8g8b8, armv6_composite_src_8888_8888),
191 PIXMAN_STD_FAST_PATH (SRC, a8b8g8r8, null, a8b8g8r8, armv6_composite_src_8888_8888),
192 PIXMAN_STD_FAST_PATH (SRC, a8r8g8b8, null, x8r8g8b8, armv6_composite_src_8888_8888),
193 PIXMAN_STD_FAST_PATH (SRC, a8b8g8r8, null, x8b8g8r8, armv6_composite_src_8888_8888),
194 PIXMAN_STD_FAST_PATH (SRC, x8r8g8b8, null, x8r8g8b8, armv6_composite_src_8888_8888),
195 PIXMAN_STD_FAST_PATH (SRC, x8b8g8r8, null, x8b8g8r8, armv6_composite_src_8888_8888),
197 PIXMAN_STD_FAST_PATH (SRC, x8b8g8r8, null, a8b8g8r8, armv6_composite_src_x888_8888),
198 PIXMAN_STD_FAST_PATH (SRC, x8r8g8b
[all...]
H A Dpixman-arma64-neon-asm.h500 prfm PREFETCH_MODE, [SRC, #(PREFETCH_DISTANCE_SIMPLE * src_bpp / 8)]
536 pixld_src (\lowbit * 8 / dst_w_bpp), src_bpp, src_basereg, SRC
604 pixld_src \chunk_size, src_bpp, src_basereg, SRC
653 add SRC, SRC, SRC_STRIDE, lsl #src_bpp_shift
662 sub SRC, SRC, W, lsl #src_bpp_shift
746 (src_basereg - pixblock_size * src_bpp / 64), SRC
755 SRC .req x4 /* source buffer pointer */
853 PF mov, PF_SRC, SRC
[all...]

Completed in 56 milliseconds

12