/third_party/openh264/codec/common/inc/ |
D | msa_macros.h | 195 #define MSA_LD_V(RTYPE, psrc, out) (out) = *((RTYPE *)(psrc)); argument 197 #define MSA_LD_V2(RTYPE, psrc, stride, out0, out1) \ argument 199 MSA_LD_V(RTYPE, (psrc), out0); \ 200 MSA_LD_V(RTYPE, (psrc) + (stride), out1); \ 203 #define MSA_LD_V4(RTYPE, psrc, stride, out0, out1, out2, out3) \ argument 205 MSA_LD_V2(RTYPE, (psrc), stride, out0, out1); \ 206 MSA_LD_V2(RTYPE, (psrc) + 2 * (stride) , stride, out2, out3); \ 209 #define MSA_LD_V8(RTYPE, psrc, stride, out0, out1, out2, out3, \ argument 212 MSA_LD_V4(RTYPE, (psrc), stride, out0, out1, out2, out3); \ 213 MSA_LD_V4(RTYPE, (psrc) + 4 * (stride), stride, out4, out5, out6, out7); \ [all …]
|
D | loongson_intrinsics.h | 1838 #define VECT_PRINT(RTYPE, element_num, in0, enter) \ argument 1840 RTYPE _tmp0 = (RTYPE)in0; \
|
/third_party/ffmpeg/libavutil/mips/ |
D | generic_macros_msa.h | 35 #define LD_V(RTYPE, psrc) *((RTYPE *)(psrc)) argument 43 #define ST_V(RTYPE, in, pdst) *((RTYPE *)(pdst)) = (in) argument 276 #define LD_V2(RTYPE, psrc, stride, out0, out1) \ argument 278 out0 = LD_V(RTYPE, (psrc)); \ 279 out1 = LD_V(RTYPE, (psrc) + stride); \ 287 #define LD_V3(RTYPE, psrc, stride, out0, out1, out2) \ argument 289 LD_V2(RTYPE, (psrc), stride, out0, out1); \ 290 out2 = LD_V(RTYPE, (psrc) + 2 * stride); \ 295 #define LD_V4(RTYPE, psrc, stride, out0, out1, out2, out3) \ argument 297 LD_V2(RTYPE, (psrc), stride, out0, out1); \ [all …]
|
/third_party/skia/third_party/externals/libwebp/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 …]
|
/third_party/flutter/skia/third_party/externals/libwebp/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 …]
|
/third_party/skia/third_party/externals/libpng/mips/ |
D | filter_msa_intrinsics.c | 251 #define LD_B(RTYPE, psrc) *((RTYPE *) (psrc)) argument 253 #define LD_B2(RTYPE, psrc, stride, out0, out1) \ argument 255 out0 = LD_B(RTYPE, (psrc)); \ 256 out1 = LD_B(RTYPE, (psrc) + stride); \ 259 #define LD_B4(RTYPE, psrc, stride, out0, out1, out2, out3) \ argument 261 LD_B2(RTYPE, (psrc), stride, out0, out1); \ 262 LD_B2(RTYPE, (psrc) + 2 * stride , stride, out2, out3); \ 266 #define ST_B(RTYPE, in, pdst) *((RTYPE *) (pdst)) = (in) argument 268 #define ST_B2(RTYPE, in0, in1, pdst, stride) \ argument 270 ST_B(RTYPE, in0, (pdst)); \ [all …]
|
/third_party/libpng/mips/ |
D | filter_msa_intrinsics.c | 251 #define LD_B(RTYPE, psrc) *((RTYPE *) (psrc)) argument 253 #define LD_B2(RTYPE, psrc, stride, out0, out1) \ argument 255 out0 = LD_B(RTYPE, (psrc)); \ 256 out1 = LD_B(RTYPE, (psrc) + stride); \ 259 #define LD_B4(RTYPE, psrc, stride, out0, out1, out2, out3) \ argument 261 LD_B2(RTYPE, (psrc), stride, out0, out1); \ 262 LD_B2(RTYPE, (psrc) + 2 * stride , stride, out2, out3); \ 266 #define ST_B(RTYPE, in, pdst) *((RTYPE *) (pdst)) = (in) argument 268 #define ST_B2(RTYPE, in0, in1, pdst, stride) \ argument 270 ST_B(RTYPE, in0, (pdst)); \ [all …]
|
/third_party/flutter/skia/third_party/externals/libpng/mips/ |
D | filter_msa_intrinsics.c | 251 #define LD_B(RTYPE, psrc) *((RTYPE *) (psrc)) argument 253 #define LD_B2(RTYPE, psrc, stride, out0, out1) \ argument 255 out0 = LD_B(RTYPE, (psrc)); \ 256 out1 = LD_B(RTYPE, (psrc) + stride); \ 259 #define LD_B4(RTYPE, psrc, stride, out0, out1, out2, out3) \ argument 261 LD_B2(RTYPE, (psrc), stride, out0, out1); \ 262 LD_B2(RTYPE, (psrc) + 2 * stride , stride, out2, out3); \ 266 #define ST_B(RTYPE, in, pdst) *((RTYPE *) (pdst)) = (in) argument 268 #define ST_B2(RTYPE, in0, in1, pdst, stride) \ argument 270 ST_B(RTYPE, in0, (pdst)); \ [all …]
|
/third_party/python/Include/ |
D | pyport.h | 672 # define PyAPI_FUNC(RTYPE) Py_EXPORTED_SYMBOL RTYPE argument 673 # define PyAPI_DATA(RTYPE) extern Py_EXPORTED_SYMBOL RTYPE argument 688 # define PyAPI_FUNC(RTYPE) Py_IMPORTED_SYMBOL RTYPE argument 690 # define PyAPI_DATA(RTYPE) extern Py_IMPORTED_SYMBOL RTYPE argument 703 # define PyAPI_FUNC(RTYPE) Py_EXPORTED_SYMBOL RTYPE argument 706 # define PyAPI_DATA(RTYPE) extern Py_EXPORTED_SYMBOL RTYPE argument
|
/third_party/boost/boost/python/detail/ |
D | wrap_python.hpp | 128 # define DL_IMPORT(RTYPE) __declspec(dllimport) RTYPE argument 132 # define DL_IMPORT(RTYPE) __declspec(dllexport) RTYPE argument 133 # define DL_EXPORT(RTYPE) __declspec(dllexport) RTYPE argument
|
D | python22_fixed.h | 46 #define DL_IMPORT(RTYPE) RTYPE argument 49 #define DL_EXPORT(RTYPE) RTYPE argument
|
/third_party/flatbuffers/src/ |
D | idl_gen_rust.cpp | 545 RTYPE, ...) \ in GetTypeBasic() argument 546 #RTYPE, in GetTypeBasic() 567 RTYPE, ...) \ in GetEnumTypeForDecl() argument 568 #RTYPE, in GetEnumTypeForDecl()
|
D | idl_gen_kotlin.cpp | 144 CTYPE, JTYPE, GTYPE, NTYPE, PTYPE, RTYPE, KTYPE, ...) \ in GenTypeBasic() argument
|
D | idl_gen_swift.cpp | 1538 CTYPE, JTYPE, GTYPE, NTYPE, PTYPE, RTYPE, KTYPE, STYPE) \ in GenTypeBasic() argument
|
/third_party/python/Modules/_ctypes/libffi_osx/ |
D | README | 143 RTYPE is a pointer to an ffi_type structure that represents 184 system's alignment requirements). If RTYPE is
|
/third_party/libffi/doc/ |
D | libffi.info | 135 unsigned int NARGS, ffi_type *RTYPE, ffi_type **ARGTYPES) 143 RTYPE is a pointer to an 'ffi_type' structure that describes the 159 *RTYPE, ffi_type **ARGTYPES)
|