Home
last modified time | relevance | path

Searched refs:RTYPE (Results 1 – 4 of 4) 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
286 #define LD_B2(RTYPE, psrc, stride, out0, out1) \ argument
288 out0 = LD_B(RTYPE, (psrc)); \
289 out1 = LD_B(RTYPE, (psrc) + stride); \
294 #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
296 #define LD_B2(RTYPE, psrc, stride, out0, out1) { \ argument
297 out0 = LD_B(RTYPE, (psrc)); \
298 out1 = LD_B(RTYPE, (psrc) + stride); \
303 #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
15 out = (RTYPE)__msa_insve_w((v4i32)out, 0, (v4i32)in0); \
16 out = (RTYPE)__msa_insve_w((v4i32)out, 1, (v4i32)in1); \
17 out = (RTYPE)__msa_insve_w((v4i32)out, 2, (v4i32)in2); \
18 out = (RTYPE)__msa_insve_w((v4i32)out, 3, (v4i32)in3); \
/external/eigen/Eigen/src/Core/products/
DGeneralMatrixMatrixTriangular_MKL.h99 #define EIGEN_MKL_RANKUPDATE_C(EIGTYPE, MKLTYPE, RTYPE, MKLFUNC) \ argument
114 RTYPE alpha_, beta_; \