Home
last modified time | relevance | path

Searched refs:OP_NAME (Results 1 – 6 of 6) sorted by relevance

/third_party/gn/src/base/numerics/
Dsafe_math_shared_impl.h203 #define BASE_NUMERIC_ARITHMETIC_VARIADIC(CLASS, CL_ABBR, OP_NAME) \
206 typename ResultType<CLASS##OP_NAME##Op, L, R, Args...>::type> \
207 CL_ABBR##OP_NAME(const L lhs, const R rhs, const Args... args) { \
208 return CL_ABBR##MathOp<CLASS##OP_NAME##Op, L, R, Args...>(lhs, rhs, \
212 #define BASE_NUMERIC_ARITHMETIC_OPERATORS(CLASS, CL_ABBR, OP_NAME, OP, CMP_OP) \
218 typename MathWrapper<CLASS##OP_NAME##Op, L, R>::type> \
220 return decltype(lhs OP rhs)::template MathOp<CLASS##OP_NAME##Op>(lhs, \
228 return MathOp<CLASS##OP_NAME##Op>(rhs); \
231 BASE_NUMERIC_ARITHMETIC_VARIADIC(CLASS, CL_ABBR, OP_NAME)
/third_party/skia/third_party/externals/angle2/src/common/third_party/base/anglebase/numerics/
Dsafe_math_shared_impl.h197 #define BASE_NUMERIC_ARITHMETIC_VARIADIC(CLASS, CL_ABBR, OP_NAME) \
199 constexpr auto CL_ABBR##OP_NAME(const L lhs, const R rhs, const Args... args) \
201 return CL_ABBR##MathOp<CLASS##OP_NAME##Op, L, R, Args...>(lhs, rhs, args...); \
204 #define BASE_NUMERIC_ARITHMETIC_OPERATORS(CLASS, CL_ABBR, OP_NAME, OP, CMP_OP) \
208 constexpr CLASS##Numeric<typename MathWrapper<CLASS##OP_NAME##Op, L, R>::type> operator OP( \
211 return decltype(lhs OP rhs)::template MathOp<CLASS##OP_NAME##Op>(lhs, rhs); \
218 return MathOp<CLASS##OP_NAME##Op>(rhs); \
221 BASE_NUMERIC_ARITHMETIC_VARIADIC(CLASS, CL_ABBR, OP_NAME)
/third_party/vk-gl-cts/framework/common/
DtcuVectorUtil.hpp400 #define TCU_DECLARE_VECTOR_UNARY_FUNC(FUNC_NAME, OP_NAME) \ argument
406 res.m_data[i] = OP_NAME(v.m_data[i]); \
410 #define TCU_DECLARE_VECTOR_BINARY_FUNC(FUNC_NAME, OP_NAME) \ argument
416 res.m_data[i] = OP_NAME(a.m_data[i], b.m_data[i]); \
420 #define TCU_DECLARE_VECTOR_TERNARY_FUNC(FUNC_NAME, OP_NAME) \ argument
426 res.m_data[i] = OP_NAME(a.m_data[i], b.m_data[i], c.m_data[i]); \
/third_party/vk-gl-cts/modules/gles3/functional/
Des3fShaderOperatorTests.cpp191 #define DECLARE_IVEC_BINARY_FUNC(OP_NAME) \ argument
192 template <int Size> inline Vector<int, Size> OP_NAME (const Vector<int, Size>& a, const Vector<int,…
196 res.m_data[i] = OP_NAME(a.m_data[i], b.m_data[i]); \
200 #define DECLARE_IVEC_INT_BINARY_FUNC(OP_NAME) \ argument
201 template<int Size> inline Vector<int, Size> OP_NAME##VecScalar (const Vector<int, Size>& v, int s) \
205 ret[i] = OP_NAME(v.m_data[i], s); \
209 #define DECLARE_INT_IVEC_BINARY_FUNC(OP_NAME) \ argument
210 template<int Size> inline Vector<int, Size> OP_NAME##ScalarVec (int s, const Vector<int, Size>& v) \
214 ret[i] = OP_NAME(s, v.m_data[i]); \
/third_party/vk-gl-cts/framework/referencerenderer/
DrrFragmentOperations.cpp335 #define SWITCH_DPFAIL_OR_DPPASS(OP_NAME, CONDITION) \ in executeStencilDpFailAndPass() argument
336 switch (stencilState.OP_NAME) \ in executeStencilDpFailAndPass()
/third_party/python/Python/
Dcompile.c3683 enum { OP_FAST, OP_GLOBAL, OP_DEREF, OP_NAME } optype; in compiler_nameop() enumerator
3700 optype = OP_NAME; in compiler_nameop()
3755 case OP_NAME: in compiler_nameop()