HomeSort by relevance Sort by last modified time
    Searched refs:DIVIDE (Results 1 - 25 of 41) sorted by null

1 2

  /external/proguard/src/proguard/evaluation/value/
CompositeDoubleValue.java 34 public static final byte DIVIDE = '/';
CompositeFloatValue.java 34 public static final byte DIVIDE = '/';
CompositeIntegerValue.java 34 public static final byte DIVIDE = '/';
CompositeLongValue.java 34 public static final byte DIVIDE = '/';
SpecificDoubleValue.java 80 public DoubleValue divide(DoubleValue other) method in class:SpecificDoubleValue
87 return other.divide(this);
134 public DoubleValue divide(SpecificDoubleValue other) method in class:SpecificDoubleValue
136 return new CompositeDoubleValue(this, CompositeDoubleValue.DIVIDE, other);
141 return new CompositeDoubleValue(other, CompositeDoubleValue.DIVIDE, this);
SpecificFloatValue.java 80 public FloatValue divide(FloatValue other) method in class:SpecificFloatValue
87 return other.divide(this);
134 public FloatValue divide(SpecificFloatValue other) method in class:SpecificFloatValue
136 return new CompositeFloatValue(this, CompositeFloatValue.DIVIDE, other);
141 return new CompositeFloatValue(other, CompositeFloatValue.DIVIDE, this);
SpecificLongValue.java 80 public LongValue divide(LongValue other) method in class:SpecificLongValue
89 return other.divide(this);
172 public LongValue divide(SpecificLongValue other) method in class:SpecificLongValue
175 return new CompositeLongValue(this, CompositeLongValue.DIVIDE, other);
181 return new CompositeLongValue(other, CompositeLongValue.DIVIDE, this);
SpecificIntegerValue.java 95 public IntegerValue divide(IntegerValue other) method in class:SpecificIntegerValue
104 return other.divide(this);
227 public IntegerValue divide(SpecificIntegerValue other) method in class:SpecificIntegerValue
230 return new CompositeIntegerValue(this, CompositeIntegerValue.DIVIDE, other);
236 return new CompositeIntegerValue(other, CompositeIntegerValue.DIVIDE, this);
  /external/valgrind/main/none/tests/s390x/
dfp-1.stdout.exp 14 64-bit DIVIDE
30 128-bit DIVIDE
  /external/dexmaker/src/main/java/com/google/dexmaker/
BinaryOp.java 27 * {@link #DIVIDE}, and {@link #REMAINDER}) support ints, longs, floats and
35 * For int and long operands, {@link #DIVIDE} and {@link #REMAINDER} throw
62 DIVIDE() {
  /ndk/sources/host-tools/nawk-20071023/
maketab.c 62 { DIVIDE, "arith", " / " },
awkgram.y 57 %token <i> ADD MINUS MULT DIVIDE MOD
356 | term '/' term { $$ = op2(DIVIDE, $1, $3); }
run.c 1021 case DIVIDE:
    [all...]
  /external/bluetooth/bluedroid/embdrv/sbc/decoder/include/
oi_codec_sbc_private.h 72 #ifndef DIVIDE
73 #define DIVIDE(a, b) ((a) / (b))
  /external/bluetooth/bluedroid/embdrv/sbc/decoder/srce/
bitalloc-sbc.c 151 return DIVIDE(bits, nrof_blocks);
bitalloc.c 80 return DIVIDE(8 * internal_CalculateFramelen(frame) * frame->frequency, blocksbands);
  /external/pixman/test/
utils.c 454 #define DIVIDE(c, a) \
461 DIVIDE (r, a);
462 DIVIDE (g, a);
463 DIVIDE (b, a);
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
decNumber.c 161 /* a divide (unless a floating-point or 64-bit multiply is */
193 #define DIVIDE 0x80 /* Divide operators */
218 /* Constant multipliers for divide-by-power-of five using reciprocal */
    [all...]
  /external/icu/icu4c/source/i18n/
decNumber.c 161 /* a divide (unless a floating-point or 64-bit multiply is */
194 #define DIVIDE 0x80 /* Divide operators */
233 /* Constant multipliers for divide-by-power-of five using reciprocal */
    [all...]
  /external/dexmaker/src/test/java/com/google/dexmaker/
DexMakerTest.java 742 Method divide = binaryOpMethod(int.class, int.class, BinaryOp.DIVIDE); local
743 assertEquals(18, divide.invoke(null, 75, 4));
745 divide.invoke(null, 75, 0);
790 Method divide = binaryOpMethod(long.class, long.class, BinaryOp.DIVIDE); local
841 Method divide = binaryOpMethod(float.class, float.class, BinaryOp.DIVIDE); local
860 Method divide = binaryOpMethod(double.class, double.class, BinaryOp.DIVIDE); local
    [all...]
  /external/proguard/lib/
proguard.jar 
  /prebuilts/tools/common/proguard/proguard4.7/lib/
proguard.jar 
  /external/owasp/sanitizer/lib/htmlparser-1.3/
htmlparser-1.3-with-transitions.jar 
htmlparser-1.3.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.10/
proguard-base-4.10.jar 

Completed in 643 milliseconds

1 2