Home
last modified time | relevance | path

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

/external/libchrome/base/numerics/
Dsafe_math_shared_impl.h204 #define BASE_NUMERIC_ARITHMETIC_VARIADIC(CLASS, CL_ABBR, OP_NAME) \
207 typename ResultType<CLASS##OP_NAME##Op, L, R, Args...>::type> \
208 CL_ABBR##OP_NAME(const L lhs, const R rhs, const Args... args) { \
209 return CL_ABBR##MathOp<CLASS##OP_NAME##Op, L, R, Args...>(lhs, rhs, \
213 #define BASE_NUMERIC_ARITHMETIC_OPERATORS(CLASS, CL_ABBR, OP_NAME, OP, CMP_OP) \
219 typename MathWrapper<CLASS##OP_NAME##Op, L, R>::type> \
221 return decltype(lhs OP rhs)::template MathOp<CLASS##OP_NAME##Op>(lhs, \
229 return MathOp<CLASS##OP_NAME##Op>(rhs); \
232 BASE_NUMERIC_ARITHMETIC_VARIADIC(CLASS, CL_ABBR, OP_NAME)
/external/deqp/framework/common/
DtcuVectorUtil.hpp373 #define TCU_DECLARE_VECTOR_UNARY_FUNC(FUNC_NAME, OP_NAME) \ argument
379 res.m_data[i] = OP_NAME(v.m_data[i]); \
383 #define TCU_DECLARE_VECTOR_BINARY_FUNC(FUNC_NAME, OP_NAME) \ argument
389 res.m_data[i] = OP_NAME(a.m_data[i], b.m_data[i]); \
393 #define TCU_DECLARE_VECTOR_TERNARY_FUNC(FUNC_NAME, OP_NAME) \ argument
399 res.m_data[i] = OP_NAME(a.m_data[i], b.m_data[i], c.m_data[i]); \
/external/deqp/framework/referencerenderer/
DrrFragmentOperations.cpp335 #define SWITCH_DPFAIL_OR_DPPASS(OP_NAME, CONDITION) \ in executeStencilDpFailAndPass() argument
336 switch (stencilState.OP_NAME) \ in executeStencilDpFailAndPass()
/external/python/cpython2/Python/
Dcompile.c2318 enum { OP_FAST, OP_GLOBAL, OP_DEREF, OP_NAME } optype; in compiler_nameop() enumerator
2329 optype = OP_NAME; in compiler_nameop()
2413 case OP_NAME: in compiler_nameop()
/external/python/cpython3/Python/
Dcompile.c3165 enum { OP_FAST, OP_GLOBAL, OP_DEREF, OP_NAME } optype; in compiler_nameop() enumerator
3180 optype = OP_NAME; in compiler_nameop()
3259 case OP_NAME: in compiler_nameop()