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

1 2

  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
mpint.go 189 func (a *Mpint) Xor(b *Mpint) {
192 yyerror("ovf in Mpint Xor")
198 a.Val.Xor(&a.Val, &b.Val)
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
mpint.go 189 func (a *Mpint) Xor(b *Mpint) {
192 yyerror("ovf in Mpint Xor")
198 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/go/darwin-x86/src/math/big/
int.go 886 // Xor sets z = x ^ y and returns z.
887 func (z *Int) Xor(x, y *Int) *Int {
893 z.abs = z.abs.xor(x1, y1)
899 z.abs = z.abs.xor(x.abs, y.abs)
911 z.abs = z.abs.add(z.abs.xor(x.abs, y1), natOne)
  /prebuilts/go/linux-x86/src/math/big/
int.go 886 // Xor sets z = x ^ y and returns z.
887 func (z *Int) Xor(x, y *Int) *Int {
893 z.abs = z.abs.xor(x1, y1)
899 z.abs = z.abs.xor(x.abs, y.abs)
911 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);
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCExpr.h 306 Xor ///< Bitwise exclusive or.
392 return Create(Xor, LHS, RHS, Ctx);
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/syntax/
tokens.go 196 Xor // ^
232 Xor: "^",
  /prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/
tokens.go 196 Xor // ^
232 Xor: "^",
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusimpl.h     [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 178 | Xor
253 | Xor
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 106 Op != Instruction::Xor)
140 else //if (Op == Instruction::Xor)
160 case Instruction::Xor:
192 // Adding a one to a single bit bit-field should be turned into an XOR
208 // the XOR is to toggle the bit. If it is clear, then the ADD has
214 // Pull the XOR out of the AND.
390 case Instruction::Xor:
    [all...]
InstCombineCompares.cpp     [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/
Instructions.h 580 Xor,
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombineCompares.cpp     [all...]
  /external/v8/src/mips64/
macro-assembler-mips64.cc 528 // Xor original key with a seed.
1044 void MacroAssembler::Xor(Register rd, Register rs, const Operand& rt) {
    [all...]
  /external/llvm/include/llvm/IR/
Instructions.h 698 Xor,
    [all...]
  /external/v8/src/mips/
macro-assembler-mips.cc 511 // Xor original key with a seed.
910 void MacroAssembler::Xor(Register rd, Register rs, const Operand& rt) {
    [all...]
  /art/compiler/utils/mips/
assembler_mips.cc 519 void MipsAssembler::Xor(Register rd, Register rs, Register rt) {
    [all...]
  /art/compiler/utils/mips64/
assembler_mips64.cc 391 void Mips64Assembler::Xor(GpuRegister rd, GpuRegister rs, GpuRegister rt) {
    [all...]

Completed in 937 milliseconds

1 2