Home
last modified time | relevance | path

Searched refs:RTYPE (Results 1 – 8 of 8) sorted by relevance

/external/libvpx/libvpx/vp8/common/mips/msa/
Dvp8_macros_msa.h19 #define LD_B(RTYPE, psrc) *((const RTYPE *)(psrc)) argument
23 #define LD_H(RTYPE, psrc) *((const RTYPE *)(psrc)) argument
27 #define LD_W(RTYPE, psrc) *((const RTYPE *)(psrc)) argument
31 #define ST_B(RTYPE, in, pdst) *((RTYPE *)(pdst)) = (in) argument
35 #define ST_H(RTYPE, in, pdst) *((RTYPE *)(pdst)) = (in) argument
39 #define ST_W(RTYPE, in, pdst) *((RTYPE *)(pdst)) = (in) argument
268 #define LD_B2(RTYPE, psrc, stride, out0, out1) \ argument
270 out0 = LD_B(RTYPE, (psrc)); \
271 out1 = LD_B(RTYPE, (psrc) + stride); \
276 #define LD_B3(RTYPE, psrc, stride, out0, out1, out2) \ argument
[all …]
/external/libvpx/libvpx/vpx_dsp/mips/
Dmacros_msa.h19 #define LD_B(RTYPE, psrc) *((const RTYPE *)(psrc)) argument
23 #define LD_H(RTYPE, psrc) *((const RTYPE *)(psrc)) argument
27 #define LD_W(RTYPE, psrc) *((const RTYPE *)(psrc)) argument
30 #define ST_B(RTYPE, in, pdst) *((RTYPE *)(pdst)) = (in) argument
34 #define ST_H(RTYPE, in, pdst) *((RTYPE *)(pdst)) = (in) argument
37 #define ST_W(RTYPE, in, pdst) *((RTYPE *)(pdst)) = (in) argument
293 #define LD_B2(RTYPE, psrc, stride, out0, out1) \ argument
295 out0 = LD_B(RTYPE, (psrc)); \
296 out1 = LD_B(RTYPE, (psrc) + stride); \
301 #define LD_B3(RTYPE, psrc, stride, out0, out1, out2) \ argument
[all …]
Dsad_msa.c14 #define SAD_INSVE_W4(RTYPE, in0, in1, in2, in3, out) \ argument
16 out = (RTYPE)__msa_insve_w((v4i32)out, 0, (v4i32)in0); \
17 out = (RTYPE)__msa_insve_w((v4i32)out, 1, (v4i32)in1); \
18 out = (RTYPE)__msa_insve_w((v4i32)out, 2, (v4i32)in2); \
19 out = (RTYPE)__msa_insve_w((v4i32)out, 3, (v4i32)in3); \
/external/webp/src/dsp/
Dmsa_macro.h46 #define LD_B(RTYPE, psrc) *((RTYPE*)(psrc)) argument
50 #define LD_H(RTYPE, psrc) *((RTYPE*)(psrc)) argument
54 #define LD_W(RTYPE, psrc) *((RTYPE*)(psrc)) argument
58 #define ST_B(RTYPE, in, pdst) *((RTYPE*)(pdst)) = in argument
62 #define ST_H(RTYPE, in, pdst) *((RTYPE*)(pdst)) = in argument
66 #define ST_W(RTYPE, in, pdst) *((RTYPE*)(pdst)) = in argument
218 #define LD_B2(RTYPE, psrc, stride, out0, out1) do { \ argument
219 out0 = LD_B(RTYPE, psrc); \
220 out1 = LD_B(RTYPE, psrc + stride); \
225 #define LD_B3(RTYPE, psrc, stride, out0, out1, out2) do { \ argument
[all …]
/external/libyuv/files/include/libyuv/
Dmacros_msa.h140 #define LD_B(RTYPE, psrc) *((RTYPE*)(psrc)) /* NOLINT */ argument
143 #define ST_B(RTYPE, in, pdst) *((RTYPE*)(pdst)) = (in) /* NOLINT */ argument
146 #define ST_H(RTYPE, in, pdst) *((RTYPE*)(pdst)) = (in) /* NOLINT */ argument
156 #define LD_B2(RTYPE, psrc, stride, out0, out1) \ argument
158 out0 = LD_B(RTYPE, (psrc)); \
159 out1 = LD_B(RTYPE, (psrc) + stride); \
163 #define LD_B4(RTYPE, psrc, stride, out0, out1, out2, out3) \ argument
165 LD_B2(RTYPE, (psrc), stride, out0, out1); \
166 LD_B2(RTYPE, (psrc) + 2 * stride, stride, out2, out3); \
176 #define ST_B2(RTYPE, in0, in1, pdst, stride) \ argument
[all …]
/external/libpng/mips/
Dfilter_msa_intrinsics.c250 #define LD_B(RTYPE, psrc) *((RTYPE *) (psrc)) argument
252 #define LD_B2(RTYPE, psrc, stride, out0, out1) \ argument
254 out0 = LD_B(RTYPE, (psrc)); \
255 out1 = LD_B(RTYPE, (psrc) + stride); \
258 #define LD_B4(RTYPE, psrc, stride, out0, out1, out2, out3) \ argument
260 LD_B2(RTYPE, (psrc), stride, out0, out1); \
261 LD_B2(RTYPE, (psrc) + 2 * stride , stride, out2, out3); \
265 #define ST_B(RTYPE, in, pdst) *((RTYPE *) (pdst)) = (in) argument
267 #define ST_B2(RTYPE, in0, in1, pdst, stride) \ argument
269 ST_B(RTYPE, in0, (pdst)); \
[all …]
/external/ltp/testcases/kernel/fs/linktest/
Dlinktest.sh77 RTYPE=TPASS
79 RTYPE=TFAIL
82 tst_res $RTYPE "" "$prefix_msg Link Errors: $lerrors"
/external/eigen/Eigen/src/Core/products/
DGeneralMatrixMatrixTriangular_BLAS.h96 #define EIGEN_BLAS_RANKUPDATE_C(EIGTYPE, BLASTYPE, RTYPE, BLASFUNC) \ argument
111 RTYPE alpha_, beta_; \