Lines Matching refs:OP
46 #define OP(op) SkNx operator op(const SkNx& o) const { return {fLo op o.fLo, fHi op o.fHi}; } macro
47 OP(+) OP(-) OP(*) OP(/)
48 OP(&) OP(|) OP(^)
49 OP(==) OP(!=) OP(<) OP(>) OP(<=) OP(>=)
50 #undef OP
52 #define OP(op) SkNx op() const { return {fLo.op(), fHi.op()}; } macro
53 OP(abs) OP(floor)
54 OP(sqrt) OP(rsqrt0) OP(rsqrt1) OP(rsqrt2)
55 OP(invert) OP(approxInvert)
56 #undef OP
106 #define OP(op) SkNx operator op(const SkNx& o) const { return fVal op o.fVal; } macro
107 OP(+) OP(-) OP(*) OP(/)
108 OP(&) OP(|) OP(^)
109 OP(==) OP(!=) OP(<) OP(>) OP(<=) OP(>=)
110 #undef OP