Home
last modified time | relevance | path

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

/third_party/openh264/codec/common/inc/
Dmsa_macros.h195 #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 …]
Dloongson_intrinsics.h1838 #define VECT_PRINT(RTYPE, element_num, in0, enter) \ argument
1840 RTYPE _tmp0 = (RTYPE)in0; \
/third_party/ffmpeg/libavutil/mips/
Dgeneric_macros_msa.h35 #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/
Dmsa_macro.h48 #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/
Dmsa_macro.h48 #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/
Dfilter_msa_intrinsics.c251 #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/
Dfilter_msa_intrinsics.c251 #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/
Dfilter_msa_intrinsics.c251 #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/
Dpyport.h672 # 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/
Dwrap_python.hpp128 # 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
Dpython22_fixed.h46 #define DL_IMPORT(RTYPE) RTYPE argument
49 #define DL_EXPORT(RTYPE) RTYPE argument
/third_party/flatbuffers/src/
Didl_gen_rust.cpp545 RTYPE, ...) \ in GetTypeBasic() argument
546 #RTYPE, in GetTypeBasic()
567 RTYPE, ...) \ in GetEnumTypeForDecl() argument
568 #RTYPE, in GetEnumTypeForDecl()
Didl_gen_kotlin.cpp144 CTYPE, JTYPE, GTYPE, NTYPE, PTYPE, RTYPE, KTYPE, ...) \ in GenTypeBasic() argument
Didl_gen_swift.cpp1538 CTYPE, JTYPE, GTYPE, NTYPE, PTYPE, RTYPE, KTYPE, STYPE) \ in GenTypeBasic() argument
/third_party/python/Modules/_ctypes/libffi_osx/
DREADME143 RTYPE is a pointer to an ffi_type structure that represents
184 system's alignment requirements). If RTYPE is
/third_party/libffi/doc/
Dlibffi.info135 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)