Home
last modified time | relevance | path

Searched refs:FUNC_NAME (Results 1 – 25 of 34) sorted by relevance

12

/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderrender/
DvktShaderRenderOperatorTests.cpp829 #define DECLARE_UNARY_GENTYPE_FUNCS(FUNC_NAME) \ argument
830 …void eval_##FUNC_NAME##_float (ShaderEvalContext& c) { c.color.x() = FUNC_NAME(c.in[0].swizzle(2))…
831 …void eval_##FUNC_NAME##_vec2 (ShaderEvalContext& c) { c.color.yz() = FUNC_NAME(c.in[0].swizzle(3, …
832 …void eval_##FUNC_NAME##_vec3 (ShaderEvalContext& c) { c.color.xyz() = FUNC_NAME(c.in[0].swizzle(2,…
833 …void eval_##FUNC_NAME##_vec4 (ShaderEvalContext& c) { c.color = FUNC_NAME(c.in[0].swizzle(1, 2, 3…
835 #define DECLARE_BINARY_GENTYPE_FUNCS(FUNC_NAME) \ argument
836 …void eval_##FUNC_NAME##_float (ShaderEvalContext& c) { c.color.x() = FUNC_NAME(c.in[0].swizzle(2),…
837 …void eval_##FUNC_NAME##_vec2 (ShaderEvalContext& c) { c.color.yz() = FUNC_NAME(c.in[0].swizzle(3, …
838 …void eval_##FUNC_NAME##_vec3 (ShaderEvalContext& c) { c.color.xyz() = FUNC_NAME(c.in[0].swizzle(2,…
839 …void eval_##FUNC_NAME##_vec4 (ShaderEvalContext& c) { c.color = FUNC_NAME(c.in[0].swizzle(1, 2, 3…
[all …]
/third_party/vk-gl-cts/modules/gles2/functional/
Des2fShaderOperatorTests.cpp70 #define DEFINE_VEC_FLOAT_FUNCTION(FUNC_NAME, SCALAR_OP_NAME) \ argument
72 inline Vector<float, Size> FUNC_NAME (const Vector<float, Size>& v, float s) \
80 #define DEFINE_FLOAT_VEC_FUNCTION(FUNC_NAME, SCALAR_OP_NAME) \ argument
82 inline Vector<float, Size> FUNC_NAME (float s, const Vector<float, Size>& v) \
90 #define DEFINE_VEC_VEC_FLOAT_FUNCTION(FUNC_NAME, SCALAR_OP_NAME) \ argument
92 inline Vector<float, Size> FUNC_NAME (const Vector<float, Size>& v0, const Vector<float, Size>& v1,…
100 #define DEFINE_VEC_FLOAT_FLOAT_FUNCTION(FUNC_NAME, SCALAR_OP_NAME) \ argument
102 inline Vector<float, Size> FUNC_NAME (const Vector<float, Size>& v, float s0, float s1) \
110 #define DEFINE_FLOAT_FLOAT_VEC_FUNCTION(FUNC_NAME, SCALAR_OP_NAME) \ argument
112 inline Vector<float, Size> FUNC_NAME (float s0, float s1, const Vector<float, Size>& v) \
[all …]
/third_party/vk-gl-cts/modules/gles3/functional/
Des3fShaderOperatorTests.cpp1113 #define DECLARE_UNARY_GENTYPE_FUNCS(FUNC_NAME) \ argument
1114 …void eval_##FUNC_NAME##_float (ShaderEvalContext& c) { c.color.x() = FUNC_NAME(c.in[0].swizzle(2))…
1115 …void eval_##FUNC_NAME##_vec2 (ShaderEvalContext& c) { c.color.yz() = FUNC_NAME(c.in[0].swizzle(3, …
1116 …void eval_##FUNC_NAME##_vec3 (ShaderEvalContext& c) { c.color.xyz() = FUNC_NAME(c.in[0].swizzle(2,…
1117 …void eval_##FUNC_NAME##_vec4 (ShaderEvalContext& c) { c.color = FUNC_NAME(c.in[0].swizzle(1, 2, 3…
1119 #define DECLARE_BINARY_GENTYPE_FUNCS(FUNC_NAME) \ argument
1120 …void eval_##FUNC_NAME##_float (ShaderEvalContext& c) { c.color.x() = FUNC_NAME(c.in[0].swizzle(2),…
1121 …void eval_##FUNC_NAME##_vec2 (ShaderEvalContext& c) { c.color.yz() = FUNC_NAME(c.in[0].swizzle(3, …
1122 …void eval_##FUNC_NAME##_vec3 (ShaderEvalContext& c) { c.color.xyz() = FUNC_NAME(c.in[0].swizzle(2,…
1123 …void eval_##FUNC_NAME##_vec4 (ShaderEvalContext& c) { c.color = FUNC_NAME(c.in[0].swizzle(1, 2, 3…
[all …]
/third_party/boost/boost/intrusive/detail/
Dmpl.hpp171 #define BOOST_INTRUSIVE_HAS_STATIC_MEMBER_FUNC_SIGNATURE(TRAITS_NAME, FUNC_NAME) \ argument
178 static ::boost::intrusive::detail::yes_type test(helper<&T::FUNC_NAME>*); \
185 #define BOOST_INTRUSIVE_HAS_MEMBER_FUNC_CALLED(TRAITS_NAME, FUNC_NAME) \ argument
191 void FUNC_NAME(); \
196 …static ::boost::intrusive::detail::no_type test(U*, Helper<void (BaseMixin::*)(), &U::FUNC_NAME>*…
202 #define BOOST_INTRUSIVE_HAS_MEMBER_FUNC_CALLED_IGNORE_SIGNATURE(TRAITS_NAME, FUNC_NAME) \ argument
203 BOOST_INTRUSIVE_HAS_MEMBER_FUNC_CALLED(TRAITS_NAME##_ignore_signature, FUNC_NAME) \
/third_party/skia/third_party/externals/libwebp/src/dsp/
Dupsampling.c37 #define UPSAMPLE_FUNC(FUNC_NAME, FUNC, XSTEP) \ argument
38 static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bottom_y, \
138 #define DUAL_SAMPLE_FUNC(FUNC_NAME, FUNC) \ argument
139 static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bot_y, \
180 #define YUV444_FUNC(FUNC_NAME, FUNC, XSTEP) \ argument
181 extern void FUNC_NAME(const uint8_t* y, const uint8_t* u, const uint8_t* v, \
183 void FUNC_NAME(const uint8_t* y, const uint8_t* u, const uint8_t* v, \
Dupsampling_sse41.c118 #define SSE4_UPSAMPLE_FUNC(FUNC_NAME, FUNC, XSTEP) \ argument
119 static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bottom_y, \
204 #define YUV444_FUNC(FUNC_NAME, CALL, CALL_C, XSTEP) \ argument
207 static void FUNC_NAME(const uint8_t* y, const uint8_t* u, const uint8_t* v, \
Dupsampling_mips_dsp_r2.c145 #define UPSAMPLE_FUNC(FUNC_NAME, FUNC, XSTEP) \ argument
146 static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bottom_y, \
243 #define YUV444_FUNC(FUNC_NAME, FUNC, XSTEP) \ argument
244 static void FUNC_NAME(const uint8_t* y, const uint8_t* u, const uint8_t* v, \
Dyuv_mips_dsp_r2.c71 #define ROW_FUNC(FUNC_NAME, XSTEP, R, G, B, A) \ argument
72 static void FUNC_NAME(const uint8_t* y, \
Dyuv_mips32.c24 #define ROW_FUNC(FUNC_NAME, XSTEP, R, G, B, A) \ argument
25 static void FUNC_NAME(const uint8_t* y, \
Dupsampling_sse2.c116 #define SSE2_UPSAMPLE_FUNC(FUNC_NAME, FUNC, XSTEP) \ argument
117 static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bottom_y, \
217 #define YUV444_FUNC(FUNC_NAME, CALL, CALL_C, XSTEP) \ argument
220 static void FUNC_NAME(const uint8_t* y, const uint8_t* u, const uint8_t* v, \
Dyuv.c22 #define ROW_FUNC(FUNC_NAME, FUNC, XSTEP) \ argument
23 static void FUNC_NAME(const uint8_t* y, \
Dlossless_mips_dsp_r2.c22 #define MAP_COLOR_FUNCS(FUNC_NAME, TYPE, GET_INDEX, GET_VALUE) \ argument
23 static void FUNC_NAME(const TYPE* src, \
Dmsa_macro.h72 #define MSA_LOAD_FUNC(TYPE, INSTR, FUNC_NAME) \ argument
73 static inline TYPE FUNC_NAME(const void* const psrc) { \
83 #define MSA_LOAD(psrc, FUNC_NAME) FUNC_NAME(psrc) argument
85 #define MSA_STORE_FUNC(TYPE, INSTR, FUNC_NAME) \ argument
86 static inline void FUNC_NAME(TYPE val, void* const pdst) { \
95 #define MSA_STORE(val, pdst, FUNC_NAME) FUNC_NAME(val, pdst) argument
/third_party/flutter/skia/third_party/externals/libwebp/src/dsp/
Dupsampling.c37 #define UPSAMPLE_FUNC(FUNC_NAME, FUNC, XSTEP) \ argument
38 static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bottom_y, \
138 #define DUAL_SAMPLE_FUNC(FUNC_NAME, FUNC) \ argument
139 static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bot_y, \
180 #define YUV444_FUNC(FUNC_NAME, FUNC, XSTEP) \ argument
181 extern void FUNC_NAME(const uint8_t* y, const uint8_t* u, const uint8_t* v, \
183 void FUNC_NAME(const uint8_t* y, const uint8_t* u, const uint8_t* v, \
Dupsampling_sse41.c118 #define SSE4_UPSAMPLE_FUNC(FUNC_NAME, FUNC, XSTEP) \ argument
119 static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bottom_y, \
204 #define YUV444_FUNC(FUNC_NAME, CALL, CALL_C, XSTEP) \ argument
207 static void FUNC_NAME(const uint8_t* y, const uint8_t* u, const uint8_t* v, \
Dupsampling_mips_dsp_r2.c145 #define UPSAMPLE_FUNC(FUNC_NAME, FUNC, XSTEP) \ argument
146 static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bottom_y, \
243 #define YUV444_FUNC(FUNC_NAME, FUNC, XSTEP) \ argument
244 static void FUNC_NAME(const uint8_t* y, const uint8_t* u, const uint8_t* v, \
Dyuv_mips_dsp_r2.c71 #define ROW_FUNC(FUNC_NAME, XSTEP, R, G, B, A) \ argument
72 static void FUNC_NAME(const uint8_t* y, \
Dyuv_mips32.c24 #define ROW_FUNC(FUNC_NAME, XSTEP, R, G, B, A) \ argument
25 static void FUNC_NAME(const uint8_t* y, \
Dupsampling_sse2.c116 #define SSE2_UPSAMPLE_FUNC(FUNC_NAME, FUNC, XSTEP) \ argument
117 static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bottom_y, \
217 #define YUV444_FUNC(FUNC_NAME, CALL, CALL_C, XSTEP) \ argument
220 static void FUNC_NAME(const uint8_t* y, const uint8_t* u, const uint8_t* v, \
Dyuv.c22 #define ROW_FUNC(FUNC_NAME, FUNC, XSTEP) \ argument
23 static void FUNC_NAME(const uint8_t* y, \
Dlossless_mips_dsp_r2.c22 #define MAP_COLOR_FUNCS(FUNC_NAME, TYPE, GET_INDEX, GET_VALUE) \ argument
23 static void FUNC_NAME(const TYPE* src, \
Dmsa_macro.h72 #define MSA_LOAD_FUNC(TYPE, INSTR, FUNC_NAME) \ argument
73 static inline TYPE FUNC_NAME(const void* const psrc) { \
83 #define MSA_LOAD(psrc, FUNC_NAME) FUNC_NAME(psrc) argument
85 #define MSA_STORE_FUNC(TYPE, INSTR, FUNC_NAME) \ argument
86 static inline void FUNC_NAME(TYPE val, void* const pdst) { \
95 #define MSA_STORE(val, pdst, FUNC_NAME) FUNC_NAME(val, pdst) argument
Dupsampling_neon.c192 #define NEON_UPSAMPLE_FUNC(FUNC_NAME, FMT, XSTEP) \ argument
193 static void FUNC_NAME(const uint8_t *top_y, const uint8_t *bottom_y, \
/third_party/ffmpeg/libavfilter/x86/
Dscene_sad_init.c23 #define SCENE_SAD_FUNC(FUNC_NAME, ASM_FUNC_NAME, MMSIZE) \ argument
26 static void FUNC_NAME(SCENE_SAD_PARAMS) { \
/third_party/vk-gl-cts/framework/common/
DtcuVectorUtil.hpp400 #define TCU_DECLARE_VECTOR_UNARY_FUNC(FUNC_NAME, OP_NAME) \ argument
402 Vector<T, Size> FUNC_NAME (const Vector<T, Size>& v) \
410 #define TCU_DECLARE_VECTOR_BINARY_FUNC(FUNC_NAME, OP_NAME) \ argument
412 Vector<T, Size> FUNC_NAME (const Vector<T, Size>& a, const Vector<T, Size>& b) \
420 #define TCU_DECLARE_VECTOR_TERNARY_FUNC(FUNC_NAME, OP_NAME) \ argument
422 Vector<T, Size> FUNC_NAME (const Vector<T, Size>& a, const Vector<T, Size>& b, const Vector<T, Size…

12