/external/opencv3/modules/imgproc/src/opencl/ |
D | medianFilter.cl | 42 #define OP(a,b) { mid=a; a=min(a,b); b=max(mid,b);} 139 OP(p1, p2); OP(p4, p5); OP(p7, p8); OP(p0, p1); \ 140 OP(p3, p4); OP(p6, p7); OP(p1, p2); OP(p4, p5); \ 141 OP(p7, p8); OP(p0, p3); OP(p5, p8); OP(p4, p7); \ 142 OP(p3, p6); OP(p1, p4); OP(p2, p5); OP(p4, p7); \ 143 OP(p4, p2); OP(p6, p4); OP(p4, p2); \ 241 OP(p1, p2); OP(p0, p1); OP(p1, p2); OP(p4, p5); OP(p3, p4); 242 OP(p4, p5); OP(p0, p3); OP(p2, p5); OP(p2, p3); OP(p1, p4); 243 OP(p1, p2); OP(p3, p4); OP(p7, p8); OP(p6, p7); OP(p7, p8); 244 OP(p10, p11); OP(p9, p10); OP(p10, p11); OP(p6, p9); OP(p8, p11); [all …]
|
/external/elfutils/lib/ |
D | sha1.c | 251 #define OP(i, a, b, c, d, e) \ in sha1_process_block() macro 262 OP (0, A, B, C, D, E); in sha1_process_block() 263 OP (1, E, A, B, C, D); in sha1_process_block() 264 OP (2, D, E, A, B, C); in sha1_process_block() 265 OP (3, C, D, E, A, B); in sha1_process_block() 266 OP (4, B, C, D, E, A); in sha1_process_block() 267 OP (5, A, B, C, D, E); in sha1_process_block() 268 OP (6, E, A, B, C, D); in sha1_process_block() 269 OP (7, D, E, A, B, C); in sha1_process_block() 270 OP (8, C, D, E, A, B); in sha1_process_block() [all …]
|
D | md5.c | 321 #define OP(a, b, c, d, s, T) \ in md5_process_block() macro 342 OP (A, B, C, D, 7, 0xd76aa478); in md5_process_block() 343 OP (D, A, B, C, 12, 0xe8c7b756); in md5_process_block() 344 OP (C, D, A, B, 17, 0x242070db); in md5_process_block() 345 OP (B, C, D, A, 22, 0xc1bdceee); in md5_process_block() 346 OP (A, B, C, D, 7, 0xf57c0faf); in md5_process_block() 347 OP (D, A, B, C, 12, 0x4787c62a); in md5_process_block() 348 OP (C, D, A, B, 17, 0xa8304613); in md5_process_block() 349 OP (B, C, D, A, 22, 0xfd469501); in md5_process_block() 350 OP (A, B, C, D, 7, 0x698098d8); in md5_process_block() [all …]
|
/external/libvncserver/common/ |
D | md5.c | 335 #define OP(a, b, c, d, s, T) \ macro 356 OP (A, B, C, D, 7, 0xd76aa478); 357 OP (D, A, B, C, 12, 0xe8c7b756); 358 OP (C, D, A, B, 17, 0x242070db); 359 OP (B, C, D, A, 22, 0xc1bdceee); 360 OP (A, B, C, D, 7, 0xf57c0faf); 361 OP (D, A, B, C, 12, 0x4787c62a); 362 OP (C, D, A, B, 17, 0xa8304613); 363 OP (B, C, D, A, 22, 0xfd469501); 364 OP (A, B, C, D, 7, 0x698098d8); [all …]
|
/external/skia/src/core/ |
D | SkNx.h | 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 [all …]
|
/external/valgrind/VEX/test/ |
D | test-amd64-muldiv.h | 2 void glue(glue(test_, OP), b)(int64 op0, int64 op1) in glue() argument 11 stringify(OP)"b %b2\n\t" in glue() 17 stringify(OP) "b", s0, s1, res, flags & CC_MASK); in glue() 20 void glue(glue(test_, OP), w)(int64 op0h, int64 op0, int64 op1) in glue() argument 29 stringify(OP) "w %w3\n\t" in glue() 35 stringify(OP) "w", op0h, op0, s1, resh, res, flags & CC_MASK); in glue() 38 void glue(glue(test_, OP), l)(int64 op0h, int64 op0, int64 op1) in glue() argument 47 stringify(OP) "l %3\n\t" in glue() 53 stringify(OP) "l", op0h, op0, s1, resh, res, flags & CC_MASK); in glue() 56 void glue(glue(test_, OP), q)(int64 op0h, int64 op0, int64 op1) in glue() argument [all …]
|
D | test-amd64.h | 2 #define exec_op glue(exec_, OP) 3 #define exec_opq glue(glue(exec_, OP), q) 4 #define exec_opl glue(glue(exec_, OP), l) 5 #define exec_opw glue(glue(exec_, OP), w) 6 #define exec_opb glue(glue(exec_, OP), b) 11 stringify(OP) size " %" size "2, %" size "0\n\t" \ 20 stringify(OP) size " %" size "0\n\t" \ 34 stringify(OP) "q", s0, res, iflags, flags & CC_MASK); in exec_opq() 43 stringify(OP) "l", s0, res, iflags, flags & CC_MASK); in exec_opl() 52 stringify(OP) "w", s0, res, iflags, flags & CC_MASK); in exec_opw() [all …]
|
D | test-i386-muldiv.h | 2 void glue(glue(test_, OP), b)(int op0, int op1) in glue() argument 11 stringify(OP)"b %b2\n\t" in glue() 17 stringify(OP) "b", s0, s1, res, flags & CC_MASK); in glue() 20 void glue(glue(test_, OP), w)(int op0h, int op0, int op1) in glue() argument 29 stringify(OP) "w %w3\n\t" in glue() 35 stringify(OP) "w", op0h, op0, s1, resh, res, flags & CC_MASK); in glue() 38 void glue(glue(test_, OP), l)(int op0h, int op0, int op1) in glue() argument 47 stringify(OP) "l %3\n\t" in glue() 53 stringify(OP) "l", op0h, op0, s1, resh, res, flags & CC_MASK); in glue() 56 #undef OP
|
D | test-amd64-shift.h | 2 #define exec_op glue(exec_, OP) 3 #define exec_opq glue(glue(exec_, OP), q) 4 #define exec_opl glue(glue(exec_, OP), l) 5 #define exec_opw glue(glue(exec_, OP), w) 6 #define exec_opb glue(glue(exec_, OP), b) 14 stringify(OP) size " %" size "2, %" size "0\n\t" \ 23 stringify(OP) size " %%cl, %" size "0\n\t" \ 40 stringify(OP) "q", s0, s1, res, iflags, flags & CC_MASK); in exec_opq() 53 stringify(OP) "l", s0, s1, res, iflags, flags & CC_MASK); in exec_opl() 66 stringify(OP) "w", s0, s1, res, iflags, flags & CC_MASK); in exec_opw() [all …]
|
D | test-i386-shift.h | 2 #define exec_op glue(exec_, OP) 3 #define exec_opl glue(glue(exec_, OP), l) 4 #define exec_opw glue(glue(exec_, OP), w) 5 #define exec_opb glue(glue(exec_, OP), b) 13 stringify(OP) size " %" size "2, %" size "0\n\t" \ 22 stringify(OP) size " %%cl, %" size "0\n\t" \ 39 stringify(OP) "l", s0, s1, res, iflags, flags & CC_MASK); in exec_opl() 52 stringify(OP) "w", s0, s1, res, iflags, flags & CC_MASK); in exec_opw() 59 stringify(OP) size " %%cl, %" size "5, %" size "0\n\t" \ 75 stringify(OP) "l", s0, s2, s1, res, iflags, flags & CC_MASK); in exec_opl() [all …]
|
D | test-i386.h | 4 #define exec_op glue(exec_, OP) 5 #define exec_opl glue(glue(exec_, OP), l) 6 #define exec_opw glue(glue(exec_, OP), w) 7 #define exec_opb glue(glue(exec_, OP), b) 12 stringify(OP) size " %" size "2, %" size "0\n\t" \ 21 stringify(OP) size " %" size "0\n\t" \ 36 stringify(OP) "l", s0, res, iflags, flags & CC_MASK); in exec_opl() 50 stringify(OP) "w", s0, res, iflags, flags & CC_MASK); in exec_opw() 64 stringify(OP) "b", s0, res, iflags, flags & CC_MASK); in exec_opb() 79 stringify(OP) "l", s0, s1, res, iflags, flags & CC_MASK); in exec_opl() [all …]
|
D | test-amd64.c | 69 #define OP add macro 72 #define OP sub macro 75 #define OP xor macro 78 #define OP and macro 81 #define OP or macro 84 #define OP cmp macro 87 #define OP adc macro 91 #define OP sbb macro 95 #define OP inc macro 100 #define OP dec macro [all …]
|
D | test-i386.c | 59 #define OP add macro 62 #define OP sub macro 65 #define OP xor macro 68 #define OP and macro 71 #define OP or macro 74 #define OP cmp macro 77 #define OP adc macro 81 #define OP sbb macro 85 #define OP inc macro 90 #define OP dec macro [all …]
|
/external/llvm/test/Transforms/InstCombine/ |
D | fold-fops-into-selects.ll | 18 ; CHECK: [[OP:%.*]] = fadd float %B, 2.000000e+00 19 ; CHECK: select i1 %A, float 3.000000e+00, float [[OP]] 28 ; CHECK: [[OP:%.*]] = fsub float 2.000000e+00, %B 29 ; CHECK: select i1 %A, float 1.000000e+00, float [[OP]] 38 ; CHECK: [[OP:%.*]] = fmul float %B, 2.000000e+00 39 ; CHECK: select i1 %A, float 2.000000e+00, float [[OP]] 48 ; CHECK: [[OP:%.*]] = fdiv float 2.000000e+00, %B 49 ; CHECK: select i1 %A, float 2.000000e+00, float [[OP]] 58 ; CHECK: [[OP:%.*]] = fmul float %B, 5.000000e-01 59 ; CHECK: select i1 %A, float 5.000000e-01, float [[OP]] [all …]
|
/external/eigen/unsupported/Eigen/src/Eigenvalues/ |
D | ArpackSelfAdjointEigenSolver.h | 34 template<typename MatrixSolver, typename MatrixType, typename Scalar, bool BisSPD> struct OP; 472 MatrixSolver OP; in compute() local 476 OP.compute(B); in compute() 482 OP.compute(A); in compute() 494 OP.compute(AminusSigmaB); in compute() 499 OP.compute(AminusSigmaB); in compute() 504 if (!(mode == 1 && isBempty) && !(mode == 2 && isBempty) && OP.info() != Success) in compute() 541 internal::OP<MatrixSolver, MatrixType, Scalar, BisSPD>::applyOP(OP, A, n, in, out); in compute() 551 Matrix<Scalar, Dynamic, 1>::Map(out, n) = OP.solve(Matrix<Scalar, Dynamic, 1>::Map(in, n)); in compute() 559 … Matrix<Scalar, Dynamic, 1>::Map(out, n) = OP.solve(Matrix<Scalar, Dynamic, 1>::Map(in, n)); in compute() [all …]
|
/external/v8/src/base/ |
D | safe_math.h | 198 #define BASE_NUMERIC_ARITHMETIC_OPERATORS(NAME, OP, COMPOUND_OP) \ argument 201 CheckedNumeric<typename ArithmeticPromotion<T>::type> operator OP( \ 206 return CheckedNumeric<T>(lhs.ValueUnsafe() OP rhs.ValueUnsafe()); \ 209 lhs.ValueUnsafe() OP rhs.ValueUnsafe(), \ 223 *this = CheckedNumeric<T>::cast(*this) OP CheckedNumeric<Src>::cast(rhs); \ 228 CheckedNumeric<typename ArithmeticPromotion<T, Src>::type> operator OP( \ 233 lhs.ValueUnsafe() OP rhs.ValueUnsafe(), \ 236 OP CheckedNumeric<Promotion>::cast(rhs); \ 240 CheckedNumeric<typename ArithmeticPromotion<T, Src>::type> operator OP( \ 244 return CheckedNumeric<Promotion>(lhs.ValueUnsafe() OP rhs, \ [all …]
|
/external/pdfium/third_party/base/numerics/ |
D | safe_math.h | 194 #define BASE_NUMERIC_ARITHMETIC_OPERATORS(NAME, OP, COMPOUND_OP) \ argument 197 CheckedNumeric<typename ArithmeticPromotion<T>::type> operator OP( \ 202 return CheckedNumeric<T>(lhs.ValueUnsafe() OP rhs.ValueUnsafe()); \ 205 lhs.ValueUnsafe() OP rhs.ValueUnsafe(), \ 219 *this = CheckedNumeric<T>::cast(*this) OP CheckedNumeric<Src>::cast(rhs); \ 224 CheckedNumeric<typename ArithmeticPromotion<T, Src>::type> operator OP( \ 229 lhs.ValueUnsafe() OP rhs.ValueUnsafe(), \ 232 OP CheckedNumeric<Promotion>::cast(rhs); \ 236 CheckedNumeric<typename ArithmeticPromotion<T, Src>::type> operator OP( \ 240 return CheckedNumeric<Promotion>(lhs.ValueUnsafe() OP rhs, \ [all …]
|
/external/libweave/third_party/chromium/base/numerics/ |
D | safe_math.h | 220 #define BASE_NUMERIC_ARITHMETIC_OPERATORS(NAME, OP, COMPOUND_OP) \ 223 CheckedNumeric<typename ArithmeticPromotion<T>::type> operator OP( \ 228 return CheckedNumeric<T>(lhs.ValueUnsafe() OP rhs.ValueUnsafe()); \ 231 lhs.ValueUnsafe() OP rhs.ValueUnsafe(), \ 247 OP CheckedNumeric<typename UnderlyingType<Src>::type>::cast(rhs); \ 252 CheckedNumeric<typename ArithmeticPromotion<T, Src>::type> operator OP( \ 257 lhs.ValueUnsafe() OP rhs.ValueUnsafe(), \ 260 OP CheckedNumeric<Promotion>::cast(rhs); \ 264 CheckedNumeric<typename ArithmeticPromotion<T, Src>::type> operator OP( \ 268 return CheckedNumeric<Promotion>(lhs.ValueUnsafe() OP rhs, \ [all …]
|
/external/libchrome/base/numerics/ |
D | safe_math.h | 220 #define BASE_NUMERIC_ARITHMETIC_OPERATORS(NAME, OP, COMPOUND_OP) \ 223 CheckedNumeric<typename ArithmeticPromotion<T>::type> operator OP( \ 228 return CheckedNumeric<T>(lhs.ValueUnsafe() OP rhs.ValueUnsafe()); \ 231 lhs.ValueUnsafe() OP rhs.ValueUnsafe(), \ 247 OP CheckedNumeric<typename UnderlyingType<Src>::type>::cast(rhs); \ 252 CheckedNumeric<typename ArithmeticPromotion<T, Src>::type> operator OP( \ 257 lhs.ValueUnsafe() OP rhs.ValueUnsafe(), \ 260 OP CheckedNumeric<Promotion>::cast(rhs); \ 264 CheckedNumeric<typename ArithmeticPromotion<T, Src>::type> operator OP( \ 268 return CheckedNumeric<Promotion>(lhs.ValueUnsafe() OP rhs, \ [all …]
|
/external/eigen/Eigen/src/plugins/ |
D | ArrayCwiseBinaryOps.h | 74 #define EIGEN_MAKE_CWISE_COMP_OP(OP, COMPARATOR) \ argument 77 OP(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other) const \ 84 OP(const Scalar& s) const { \ 85 return this->OP(Derived::PlainObject::Constant(rows(), cols(), s)); \ 88 OP(const Scalar& s, const Derived& d) { \ 89 return Derived::PlainObject::Constant(d.rows(), d.cols(), s).OP(d); \ 92 #define EIGEN_MAKE_CWISE_COMP_R_OP(OP, R_OP, RCOMPARATOR) \ argument 95 OP(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other) const \ 101 OP(const Scalar& s) const { \ 105 OP(const Scalar& s, const Derived& d) { \
|
/external/clang/test/SemaCXX/ |
D | warn-self-assign.cpp | 20 #define OP = in false_positives() macro 25 a OP a; in false_positives() 28 LHS OP RHS; in false_positives() 29 #undef OP in false_positives()
|
/external/eigen/test/ |
D | exceptions.cpp | 80 #define CHECK_MEMLEAK(OP) { \ argument 84 try { OP; } \ 87 …Y(ScalarWithExceptions::instances==before && "memory leak detected in " && EIGEN_MAKESTRING(OP)); \ 89 VERIFY(exception_thrown && " no exception thrown in " && EIGEN_MAKESTRING(OP)); \ 107 …ScalarWithExceptions::instances==0 && "global memory leak detected in " && EIGEN_MAKESTRING(OP)); \ in memoryleak()
|
/external/compiler-rt/test/ubsan/TestCases/Integer/ |
D | shift.cpp | 31 a OP 1; in main() 37 a OP (-3); in main() local 43 a OP 32; in main()
|
/external/icu/icu4c/source/data/brkitr/ |
D | line.txt | 90 $OP = [:LineBreak = Open_Punctuation:]; 142 $OPcm = $OP $CM*; 177 $OP $CM+; 203 $AL_FOLLOW_CM = [$CL $CP $EX $HL $IS $SY $WJ $GL $OP $QU $BA $HY $NS $IN $NU $ALPlus]; 295 # LB 14 Do not break after OP, even after spaces 436 $CM+ $OP; 454 … $SP+ $CM* ([^$OP $CM $SP] | [$AL {eof}])); # if LB 14 will match, need to surpress this break. 455 # LB14 says OP SP* x . 456 # becomes OP SP* x AL 457 # becomes OP SP* x CM+ AL_FOLLOW [all …]
|
D | line_fi.txt | 93 $OP = [:LineBreak = Open_Punctuation:]; 146 $OPcm = $OP $CM*; 182 $OP $CM+; 208 $AL_FOLLOW_CM = [$CL $CP $EX $HL $IS $SY $WJ $GL $OP $QU $BA $HH $HY $NS $IN $NU $ALPlus]; 300 # LB 14 Do not break after OP, even after spaces 445 $CM+ $OP; 463 … $SP+ $CM* ([^$OP $CM $SP] | [$AL {eof}])); # if LB 14 will match, need to surpress this break. 464 # LB14 says OP SP* x . 465 # becomes OP SP* x AL 466 # becomes OP SP* x CM+ AL_FOLLOW [all …]
|