/external/libjpeg-turbo/ |
D | jidctint.c | 154 #define MULTIPLY(var, const) MULTIPLY16C16(var, const) macro 156 #define MULTIPLY(var, const) ((var) * (const)) 235 z1 = MULTIPLY(z2 + z3, FIX_0_541196100); 236 tmp2 = z1 + MULTIPLY(z3, -FIX_1_847759065); 237 tmp3 = z1 + MULTIPLY(z2, FIX_0_765366865); 263 z5 = MULTIPLY(z3 + z4, FIX_1_175875602); /* sqrt(2) * c3 */ 265 tmp0 = MULTIPLY(tmp0, FIX_0_298631336); /* sqrt(2) * (-c1+c3+c5-c7) */ 266 tmp1 = MULTIPLY(tmp1, FIX_2_053119869); /* sqrt(2) * ( c1+c3-c5+c7) */ 267 tmp2 = MULTIPLY(tmp2, FIX_3_072711026); /* sqrt(2) * ( c1+c3+c5-c7) */ 268 tmp3 = MULTIPLY(tmp3, FIX_1_501321110); /* sqrt(2) * ( c1+c3-c5-c7) */ [all …]
|
D | jfdctint.c | 132 #define MULTIPLY(var, const) MULTIPLY16C16(var, const) macro 134 #define MULTIPLY(var, const) ((var) * (const)) 179 z1 = MULTIPLY(tmp12 + tmp13, FIX_0_541196100); 180 dataptr[2] = (DCTELEM)DESCALE(z1 + MULTIPLY(tmp13, FIX_0_765366865), 182 dataptr[6] = (DCTELEM)DESCALE(z1 + MULTIPLY(tmp12, -FIX_1_847759065), 194 z5 = MULTIPLY(z3 + z4, FIX_1_175875602); /* sqrt(2) * c3 */ 196 tmp4 = MULTIPLY(tmp4, FIX_0_298631336); /* sqrt(2) * (-c1+c3+c5-c7) */ 197 tmp5 = MULTIPLY(tmp5, FIX_2_053119869); /* sqrt(2) * ( c1+c3-c5+c7) */ 198 tmp6 = MULTIPLY(tmp6, FIX_3_072711026); /* sqrt(2) * ( c1+c3+c5-c7) */ 199 tmp7 = MULTIPLY(tmp7, FIX_1_501321110); /* sqrt(2) * ( c1+c3-c5-c7) */ [all …]
|
D | jidctred.c | 101 #define MULTIPLY(var, const) MULTIPLY16C16(var, const) macro 103 #define MULTIPLY(var, const) ((var) * (const)) 168 tmp2 = MULTIPLY(z2, FIX_1_847759065) + MULTIPLY(z3, -FIX_0_765366865); 180 tmp0 = MULTIPLY(z1, -FIX_0_211164243) + /* sqrt(2) * ( c3-c1) */ 181 MULTIPLY(z2, FIX_1_451774981) + /* sqrt(2) * ( c3+c7) */ 182 MULTIPLY(z3, -FIX_2_172734803) + /* sqrt(2) * (-c1-c5) */ 183 MULTIPLY(z4, FIX_1_061594337); /* sqrt(2) * ( c5+c7) */ 185 tmp2 = MULTIPLY(z1, -FIX_0_509795579) + /* sqrt(2) * (c7-c5) */ 186 MULTIPLY(z2, -FIX_0_601344887) + /* sqrt(2) * (c5-c1) */ 187 MULTIPLY(z3, FIX_0_899976223) + /* sqrt(2) * (c3-c7) */ [all …]
|
D | jfdctfst.c | 109 #define MULTIPLY(var, const) ((DCTELEM)DESCALE((var) * (const), CONST_BITS)) macro 149 z1 = MULTIPLY(tmp12 + tmp13, FIX_0_707106781); /* c4 */ 160 z5 = MULTIPLY(tmp10 - tmp12, FIX_0_382683433); /* c6 */ 161 z2 = MULTIPLY(tmp10, FIX_0_541196100) + z5; /* c2-c6 */ 162 z4 = MULTIPLY(tmp12, FIX_1_306562965) + z5; /* c2+c6 */ 163 z3 = MULTIPLY(tmp11, FIX_0_707106781); /* c4 */ 199 z1 = MULTIPLY(tmp12 + tmp13, FIX_0_707106781); /* c4 */ 210 z5 = MULTIPLY(tmp10 - tmp12, FIX_0_382683433); /* c6 */ 211 z2 = MULTIPLY(tmp10, FIX_0_541196100) + z5; /* c2-c6 */ 212 z4 = MULTIPLY(tmp12, FIX_1_306562965) + z5; /* c2+c6 */ [all …]
|
D | jidctfst.c | 122 #define MULTIPLY(var, const) ((DCTELEM)DESCALE((var) * (const), CONST_BITS)) macro 236 tmp12 = MULTIPLY(tmp1 - tmp3, FIX_1_414213562) - tmp13; /* 2*c4 */ 256 tmp11 = MULTIPLY(z11 - z13, FIX_1_414213562); /* 2*c4 */ 258 z5 = MULTIPLY(z10 + z12, FIX_1_847759065); /* 2*c2 */ 259 tmp10 = MULTIPLY(z12, FIX_1_082392200) - z5; /* 2*(c2-c6) */ 260 tmp12 = MULTIPLY(z10, -FIX_2_613125930) + z5; /* -2*(c2+c6) */ 323 MULTIPLY((DCTELEM)wsptr[2] - (DCTELEM)wsptr[6], FIX_1_414213562) - tmp13; 338 tmp11 = MULTIPLY(z11 - z13, FIX_1_414213562); /* 2*c4 */ 340 z5 = MULTIPLY(z10 + z12, FIX_1_847759065); /* 2*c2 */ 341 tmp10 = MULTIPLY(z12, FIX_1_082392200) - z5; /* 2*(c2-c6) */ [all …]
|
/external/libjpeg-turbo/simd/powerpc/ |
D | jquanti-altivec.c | 106 #define MULTIPLY(vs0, vs1, out) { \ macro 198 MULTIPLY(row0, recip0, row0); in jsimd_quantize_altivec() 199 MULTIPLY(row1, recip1, row1); in jsimd_quantize_altivec() 200 MULTIPLY(row2, recip2, row2); in jsimd_quantize_altivec() 201 MULTIPLY(row3, recip3, row3); in jsimd_quantize_altivec() 202 MULTIPLY(row4, recip4, row4); in jsimd_quantize_altivec() 203 MULTIPLY(row5, recip5, row5); in jsimd_quantize_altivec() 204 MULTIPLY(row6, recip6, row6); in jsimd_quantize_altivec() 205 MULTIPLY(row7, recip7, row7); in jsimd_quantize_altivec() 216 MULTIPLY(row0, scale0, row0); in jsimd_quantize_altivec() [all …]
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/expr/ |
D | BinaryExpr.java | 66 MULTIPLY("*"), enumConstant 98 case MULTIPLY: in toAssignOperator() 99 return Optional.of(AssignExpr.Operator.MULTIPLY); in toAssignOperator()
|
D | AssignExpr.java | 55 MULTIPLY("*="), enumConstant 81 case MULTIPLY: in toBinaryOperator() 82 return Optional.of(BinaryExpr.Operator.MULTIPLY); in toBinaryOperator()
|
/external/boringssl/src/ssl/test/runner/poly1305/ |
D | sum_vmsl_s390x.s | 101 #define MULTIPLY(m02_0, m02_1, m02_2, m13_0, m13_1, m13_2, r_0, r_1, r_2, r5_1, r5_2, m4_0, m4_1, m… macro 453 …MULTIPLY(H0_0, H1_0, H2_0, H0_1, H1_1, H2_1, R_0, R_1, R_2, R5_1, R5_2, M0, M1, M2, M3, M4, T_10, … 514 …MULTIPLY(H0_0, H1_0, H2_0, H0_1, H1_1, H2_1, R_0, R_1, R_2, R5_1, R5_2, M0, M1, M2, M3, M4, M5, T_… 612 …MULTIPLY(H0_0, H1_0, H2_0, H0_1, H1_1, H2_1, R_0, R_1, R_2, R5_1, R5_2, M0, M1, M4, M5, M2, T_10, … 660 …MULTIPLY(H0_0, H1_0, H2_0, H0_1, H1_1, H2_1, R_0, R_1, R_2, R5_1, R5_2, M0, M1, M2, M3, M4, M5, T_… 688 …MULTIPLY(H0_0, H1_0, H2_0, H0_1, H1_1, H2_1, R_0, R_1, R_2, R5_1, R5_2, M0, M3, M4, M5, V0, T_10, … 713 …MULTIPLY(H0_0, H1_0, H2_0, H0_1, H1_1, H2_1, R_0, R_1, R_2, R5_1, R5_2, M0, M1, M2, M3, M4, M5, T_… 755 …MULTIPLY(H0_0, H1_0, H2_0, H0_1, H1_1, H2_1, R_0, R_1, R_2, R5_1, R5_2, M0, M1, M2, M3, M4, M5, T_… 799 …MULTIPLY(H0_0, H1_0, H2_0, H0_1, H1_1, H2_1, R_0, R_1, R_2, R5_1, R5_2, M2, M3, M4, M5, T_10, M0, … 841 …MULTIPLY(H0_0, H1_0, H2_0, H0_1, H1_1, H2_1, R_0, R_1, R_2, R5_1, R5_2, M0, M1, M2, M3, M4, M5, T_… [all …]
|
D | sum_s390x.s | 81 #define MULTIPLY(f0, f1, f2, f3, f4, g0, g1, g2, g3, g4, g51, g52, g53, g54, h0, h1, h2, h3, h4) \ macro 224 …MULTIPLY(R_0, R_1, R_2, R_3, R_4, R_0, R_1, R_2, R_3, R_4, R5SAVE_1, R5SAVE_2, R5SAVE_3, R5SAVE_4,… 260 …MULTIPLY(F_0, F_1, F_2, F_3, F_4, R_0, R_1, R_2, R_3, R_4, R5_1, R5_2, R5_3, R5_4, H_0, H_1, H_2, …
|
/external/proguard/src/proguard/evaluation/value/ |
D | CompositeDoubleValue.java | 33 public static final byte MULTIPLY = '*'; field in CompositeDoubleValue
|
D | CompositeFloatValue.java | 33 public static final byte MULTIPLY = '*'; field in CompositeFloatValue
|
D | CompositeIntegerValue.java | 33 public static final byte MULTIPLY = '*'; field in CompositeIntegerValue
|
D | CompositeLongValue.java | 33 public static final byte MULTIPLY = '*'; field in CompositeLongValue
|
D | SpecificFloatValue.java | 131 return new CompositeFloatValue(this, CompositeFloatValue.MULTIPLY, other); in multiply()
|
D | SpecificDoubleValue.java | 131 return new CompositeDoubleValue(this, CompositeDoubleValue.MULTIPLY, other); in multiply()
|
D | SpecificLongValue.java | 169 return new CompositeLongValue(this, CompositeLongValue.MULTIPLY, other); in multiply()
|
D | SpecificIntegerValue.java | 224 return new CompositeIntegerValue(this, CompositeIntegerValue.MULTIPLY, other); in multiply()
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/ |
D | BinaryFunction.java | 54 public static final BinaryFunction MULTIPLY = new BinaryFunction() { field in BinaryFunction
|
/external/deqp/external/openglcts/modules/common/ |
D | glcExtTokens.cpp | 141 MULTIPLY = GL_MULTIPLY; in init() 267 MULTIPLY = GL_MULTIPLY_KHR; in init()
|
D | glcExtTokens.hpp | 143 glw::GLenum MULTIPLY; member
|
/external/dexmaker/dexmaker/src/main/java/com/android/dx/ |
D | BinaryOp.java | 57 MULTIPLY() { in MULTIPLY() enumConstant
|
/external/libjpeg-turbo/simd/arm/ |
D | jsimd_neon.S | 126 q6 = MULTIPLY(q5, FIX_1_175875602_MINUS_1_961570560) + \ 127 MULTIPLY(q4, FIX_1_175875602); \ 128 q7 = MULTIPLY(q5, FIX_1_175875602) + \ 129 MULTIPLY(q4, FIX_1_175875602_MINUS_0_390180644); \ 130 q2 = MULTIPLY(row2, FIX_0_541196100) + \ 131 MULTIPLY(row6, FIX_0_541196100_MINUS_1_847759065); \ 134 q6 += MULTIPLY(row5, -FIX_2_562915447) + \ 135 MULTIPLY(row3, FIX_3_072711026_MINUS_2_562915447); \ 138 q4 += MULTIPLY(row7, FIX_0_298631336_MINUS_0_899976223) + \ 139 MULTIPLY(row1, -FIX_0_899976223); \ [all …]
|
/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/ |
D | DexMakerTest.java | 858 Method multiply = binaryOpMethod(int.class, int.class, BinaryOp.MULTIPLY); in testIntBinaryOps() 907 Method multiply = binaryOpMethod(long.class, long.class, BinaryOp.MULTIPLY); in testLongBinaryOps() 959 Method multiply = binaryOpMethod(float.class, float.class, BinaryOp.MULTIPLY); in testFloatBinaryOps() 979 Method multiply = binaryOpMethod(double.class, double.class, BinaryOp.MULTIPLY); in testDoubleBinaryOps() 1327 code.op(BinaryOp.MULTIPLY, localResult, localResult, local2); in testForLoop() 1369 code.op(BinaryOp.MULTIPLY, localResult, localResult, local2); in testWhileLoop()
|
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/ |
D | TypeExtractor.java | 118 case MULTIPLY: in visit()
|