/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/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/proguard/src/proguard/evaluation/value/ |
D | CompositeFloatValue.java | 33 public static final byte MULTIPLY = '*'; field in CompositeFloatValue
|
D | CompositeDoubleValue.java | 33 public static final byte MULTIPLY = '*'; field in CompositeDoubleValue
|
D | CompositeLongValue.java | 33 public static final byte MULTIPLY = '*'; field in CompositeLongValue
|
D | CompositeIntegerValue.java | 33 public static final byte MULTIPLY = '*'; field in CompositeIntegerValue
|
D | SpecificDoubleValue.java | 131 return new CompositeDoubleValue(this, CompositeDoubleValue.MULTIPLY, other); in multiply()
|
D | SpecificFloatValue.java | 131 return new CompositeFloatValue(this, CompositeFloatValue.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/dexmaker/dexmaker/src/main/java/com/android/dx/ |
D | BinaryOp.java | 57 MULTIPLY() { in MULTIPLY() method
|
/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/igt-gpu-tools/assembler/ |
D | lex.l | 192 "*" { return MULTIPLY;}
|
/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/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
D | AbstractRealVector.java | 580 return mapToSelf(BinaryFunction.MULTIPLY.fix1stArgument(d)); in mapMultiplyToSelf()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/src/java-symbol-solver-core/com/github/javaparser/symbolsolver/javaparsermodel/ |
D | TypeExtractor.java | 114 case MULTIPLY: in visit()
|
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/ |
D | TypeExtractor.java | 107 case MULTIPLY: in visit()
|
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/util/ |
D | UberColorPickerDialog.java | 325 mValDimmer.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.MULTIPLY)); in ColorPickerView()
|