HomeSort by relevance Sort by last modified time
    Searched defs:MULTIPLY (Results 1 - 20 of 20) sorted by null

  /external/dexmaker/src/main/java/com/google/dexmaker/
BinaryOp.java 26 * <p>Math operations ({@link #ADD}, {@link #SUBTRACT}, {@link #MULTIPLY},
55 MULTIPLY() {
  /external/jpeg/
mips_jidctfst.c 117 /* Multiply a DCTELEM variable by an INT32 constant, and immediately
121 #define MULTIPLY(var,const) ((DCTELEM) DESCALE((var) * (const), CONST_BITS))
127 * declared INT32, so a 32-bit multiply will be used.
jfdctfst.c 102 /* Multiply a DCTELEM variable by an INT32 constant, and immediately
106 #define MULTIPLY(var,const) ((DCTELEM) DESCALE((var) * (const), CONST_BITS))
146 z1 = MULTIPLY(tmp12 + tmp13, FIX_0_707106781); /* c4 */
157 z5 = MULTIPLY(tmp10 - tmp12, FIX_0_382683433); /* c6 */
158 z2 = MULTIPLY(tmp10, FIX_0_541196100) + z5; /* c2-c6 */
159 z4 = MULTIPLY(tmp12, FIX_1_306562965) + z5; /* c2+c6 */
160 z3 = MULTIPLY(tmp11, FIX_0_707106781); /* c4 */
196 z1 = MULTIPLY(tmp12 + tmp13, FIX_0_707106781); /* c4 */
207 z5 = MULTIPLY(tmp10 - tmp12, FIX_0_382683433); /* c6 */
208 z2 = MULTIPLY(tmp10, FIX_0_541196100) + z5; /* c2-c6 *
    [all...]
jfdctint.c 57 * a problem to do in integer arithmetic. We multiply all the constants
121 /* Multiply an INT32 variable by an INT32 constant to yield an INT32 result.
124 * 16x16->32 bit multiply can be used instead of a full 32x32 multiply.
129 #define MULTIPLY(var,const) MULTIPLY16C16(var,const)
131 #define MULTIPLY(var,const) ((var) * (const))
176 z1 = MULTIPLY(tmp12 + tmp13, FIX_0_541196100);
177 dataptr[2] = (DCTELEM) DESCALE(z1 + MULTIPLY(tmp13, FIX_0_765366865),
179 dataptr[6] = (DCTELEM) DESCALE(z1 + MULTIPLY(tmp12, - FIX_1_847759065),
191 z5 = MULTIPLY(z3 + z4, FIX_1_175875602); /* sqrt(2) * c3 *
    [all...]
jidctfst.c 115 /* Multiply a DCTELEM variable by an INT32 constant, and immediately
119 #define MULTIPLY(var,const) ((DCTELEM) DESCALE((var) * (const), CONST_BITS))
125 * declared INT32, so a 32-bit multiply will be used.
233 tmp12 = MULTIPLY(tmp1 - tmp3, FIX_1_414213562) - tmp13; /* 2*c4 */
253 tmp11 = MULTIPLY(z11 - z13, FIX_1_414213562); /* 2*c4 */
255 z5 = MULTIPLY(z10 + z12, FIX_1_847759065); /* 2*c2 */
256 tmp10 = MULTIPLY(z12, FIX_1_082392200) - z5; /* 2*(c2-c6) */
257 tmp12 = MULTIPLY(z10, - FIX_2_613125930) + z5; /* -2*(c2+c6) */
319 tmp12 = MULTIPLY((DCTELEM) wsptr[2] - (DCTELEM) wsptr[6], FIX_1_414213562)
335 tmp11 = MULTIPLY(z11 - z13, FIX_1_414213562); /* 2*c4 *
    [all...]
jidctint.c 57 * a problem to do in integer arithmetic. We multiply all the constants
121 /* Multiply an INT32 variable by an INT32 constant to yield an INT32 result.
124 * 16x16->32 bit multiply can be used instead of a full 32x32 multiply.
129 #define MULTIPLY(var,const) MULTIPLY16C16(var,const)
131 #define MULTIPLY(var,const) ((var) * (const))
137 * are 16 bits or less, so either int or short multiply will work.
209 z1 = MULTIPLY(z2 + z3, FIX_0_541196100);
210 tmp2 = z1 + MULTIPLY(z3, - FIX_1_847759065);
211 tmp3 = z1 + MULTIPLY(z2, FIX_0_765366865)
    [all...]
jidctred.c 90 /* Multiply an INT32 variable by an INT32 constant to yield an INT32 result.
93 * 16x16->32 bit multiply can be used instead of a full 32x32 multiply.
98 #define MULTIPLY(var,const) MULTIPLY16C16(var,const)
100 #define MULTIPLY(var,const) ((var) * (const))
106 * are 16 bits or less, so either int or short multiply will work.
164 tmp2 = MULTIPLY(z2, FIX_1_847759065) + MULTIPLY(z3, - FIX_0_765366865);
176 tmp0 = MULTIPLY(z1, - FIX_0_211164243) /* sqrt(2) * (c3-c1) */
177 + MULTIPLY(z2, FIX_1_451774981) /* sqrt(2) * (c3+c7) *
    [all...]
  /external/chromium_org/third_party/libjpeg_turbo/
jfdctfst.c 102 /* Multiply a DCTELEM variable by an INT32 constant, and immediately
106 #define MULTIPLY(var,const) ((DCTELEM) DESCALE((var) * (const), CONST_BITS))
146 z1 = MULTIPLY(tmp12 + tmp13, FIX_0_707106781); /* c4 */
157 z5 = MULTIPLY(tmp10 - tmp12, FIX_0_382683433); /* c6 */
158 z2 = MULTIPLY(tmp10, FIX_0_541196100) + z5; /* c2-c6 */
159 z4 = MULTIPLY(tmp12, FIX_1_306562965) + z5; /* c2+c6 */
160 z3 = MULTIPLY(tmp11, FIX_0_707106781); /* c4 */
196 z1 = MULTIPLY(tmp12 + tmp13, FIX_0_707106781); /* c4 */
207 z5 = MULTIPLY(tmp10 - tmp12, FIX_0_382683433); /* c6 */
208 z2 = MULTIPLY(tmp10, FIX_0_541196100) + z5; /* c2-c6 *
    [all...]
jfdctint.c 57 * a problem to do in integer arithmetic. We multiply all the constants
121 /* Multiply an INT32 variable by an INT32 constant to yield an INT32 result.
124 * 16x16->32 bit multiply can be used instead of a full 32x32 multiply.
129 #define MULTIPLY(var,const) MULTIPLY16C16(var,const)
131 #define MULTIPLY(var,const) ((var) * (const))
176 z1 = MULTIPLY(tmp12 + tmp13, FIX_0_541196100);
177 dataptr[2] = (DCTELEM) DESCALE(z1 + MULTIPLY(tmp13, FIX_0_765366865),
179 dataptr[6] = (DCTELEM) DESCALE(z1 + MULTIPLY(tmp12, - FIX_1_847759065),
191 z5 = MULTIPLY(z3 + z4, FIX_1_175875602); /* sqrt(2) * c3 *
    [all...]
jidctfst.c 115 /* Multiply a DCTELEM variable by an INT32 constant, and immediately
119 #define MULTIPLY(var,const) ((DCTELEM) DESCALE((var) * (const), CONST_BITS))
125 * declared INT32, so a 32-bit multiply will be used.
233 tmp12 = MULTIPLY(tmp1 - tmp3, FIX_1_414213562) - tmp13; /* 2*c4 */
253 tmp11 = MULTIPLY(z11 - z13, FIX_1_414213562); /* 2*c4 */
255 z5 = MULTIPLY(z10 + z12, FIX_1_847759065); /* 2*c2 */
256 tmp10 = MULTIPLY(z12, FIX_1_082392200) - z5; /* 2*(c2-c6) */
257 tmp12 = MULTIPLY(z10, - FIX_2_613125930) + z5; /* -2*(c2+c6) */
319 tmp12 = MULTIPLY((DCTELEM) wsptr[2] - (DCTELEM) wsptr[6], FIX_1_414213562)
335 tmp11 = MULTIPLY(z11 - z13, FIX_1_414213562); /* 2*c4 *
    [all...]
jidctred.c 90 /* Multiply an INT32 variable by an INT32 constant to yield an INT32 result.
93 * 16x16->32 bit multiply can be used instead of a full 32x32 multiply.
98 #define MULTIPLY(var,const) MULTIPLY16C16(var,const)
100 #define MULTIPLY(var,const) ((var) * (const))
106 * are 16 bits or less, so either int or short multiply will work.
164 tmp2 = MULTIPLY(z2, FIX_1_847759065) + MULTIPLY(z3, - FIX_0_765366865);
176 tmp0 = MULTIPLY(z1, - FIX_0_211164243) /* sqrt(2) * (c3-c1) */
177 + MULTIPLY(z2, FIX_1_451774981) /* sqrt(2) * (c3+c7) *
    [all...]
jidctint.c 79 * a problem to do in integer arithmetic. We multiply all the constants
143 /* Multiply an INT32 variable by an INT32 constant to yield an INT32 result.
146 * 16x16->32 bit multiply can be used instead of a full 32x32 multiply.
151 #define MULTIPLY(var,const) MULTIPLY16C16(var,const)
153 #define MULTIPLY(var,const) ((var) * (const))
159 * are 16 bits or less, so either int or short multiply will work.
231 z1 = MULTIPLY(z2 + z3, FIX_0_541196100);
232 tmp2 = z1 + MULTIPLY(z3, - FIX_1_847759065);
233 tmp3 = z1 + MULTIPLY(z2, FIX_0_765366865)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.el_1.0.0.v201004212143.jar 
org.apache.jasper_5.5.17.v201004212143.jar 
org.eclipse.jdt.core_3.6.2.v_A76_R36x.jar 
  /external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
FlexAntTasks.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant.jar 
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 
  /external/jarjar/lib/
apache-ant-1.9.4.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
ant.jar 

Completed in 619 milliseconds