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

1 2 3 4

  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
mpint.go 191 func (a *Mpint) Xor(b *Mpint) {
194 Fatalf("ovf in Mpint Xor")
200 a.Val.Xor(&a.Val, &b.Val)
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
mpint.go 191 func (a *Mpint) Xor(b *Mpint) {
194 Fatalf("ovf in Mpint Xor")
200 a.Val.Xor(&a.Val, &b.Val)
  /art/test/427-bitwise/src/
Main.java 173 expectEquals(6, $opt$Xor(5, 3));
174 expectEquals(0, $opt$Xor(0, 0));
175 expectEquals(3, $opt$Xor(0, 3));
176 expectEquals(3, $opt$Xor(3, 0));
177 expectEquals(-4, $opt$Xor(1, -3));
178 expectEquals(9, $opt$Xor(-12, -3));
192 expectEquals(6L, $opt$Xor(5L, 3L));
193 expectEquals(0L, $opt$Xor(0L, 0L));
194 expectEquals(3L, $opt$Xor(0L, 3L));
195 expectEquals(3L, $opt$Xor(3L, 0L))
    [all...]
  /prebuilts/go/darwin-x86/test/
64bit.go 202 func (a Uint64) Xor(b Uint64) (c Uint64) {
308 func (a Int64) Xor(b Int64) (c Int64) { return a.Uint64().Xor(b.Uint64()).Int64() }
416 "func testInt64Unary(a, plus, xor, minus int64) {\n" +
418 " if n, op, want := ^a, `^`, xor; n != want { ok=false; println(`int64`, op, a, `=`, n, `should be`, want); }\n" +
422 "func testInt64Binary(a, b, add, sub, mul, div, mod, and, or, xor, andnot int64, dodiv bool) {\n" +
432 " if n, op, want := a ^ b, `^`, xor; n != want { ok=false; println(`int64`, a, op, b, `=`, n, `should be`, want); }\n" +
461 "func testUint64Unary(a, plus, xor, minus uint64) {\n" +
463 " if n, op, want := ^a, `^`, xor; n != want { ok=false; println(`uint64`, op, a, `=`, n, `should be`, want); }\n" +
467 "func testUint64Binary(a, b, add, sub, mul, div, mod, and, or, xor, andnot uint64, dodiv bool) {\n"
    [all...]
  /prebuilts/go/linux-x86/test/
64bit.go 202 func (a Uint64) Xor(b Uint64) (c Uint64) {
308 func (a Int64) Xor(b Int64) (c Int64) { return a.Uint64().Xor(b.Uint64()).Int64() }
416 "func testInt64Unary(a, plus, xor, minus int64) {\n" +
418 " if n, op, want := ^a, `^`, xor; n != want { ok=false; println(`int64`, op, a, `=`, n, `should be`, want); }\n" +
422 "func testInt64Binary(a, b, add, sub, mul, div, mod, and, or, xor, andnot int64, dodiv bool) {\n" +
432 " if n, op, want := a ^ b, `^`, xor; n != want { ok=false; println(`int64`, a, op, b, `=`, n, `should be`, want); }\n" +
461 "func testUint64Unary(a, plus, xor, minus uint64) {\n" +
463 " if n, op, want := ^a, `^`, xor; n != want { ok=false; println(`uint64`, op, a, `=`, n, `should be`, want); }\n" +
467 "func testUint64Binary(a, b, add, sub, mul, div, mod, and, or, xor, andnot uint64, dodiv bool) {\n"
    [all...]
  /external/llvm/include/llvm/ADT/
APSInt.h 254 APSInt LLVM_ATTRIBUTE_UNUSED_RESULT Xor(const APSInt& RHS) const {
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
APSInt.h 219 APSInt Xor(const APSInt& RHS) const {
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
APSInt.h 250 APSInt Xor(const APSInt &RHS) const { return this->operator^(RHS); }
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
APSInt.h 250 APSInt Xor(const APSInt &RHS) const { return this->operator^(RHS); }
  /prebuilts/go/darwin-x86/src/math/big/
int.go 979 // Xor sets z = x ^ y and returns z.
980 func (z *Int) Xor(x, y *Int) *Int {
986 z.abs = z.abs.xor(x1, y1)
992 z.abs = z.abs.xor(x.abs, y.abs)
1004 z.abs = z.abs.add(z.abs.xor(x.abs, y1), natOne)
  /prebuilts/go/linux-x86/src/math/big/
int.go 979 // Xor sets z = x ^ y and returns z.
980 func (z *Int) Xor(x, y *Int) *Int {
986 z.abs = z.abs.xor(x1, y1)
992 z.abs = z.abs.xor(x.abs, y.abs)
1004 z.abs = z.abs.add(z.abs.xor(x.abs, y1), natOne)
  /art/test/953-invoke-polymorphic-compiler/src/
Main.java 186 private static boolean Xor(boolean lhs, boolean rhs) {
240 mh = lookup.findStatic(Main.class, "Xor",
  /external/llvm/include/llvm/MC/
MCExpr.h 408 Xor ///< Bitwise exclusive or.
498 return create(Xor, LHS, RHS, Ctx);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/
MCExpr.h 423 Xor ///< Bitwise exclusive or.
534 return create(Xor, LHS, RHS, Ctx);
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/MC/
MCExpr.h 424 Xor ///< Bitwise exclusive or.
535 return create(Xor, LHS, RHS, Ctx);
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/MC/
MCExpr.h 424 Xor ///< Bitwise exclusive or.
535 return create(Xor, LHS, RHS, Ctx);
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/MC/
MCExpr.h 424 Xor ///< Bitwise exclusive or.
535 return create(Xor, LHS, RHS, Ctx);
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/MC/
MCExpr.h 424 Xor ///< Bitwise exclusive or.
535 return create(Xor, LHS, RHS, Ctx);
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/MC/
MCExpr.h 424 Xor ///< Bitwise exclusive or.
535 return create(Xor, LHS, RHS, Ctx);
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/MC/
MCExpr.h 424 Xor ///< Bitwise exclusive or.
535 return create(Xor, LHS, RHS, Ctx);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/
MCExpr.h 423 Xor ///< Bitwise exclusive or.
534 return create(Xor, LHS, RHS, Ctx);
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/MC/
MCExpr.h 424 Xor ///< Bitwise exclusive or.
535 return create(Xor, LHS, RHS, Ctx);
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/MC/
MCExpr.h 424 Xor ///< Bitwise exclusive or.
535 return create(Xor, LHS, RHS, Ctx);
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/MC/
MCExpr.h 424 Xor ///< Bitwise exclusive or.
535 return create(Xor, LHS, RHS, Ctx);
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/MC/
MCExpr.h 424 Xor ///< Bitwise exclusive or.
535 return create(Xor, LHS, RHS, Ctx);

Completed in 711 milliseconds

1 2 3 4