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

1 2 3 4 5

  /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/libxkbcommon/xkbcommon/src/xkbcomp/
parser.h 85 DIVIDE = 43,
151 #define DIVIDE 43
parser.y 127 DIVIDE 43
156 %left TIMES DIVIDE
632 Expr : Expr DIVIDE Expr
scanner.c 143 if (chr(s, '/')) return DIVIDE;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/
BinaryFunction.java 63 public static final BinaryFunction DIVIDE = new BinaryFunction() {
  /external/valgrind/none/tests/s390x/
dfp-1.stdout.exp 14 64-bit DIVIDE
30 128-bit DIVIDE
  /external/dexmaker/dexmaker/src/main/java/com/android/dx/
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
65 DIVIDE() {
  /external/turbine/java/com/google/turbine/tree/
TurbineOperatorKind.java 33 DIVIDE("/", Precedence.MULTIPLICATIVE),
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/expr/
AssignExpr.java 56 DIVIDE("/="),
83 case DIVIDE:
84 return Optional.of(BinaryExpr.Operator.DIVIDE);
BinaryExpr.java 67 DIVIDE("/"),
100 case DIVIDE:
101 return Optional.of(AssignExpr.Operator.DIVIDE);
  /external/one-true-awk/
maketab.c 62 { DIVIDE, "arith", " / " },
awkgram.y 57 %token <i> ADD MINUS MULT DIVIDE MOD
356 | term '/' term { $$ = op2(DIVIDE, $1, $3); }
  /system/bt/embdrv/sbc/decoder/include/
oi_codec_sbc_private.h 81 #ifndef DIVIDE
82 #define DIVIDE(a, b) ((a) / (b))
  /system/bt/embdrv/sbc/decoder/srce/
bitalloc-sbc.c 149 return DIVIDE(bits, nrof_blocks);
bitalloc.c 82 return DIVIDE(8 * internal_CalculateFramelen(frame) * frame->frequency,
  /system/tools/hidl/docs/src/lexer/
Token.kt 91 DIVIDE("/", TokenCategory.Op),
  /external/pdfium/xfa/fxfa/fm2js/
cxfa_fmsimpleexpression.h 31 DIVIDE,
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/s390x/
asmz.go     [all...]

Completed in 470 milliseconds

1 2 3 4 5