/external/libvpx/libvpx/vpx_dsp/mips/ |
D | macros_msa.h | 19 #define LD_V(RTYPE, psrc) *((const RTYPE *)(psrc)) argument 26 #define ST_V(RTYPE, in, pdst) *((RTYPE *)(pdst)) = (in) argument 235 #define LD_V2(RTYPE, psrc, stride, out0, out1) \ argument 237 out0 = LD_V(RTYPE, (psrc)); \ 238 out1 = LD_V(RTYPE, (psrc) + stride); \ 245 #define LD_V3(RTYPE, psrc, stride, out0, out1, out2) \ argument 247 LD_V2(RTYPE, (psrc), stride, out0, out1); \ 248 out2 = LD_V(RTYPE, (psrc) + 2 * stride); \ 252 #define LD_V4(RTYPE, psrc, stride, out0, out1, out2, out3) \ argument 254 LD_V2(RTYPE, (psrc), stride, out0, out1); \ [all …]
|
D | sad_msa.c | 14 #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/libvpx/libvpx/vp8/common/mips/msa/ |
D | vp8_macros_msa.h | 19 #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/libaom/libaom/aom_dsp/mips/ |
D | macros_msa.h | 21 #define LD_B(RTYPE, psrc) *((const RTYPE *)(psrc)) argument 25 #define LD_H(RTYPE, psrc) *((const RTYPE *)(psrc)) argument 29 #define LD_W(RTYPE, psrc) *((const RTYPE *)(psrc)) argument 32 #define ST_B(RTYPE, in, pdst) *((RTYPE *)(pdst)) = (in) argument 36 #define ST_H(RTYPE, in, pdst) *((RTYPE *)(pdst)) = (in) argument 39 #define ST_W(RTYPE, in, pdst) *((RTYPE *)(pdst)) = (in) argument 295 #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 …]
|
D | sad_msa.c | 16 #define SAD_INSVE_W4(RTYPE, in0, in1, in2, in3, out) \ argument 18 out = (RTYPE)__msa_insve_w((v4i32)out, 0, (v4i32)in0); \ 19 out = (RTYPE)__msa_insve_w((v4i32)out, 1, (v4i32)in1); \ 20 out = (RTYPE)__msa_insve_w((v4i32)out, 2, (v4i32)in2); \ 21 out = (RTYPE)__msa_insve_w((v4i32)out, 3, (v4i32)in3); \
|
/external/webp/src/dsp/ |
D | msa_macro.h | 48 #define LD_B(RTYPE, psrc) *((RTYPE*)(psrc)) argument 52 #define LD_H(RTYPE, psrc) *((RTYPE*)(psrc)) argument 56 #define LD_W(RTYPE, psrc) *((RTYPE*)(psrc)) argument 60 #define ST_B(RTYPE, in, pdst) *((RTYPE*)(pdst)) = in argument 64 #define ST_H(RTYPE, in, pdst) *((RTYPE*)(pdst)) = in argument 68 #define ST_W(RTYPE, in, pdst) *((RTYPE*)(pdst)) = in argument 220 #define LD_B2(RTYPE, psrc, stride, out0, out1) do { \ argument 221 out0 = LD_B(RTYPE, psrc); \ 222 out1 = LD_B(RTYPE, psrc + stride); \ 227 #define LD_B3(RTYPE, psrc, stride, out0, out1, out2) do { \ argument [all …]
|
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/ |
D | macros_msa.h | 140 #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/libyuv/files/include/libyuv/ |
D | macros_msa.h | 140 #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/python/cpython2/Include/ |
D | pyport.h | 771 # define PyAPI_FUNC(RTYPE) __declspec(dllexport) RTYPE argument 772 # define PyAPI_DATA(RTYPE) extern __declspec(dllexport) RTYPE argument 787 # define PyAPI_FUNC(RTYPE) __declspec(dllimport) RTYPE argument 789 # define PyAPI_DATA(RTYPE) extern __declspec(dllimport) RTYPE argument 802 # define PyAPI_FUNC(RTYPE) RTYPE argument 805 # define PyAPI_DATA(RTYPE) extern RTYPE argument 818 # define DL_IMPORT(RTYPE) __declspec(dllexport) RTYPE argument 819 # define DL_EXPORT(RTYPE) __declspec(dllexport) RTYPE argument 821 # define DL_IMPORT(RTYPE) __declspec(dllimport) RTYPE argument 822 # define DL_EXPORT(RTYPE) __declspec(dllexport) RTYPE argument [all …]
|
D | Python.h | 65 #define DL_IMPORT(RTYPE) RTYPE argument 68 #define DL_EXPORT(RTYPE) RTYPE argument
|
/external/libpng/mips/ |
D | filter_msa_intrinsics.c | 250 #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/python/cpython3/Include/ |
D | pyport.h | 625 # define PyAPI_FUNC(RTYPE) __declspec(dllexport) RTYPE argument 626 # define PyAPI_DATA(RTYPE) extern __declspec(dllexport) RTYPE argument 641 # define PyAPI_FUNC(RTYPE) __declspec(dllimport) RTYPE argument 643 # define PyAPI_DATA(RTYPE) extern __declspec(dllimport) RTYPE argument 656 # define PyAPI_FUNC(RTYPE) RTYPE argument 659 # define PyAPI_DATA(RTYPE) extern RTYPE argument
|
/external/python/cpython2/PC/os2emx/ |
D | pyconfig.h | 34 # define PyAPI_FUNC(RTYPE) RTYPE argument 36 # define PyAPI_FUNC(RTYPE) extern RTYPE argument 38 #define PyAPI_DATA(RTYPE) extern RTYPE argument
|
/external/tensorflow/tensorflow/core/kernels/ |
D | random_poisson_op.cc | 331 #define REGISTER_V2(RTYPE, OTYPE) \ argument 334 .TypeConstraint<RTYPE>("R") \ 336 RandomPoissonOp<RTYPE, OTYPE>); 338 #define REGISTER_ALL(RTYPE) \ argument 339 REGISTER_V2(RTYPE, Eigen::half); \ 340 REGISTER_V2(RTYPE, float); \ 341 REGISTER_V2(RTYPE, double); \ 342 REGISTER_V2(RTYPE, int32); \ 343 REGISTER_V2(RTYPE, int64);
|
/external/python/cpython2/RISCOS/ |
D | pyconfig.h | 699 #define DL_IMPORT(RTYPE) __declspec(dllimport) RTYPE argument 700 #define DL_EXPORT(RTYPE) __declspec(dllexport) RTYPE argument 702 #define DL_IMPORT(RTYPE) __declspec(dllexport) RTYPE argument 703 #define DL_EXPORT(RTYPE) __declspec(dllexport) RTYPE argument
|
/external/ltp/testcases/kernel/fs/linktest/ |
D | linktest.sh | 62 RTYPE=TPASS 64 RTYPE=TFAIL 67 tst_resm $RTYPE "$prefix_msg Link Errors: $lerrors"
|
/external/python/cpython2/PC/os2vacpp/ |
D | pyconfig.h | 209 #define DL_IMPORT(RTYPE) RTYPE _System argument
|
/external/eigen/Eigen/src/Core/products/ |
D | GeneralMatrixMatrixTriangular_BLAS.h | 96 #define EIGEN_BLAS_RANKUPDATE_C(EIGTYPE, BLASTYPE, RTYPE, BLASFUNC) \ argument 111 RTYPE alpha_, beta_; \
|
/external/flatbuffers/src/ |
D | idl_gen_text.cpp | 134 CTYPE, JTYPE, GTYPE, NTYPE, PTYPE, RTYPE) \ in Print() argument 230 CTYPE, JTYPE, GTYPE, NTYPE, PTYPE, RTYPE) \ in GenStruct() argument 241 CTYPE, JTYPE, GTYPE, NTYPE, PTYPE, RTYPE) \ in GenStruct() argument
|
D | idl_gen_rust.cpp | 519 RTYPE) \ in GetTypeBasic() argument 520 #RTYPE, in GetTypeBasic() 541 RTYPE) \ in GetEnumTypeForDecl() argument 542 #RTYPE, in GetEnumTypeForDecl()
|
D | idl_parser.cpp | 33 CTYPE, JTYPE, GTYPE, NTYPE, PTYPE, RTYPE) \ argument 44 CTYPE, JTYPE, GTYPE, NTYPE, PTYPE, RTYPE) \ argument 202 CTYPE, JTYPE, GTYPE, NTYPE, PTYPE, RTYPE) \ in TokenToString() argument 1090 CTYPE, JTYPE, GTYPE, NTYPE, PTYPE, RTYPE) \ in ParseTable() argument 1107 CTYPE, JTYPE, GTYPE, NTYPE, PTYPE, RTYPE) \ in ParseTable() argument 1179 CTYPE, JTYPE, GTYPE, NTYPE, PTYPE, RTYPE) \ in ParseVector() argument 1521 CTYPE, JTYPE, GTYPE, NTYPE, PTYPE, RTYPE) \ in ParseSingleValue() argument 1680 PTYPE, RTYPE) \ in ParseEnum() argument
|
D | idl_gen_lobster.cpp | 84 CTYPE, JTYPE, GTYPE, NTYPE, PTYPE, RTYPE) \ in GenTypeBasic() argument
|
/external/python/cpython2/Modules/_ctypes/libffi/doc/ |
D | libffi.info | 108 unsigned int NARGS, ffi_type *RTYPE, ffi_type **ARGTYPES) 116 RTYPE is a pointer to an 'ffi_type' structure that describes the 132 *RTYPE, ffi_type **ARGTYPES)
|
/external/flatbuffers/include/flatbuffers/ |
D | idl.h | 102 RTYPE) \ argument 109 RTYPE) \ argument
|
/external/python/cpython2/Modules/_ctypes/libffi_msvc/ |
D | README | 143 RTYPE is a pointer to an ffi_type structure that represents 184 system's alignment requirements). If RTYPE is
|