/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 | 1911 #define VECT_PRINT(RTYPE, element_num, in0, enter) \ argument 1913 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/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/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)
|
/third_party/python/patches/ |
D | cpython_mingw_v3.10.2.patch | 532 # define PyAPI_FUNC(RTYPE) Py_EXPORTED_SYMBOL RTYPE 533 # define PyAPI_DATA(RTYPE) extern Py_EXPORTED_SYMBOL RTYPE 553 +# define PyAPI_FUNC(RTYPE) RTYPE 555 # define PyAPI_FUNC(RTYPE) Py_IMPORTED_SYMBOL RTYPE 558 # define PyAPI_DATA(RTYPE) extern Py_IMPORTED_SYMBOL RTYPE
|