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

1 2 3

  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Div.java 19 * $Id: Div.java 468655 2006-10-28 07:12:06Z minchau $
28 * The 'div' operation expression executer.
30 public class Div extends Operation
  /external/jacoco/org.jacoco.examples/build/src/main/java/org/jacoco/examples/expressions/
Div.java 14 public class Div implements IExpression {
20 public Div(final IExpression l, final IExpression r) {
  /external/llvm/unittests/Transforms/Utils/
IntegerDivision.cpp 41 Value *Div = Builder.CreateSDiv(A, B);
44 Value *Ret = Builder.CreateRet(Div);
46 expandDivision(cast<BinaryOperator>(Div));
71 Value *Div = Builder.CreateUDiv(A, B);
74 Value *Ret = Builder.CreateRet(Div);
76 expandDivision(cast<BinaryOperator>(Div));
162 Value *Div = Builder.CreateSDiv(A, B);
165 Value *Ret = Builder.CreateRet(Div);
167 expandDivision(cast<BinaryOperator>(Div));
192 Value *Div = Builder.CreateUDiv(A, B)
    [all...]
  /art/test/417-optimizing-arith-div/src/
Main.java 77 $opt$Div(value, 0);
90 $opt$Div(value, 0L);
102 div(); method
105 public static void div() { method in class:Main
114 expectEquals(2, $opt$Div(6, 3));
115 expectEquals(6, $opt$Div(6, 1));
116 expectEquals(-2, $opt$Div(6, -3));
117 expectEquals(1, $opt$Div(4, 3));
118 expectEquals(-1, $opt$Div(4, -3));
119 expectEquals(5, $opt$Div(23, 4))
    [all...]
  /prebuilts/go/darwin-x86/misc/cgo/gmp/
gmp.go 257 // Div sets z = x / y, rounding toward zero, and returns z.
258 func (z *Int) Div(x, y *Int) *Int {
  /prebuilts/go/darwin-x86/src/image/
geom.go 37 // Div returns the vector p/k.
38 func (p Point) Div(k int) Point {
  /prebuilts/go/linux-x86/misc/cgo/gmp/
gmp.go 257 // Div sets z = x / y, rounding toward zero, and returns z.
258 func (z *Int) Div(x, y *Int) *Int {
  /prebuilts/go/linux-x86/src/image/
geom.go 37 // Div returns the vector p/k.
38 func (p Point) Div(k int) Point {
  /external/r8/src/main/java/com/android/tools/r8/ir/code/
Div.java 18 public class Div extends ArithmeticBinop {
20 public Div(NumericType type, Value dest, Value left, Value right) {
30 public Div asDiv() {
  /prebuilts/go/darwin-x86/src/net/rpc/jsonrpc/
all_test.go 46 func (t *Arith) Div(args *Args, reply *Reply) error {
176 err = client.Call("Arith.Div", args, reply)
179 t.Error("Div: expected error")
181 t.Error("Div: expected divide by zero error; got", err)
  /prebuilts/go/linux-x86/src/net/rpc/jsonrpc/
all_test.go 46 func (t *Arith) Div(args *Args, reply *Reply) error {
176 err = client.Call("Arith.Div", args, reply)
179 t.Error("Div: expected error")
181 t.Error("Div: expected divide by zero error; got", err)
  /prebuilts/go/darwin-x86/src/math/big/
int.go 200 z.abs, _ = z.abs.div(nil, x.abs, y.abs)
209 _, z.abs = nat(nil).div(z.abs, x.abs, y.abs)
227 z.abs, r.abs = z.abs.div(r.abs, x.abs, y.abs)
232 // Div sets z to the quotient x/y for y != 0 and returns z.
234 // Div implements Euclidean division (unlike Go); see DivMod for more details.
235 func (z *Int) Div(x, y *Int) *Int {
269 // DivMod sets z to the quotient x div y and m to the modulus x mod y
275 // q = x div y such that
279 // div and mod''. ACM Transactions on Programming Languages and
  /prebuilts/go/linux-x86/src/math/big/
int.go 200 z.abs, _ = z.abs.div(nil, x.abs, y.abs)
209 _, z.abs = nat(nil).div(z.abs, x.abs, y.abs)
227 z.abs, r.abs = z.abs.div(r.abs, x.abs, y.abs)
232 // Div sets z to the quotient x/y for y != 0 and returns z.
234 // Div implements Euclidean division (unlike Go); see DivMod for more details.
235 func (z *Int) Div(x, y *Int) *Int {
269 // DivMod sets z to the quotient x div y and m to the modulus x mod y
275 // q = x div y such that
279 // div and mod''. ACM Transactions on Programming Languages and
  /external/llvm/include/llvm/MC/
MCExpr.h 388 Div, ///< Signed division.
434 return create(Div, LHS, RHS, Ctx);
  /external/swiftshader/third_party/LLVM/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp 657 SDNode *Div = CurDAG->getMachineNode(TargetOpcode::EXTRACT_SUBREG,
663 ReplaceUses(SDValue(Node, 0), SDValue(Div, 0));
742 SDNode *Div = CurDAG->getMachineNode(TargetOpcode::EXTRACT_SUBREG,
747 ReplaceUses(SDValue(Node, 0), SDValue(Div, 0));
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/MC/
MCExpr.h 403 Div, ///< Signed division.
454 return create(Div, LHS, RHS, Ctx);
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/MC/
MCExpr.h 403 Div, ///< Signed division.
454 return create(Div, LHS, RHS, Ctx);
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/MC/
MCExpr.h 403 Div, ///< Signed division.
454 return create(Div, LHS, RHS, Ctx);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/
MCExpr.h 403 Div, ///< Signed division.
454 return create(Div, LHS, RHS, Ctx);
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/MC/
MCExpr.h 403 Div, ///< Signed division.
454 return create(Div, LHS, RHS, Ctx);
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/MC/
MCExpr.h 403 Div, ///< Signed division.
454 return create(Div, LHS, RHS, Ctx);
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/MC/
MCExpr.h 403 Div, ///< Signed division.
454 return create(Div, LHS, RHS, Ctx);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/
MCExpr.h 403 Div, ///< Signed division.
454 return create(Div, LHS, RHS, Ctx);
  /prebuilts/go/darwin-x86/src/net/rpc/
server_test.go 55 func (t *Arith) Div(args Args, reply *Reply) error {
216 err = client.Call("Arith.Div", args, reply)
219 t.Error("Div: expected error")
221 t.Error("Div: expected divide by zero error; got", err)
  /prebuilts/go/linux-x86/src/net/rpc/
server_test.go 55 func (t *Arith) Div(args Args, reply *Reply) error {
216 err = client.Call("Arith.Div", args, reply)
219 t.Error("Div: expected error")
221 t.Error("Div: expected divide by zero error; got", err)

Completed in 436 milliseconds

1 2 3