Searched refs:MULTIPLY (Results 1 - 11 of 11) sorted by relevance

/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djfdctint.c133 #define MULTIPLY(var,const) MULTIPLY16C16(var,const) macro
135 #define MULTIPLY(var,const) ((var) * (const))
180 z1 = MULTIPLY(tmp12 + tmp13, FIX_0_541196100);
181 dataptr[2] = (DCTELEM) DESCALE(z1 + MULTIPLY(tmp13, FIX_0_765366865),
183 dataptr[6] = (DCTELEM) DESCALE(z1 + MULTIPLY(tmp12, - FIX_1_847759065),
195 z5 = MULTIPLY(z3 + z4, FIX_1_175875602); /* sqrt(2) * c3 */
197 tmp4 = MULTIPLY(tmp4, FIX_0_298631336); /* sqrt(2) * (-c1+c3+c5-c7) */
198 tmp5 = MULTIPLY(tmp5, FIX_2_053119869); /* sqrt(2) * ( c1+c3-c5+c7) */
199 tmp6 = MULTIPLY(tmp6, FIX_3_072711026); /* sqrt(2) * ( c1+c3+c5-c7) */
200 tmp7 = MULTIPLY(tmp
[all...]
H A Djidctred.c102 #define MULTIPLY(var,const) MULTIPLY16C16(var,const) macro
104 #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(z
[all...]
H A Djidctint.c133 #define MULTIPLY(var,const) MULTIPLY16C16(var,const) macro
135 #define MULTIPLY(var,const) ((var) * (const))
213 z1 = MULTIPLY(z2 + z3, FIX_0_541196100);
214 tmp2 = z1 + MULTIPLY(z3, - FIX_1_847759065);
215 tmp3 = z1 + MULTIPLY(z2, FIX_0_765366865);
241 z5 = MULTIPLY(z3 + z4, FIX_1_175875602); /* sqrt(2) * c3 */
243 tmp0 = MULTIPLY(tmp0, FIX_0_298631336); /* sqrt(2) * (-c1+c3+c5-c7) */
244 tmp1 = MULTIPLY(tmp1, FIX_2_053119869); /* sqrt(2) * ( c1+c3-c5+c7) */
245 tmp2 = MULTIPLY(tmp2, FIX_3_072711026); /* sqrt(2) * ( c1+c3+c5-c7) */
246 tmp3 = MULTIPLY(tmp
[all...]
H A Djfdctfst.c110 #define MULTIPLY(var,const) ((DCTELEM) DESCALE((var) * (const), CONST_BITS)) macro
150 z1 = MULTIPLY(tmp12 + tmp13, FIX_0_707106781); /* c4 */
161 z5 = MULTIPLY(tmp10 - tmp12, FIX_0_382683433); /* c6 */
162 z2 = MULTIPLY(tmp10, FIX_0_541196100) + z5; /* c2-c6 */
163 z4 = MULTIPLY(tmp12, FIX_1_306562965) + z5; /* c2+c6 */
164 z3 = MULTIPLY(tmp11, FIX_0_707106781); /* c4 */
200 z1 = MULTIPLY(tmp12 + tmp13, FIX_0_707106781); /* c4 */
211 z5 = MULTIPLY(tmp10 - tmp12, FIX_0_382683433); /* c6 */
212 z2 = MULTIPLY(tmp10, FIX_0_541196100) + z5; /* c2-c6 */
213 z4 = MULTIPLY(tmp1
[all...]
H A Djidctfst.c123 #define MULTIPLY(var,const) ((DCTELEM) DESCALE((var) * (const), CONST_BITS)) macro
237 tmp12 = MULTIPLY(tmp1 - tmp3, FIX_1_414213562) - tmp13; /* 2*c4 */
257 tmp11 = MULTIPLY(z11 - z13, FIX_1_414213562); /* 2*c4 */
259 z5 = MULTIPLY(z10 + z12, FIX_1_847759065); /* 2*c2 */
260 tmp10 = MULTIPLY(z12, FIX_1_082392200) - z5; /* 2*(c2-c6) */
261 tmp12 = MULTIPLY(z10, - FIX_2_613125930) + z5; /* -2*(c2+c6) */
323 tmp12 = MULTIPLY((DCTELEM) wsptr[2] - (DCTELEM) wsptr[6], FIX_1_414213562)
339 tmp11 = MULTIPLY(z11 - z13, FIX_1_414213562); /* 2*c4 */
341 z5 = MULTIPLY(z10 + z12, FIX_1_847759065); /* 2*c2 */
342 tmp10 = MULTIPLY(z1
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jstat/
H A DOperator.java77 public static final Operator MULTIPLY = new Operator("*") { field in class:Operator
H A DParser.java379 op = Operator.MULTIPLY;
/openjdk7/langtools/test/tools/javac/tree/
H A DTreeKindTest.java51 case MULTIPLY:
/openjdk7/langtools/src/share/classes/com/sun/source/tree/
H A DTree.java311 MULTIPLY(BinaryTree.class), enum constant in enum:Tree.Kind
/openjdk7/langtools/test/tools/javac/api/
H A DTestOperators.java91 @TestMe(MULTIPLY)
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DTreeInfo.java824 return Tree.Kind.MULTIPLY;

Completed in 83 milliseconds