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

1 2 3 4 5 6

  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/
BinaryFunction.java 54 public static final BinaryFunction MULTIPLY = new BinaryFunction() {
  /external/dexmaker/dexmaker/src/main/java/com/android/dx/
BinaryOp.java 26 * <p>Math operations ({@link #ADD}, {@link #SUBTRACT}, {@link #MULTIPLY},
57 MULTIPLY() {
  /external/proguard/src/proguard/evaluation/value/
CompositeDoubleValue.java 33 public static final byte MULTIPLY = '*';
CompositeFloatValue.java 33 public static final byte MULTIPLY = '*';
CompositeIntegerValue.java 33 public static final byte MULTIPLY = '*';
CompositeLongValue.java 33 public static final byte MULTIPLY = '*';
  /packages/apps/Settings/src/com/android/settings/
RestrictedCheckBox.java 65 PorterDuff.Mode.MULTIPLY);
RestrictedRadioButton.java 72 PorterDuff.Mode.MULTIPLY);
  /frameworks/base/graphics/java/android/graphics/
PorterDuff.java 154 * <figcaption>{@link #MULTIPLY Multiply}</figcaption>
325 MULTIPLY (13),
397 case 13: return Mode.MULTIPLY;
  /packages/apps/Messaging/src/com/android/messaging/util/
SwitchCompatUtils.java 47 PorterDuff.Mode.MULTIPLY));
  /external/libjpeg-turbo/
jfdctfst.c 105 /* Multiply a DCTELEM variable by an JLONG constant, and immediately
109 #define MULTIPLY(var,const) ((DCTELEM) DESCALE((var) * (const), CONST_BITS))
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 *
    [all...]
jfdctint.c 60 * a problem to do in integer arithmetic. We multiply all the constants
124 /* Multiply an JLONG variable by an JLONG constant to yield an JLONG result.
127 * 16x16->32 bit multiply can be used instead of a full 32x32 multiply.
132 #define MULTIPLY(var,const) MULTIPLY16C16(var,const)
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 *
    [all...]
jidctfst.c 118 /* Multiply a DCTELEM variable by an JLONG constant, and immediately
122 #define MULTIPLY(var,const) ((DCTELEM) DESCALE((var) * (const), CONST_BITS))
128 * declared JLONG, so a 32-bit multiply will be used.
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) */
322 tmp12 = MULTIPLY((DCTELEM) wsptr[2] - (DCTELEM) wsptr[6], FIX_1_414213562)
338 tmp11 = MULTIPLY(z11 - z13, FIX_1_414213562); /* 2*c4 *
    [all...]
jidctred.c 93 /* Multiply a JLONG variable by a JLONG constant to yield a JLONG result.
96 * 16x16->32 bit multiply can be used instead of a full 32x32 multiply.
101 #define MULTIPLY(var,const) MULTIPLY16C16(var,const)
103 #define MULTIPLY(var,const) ((var) * (const))
109 * are 16 bits or less, so either int or short multiply will work.
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) *
    [all...]
jidctint.c 82 * a problem to do in integer arithmetic. We multiply all the constants
146 /* Multiply an JLONG variable by an JLONG constant to yield an JLONG result.
149 * 16x16->32 bit multiply can be used instead of a full 32x32 multiply.
154 #define MULTIPLY(var,const) MULTIPLY16C16(var,const)
156 #define MULTIPLY(var,const) ((var) * (const))
162 * are 16 bits or less, so either int or short multiply will work.
235 z1 = MULTIPLY(z2 + z3, FIX_0_541196100);
236 tmp2 = z1 + MULTIPLY(z3, - FIX_1_847759065);
237 tmp3 = z1 + MULTIPLY(z2, FIX_0_765366865)
    [all...]
  /frameworks/layoutlib/bridge/src/android/graphics/
BlendComposite.java 40 MULTIPLY(),
236 case MULTIPLY:
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/expr/
AssignExpr.java 55 MULTIPLY("*="),
81 case MULTIPLY:
82 return Optional.of(BinaryExpr.Operator.MULTIPLY);
BinaryExpr.java 66 MULTIPLY("*"),
98 case MULTIPLY:
99 return Optional.of(AssignExpr.Operator.MULTIPLY);
  /packages/apps/Contacts/src/com/android/contacts/interactions/
CallLogInteraction.java 135 PorterDuff.Mode.MULTIPLY);
140 PorterDuff.Mode.MULTIPLY);
145 PorterDuff.Mode.MULTIPLY);
  /external/libjpeg-turbo/simd/
jquanti-altivec.c 104 /* There is no AltiVec 16-bit unsigned multiply instruction, hence this.
107 #define MULTIPLY(vs0, vs1, out) { \
200 MULTIPLY(row0, recip0, row0);
201 MULTIPLY(row1, recip1, row1);
202 MULTIPLY(row2, recip2, row2);
203 MULTIPLY(row3, recip3, row3);
204 MULTIPLY(row4, recip4, row4);
205 MULTIPLY(row5, recip5, row5);
206 MULTIPLY(row6, recip6, row6);
207 MULTIPLY(row7, recip7, row7)
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/calllogutils/
CallTypeIconsView.java 275 incoming.setColorFilter(r.getColor(R.color.answered_call), PorterDuff.Mode.MULTIPLY);
281 outgoing.setColorFilter(r.getColor(R.color.answered_call), PorterDuff.Mode.MULTIPLY);
288 missed.setColorFilter(r.getColor(R.color.missed_call), PorterDuff.Mode.MULTIPLY);
293 voicemail.setColorFilter(r.getColor(R.color.icon_color_grey), PorterDuff.Mode.MULTIPLY);
298 blocked.setColorFilter(r.getColor(R.color.blocked_call), PorterDuff.Mode.MULTIPLY);
303 videoCall.setColorFilter(r.getColor(R.color.icon_color_grey), PorterDuff.Mode.MULTIPLY);
308 hdCall.setColorFilter(r.getColor(R.color.icon_color_grey), PorterDuff.Mode.MULTIPLY);
313 wifiCall.setColorFilter(r.getColor(R.color.icon_color_grey), PorterDuff.Mode.MULTIPLY);
319 r.getColor(R.color.icon_color_grey), PorterDuff.Mode.MULTIPLY);
  /external/deqp/external/openglcts/modules/common/
glcExtTokens.hpp 143 glw::GLenum MULTIPLY;
  /prebuilts/tools/common/m2/repository/com/linkedin/dexmaker/dexmaker/2.2.0/
dexmaker-2.2.0.jar 
  /external/proguard/lib/
proguard.jar 
  /prebuilts/tools/common/m2/repository/org/seleniumhq/selenium/selenium-api/2.42.2/
selenium-api-2.42.2.jar 

Completed in 321 milliseconds

1 2 3 4 5 6