Searched defs:xor (Results 1 - 25 of 35) sorted by relevance

12

/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Debpindex.asm2 xor eax, [ebp+4*ecx ] label
3 xor ebx, [ebp+4*ecx+ 4] label
4 xor esi, [ebp+4*ecx+ 8] label
5 xor edi, [ebp+4*ecx+12] label
/external/clang/lib/Headers/
H A Diso646.h39 #define xor ^ macro
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/gcm/
H A DGCMUtil.java115 xor(r1, r0);
140 xor(r1, r0);
165 xor(r1, r0);
396 static void xor(byte[] x, byte[] y) method in class:GCMUtil
409 static void xor(byte[] x, byte[] y, int yOff, int yLen) method in class:GCMUtil
417 static void xor(byte[] x, byte[] y, byte[] z) method in class:GCMUtil
430 static void xor(int[] x, int[] y) method in class:GCMUtil
438 static void xor(int[] x, int[] y, int[] z) method in class:GCMUtil
446 static void xor(long[] x, long[] y) method in class:GCMUtil
452 static void xor(lon method in class:GCMUtil
[all...]
/external/iproute2/tc/
H A Df_flow.c37 "OPS := [ or NUM | and NUM | xor NUM | rshift NUM | addend NUM ]\n"
92 static void transfer_bitop(__u32 *mask, __u32 *xor, __u32 m, __u32 x) argument
94 *xor = x ^ (*xor & m);
139 __u32 mask = ~0U, xor = 0; local
172 transfer_bitop(&mask, &xor, tmp, 0);
179 transfer_bitop(&mask, &xor, ~tmp, tmp);
180 } else if (matches(*argv, "xor") == 0) {
183 fprintf(stderr, "Illegal \"xor\"\n");
186 transfer_bitop(&mask, &xor, ~
318 __u32 xor = mask & val; local
[all...]
/external/proguard/src/proguard/evaluation/value/
H A DIntegerValue.java194 * Returns the logical <i>xor</i> of this IntegerValue and the given
197 public abstract IntegerValue xor(IntegerValue other); method in class:IntegerValue
423 * Returns the logical <i>xor</i> of this IntegerValue and the given
426 public IntegerValue xor(UnknownIntegerValue other) method in class:IntegerValue
428 return xor((IntegerValue)other);
667 * Returns the logical <i>xor</i> of this IntegerValue and the given
670 public IntegerValue xor(SpecificIntegerValue other) method in class:IntegerValue
672 return xor((IntegerValue)other);
911 * Returns the logical <i>xor</i> of this IntegerValue and the given
914 public IntegerValue xor(ParticularIntegerValu method in class:IntegerValue
[all...]
H A DLongValue.java191 * Returns the logical <i>xor</i> of this LongValue and the given
194 public LongValue xor(LongValue other) method in class:LongValue
196 return other.xor(this);
345 * Returns the logical <i>xor</i> of this LongValue and the given
348 public LongValue xor(SpecificLongValue other) method in class:LongValue
501 * Returns the logical <i>xor</i> of this LongValue and the given
504 public LongValue xor(ParticularLongValue other) method in class:LongValue
506 return xor((SpecificLongValue)other);
H A DParticularIntegerValue.java206 public IntegerValue xor(IntegerValue other) method in class:ParticularIntegerValue
208 return other.xor(this);
334 public IntegerValue xor(ParticularIntegerValue other) method in class:ParticularIntegerValue
H A DParticularLongValue.java149 public LongValue xor(LongValue other) method in class:ParticularLongValue
151 return other.xor(this);
237 public LongValue xor(ParticularLongValue other) method in class:ParticularLongValue
H A DSpecificIntegerValue.java174 public IntegerValue xor(IntegerValue other) method in class:SpecificIntegerValue
176 return other.xor(this);
310 public IntegerValue xor(SpecificIntegerValue other) method in class:SpecificIntegerValue
H A DSpecificLongValue.java129 public LongValue xor(LongValue other) method in class:SpecificLongValue
131 return other.xor(this);
225 public LongValue xor(SpecificLongValue other) method in class:SpecificLongValue
H A DUnknownIntegerValue.java176 public IntegerValue xor(IntegerValue other) method in class:UnknownIntegerValue
H A DUnknownLongValue.java130 public LongValue xor(LongValue other) method in class:UnknownLongValue
/external/chromium_org/v8/test/webkit/fast/js/kde/
H A Dmd5-1.js125 function xor(a,b) { function
186 return xor(xor(x,y),z);
190 return xor(y ,or(x , not(z)));
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
H A DGCMBlockCipher.java350 xor(S_at, S_atPre);
369 xor(S, S_at);
383 xor(tag, S);
454 xor(tmp, block);
466 xor(tmp, buf, off, len);
485 xor(Y, b);
491 xor(Y, b, off, len);
526 xor(c, tmp);
534 // xor(v, R);
559 private static void xor(byt method in class:GCMBlockCipher
567 private static void xor(byte[] block, byte[] val, int off, int len) method in class:GCMBlockCipher
[all...]
/external/clang/test/Preprocessor/
H A Dcxx_oper_keyword_ms_compat.cpp101 #define xor macro
186 xor
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
H A Dv8-crypto.js1304 BigInteger.prototype.xor = bnXor;
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
H A Dv8-crypto.js1304 BigInteger.prototype.xor = bnXor;
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
H A Dv8-crypto.js1304 BigInteger.prototype.xor = bnXor;
/external/chromium_org/v8/benchmarks/
H A Dcrypto.js1312 BigInteger.prototype.xor = bnXor;
/external/proguard/lib/
H A Dproguard.jarMETA-INF/ META-INF/MANIFEST.MF proguard/DataEntryWriterFactory.class DataEntryWriterFactory.java package proguard public ...
/external/jarjar/lib/
H A Dasm-commons-4.0.jar ... AND public static final int OR public static final int XOR public static final int EQ public static final int NE ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dasm-commons-3.3.jarMETA-INF/MANIFEST.MF org/objectweb/asm/commons/AdviceAdapter.class " package org.objectweb.asm ...
/external/valgrind/main/VEX/priv/
H A Dguest_x86_toIR.c164 dis_op2_G_E (add, or, adc, sbb, and, sub, xor)
166 dis_Grp1 (add, or, adc, sbb, and, sub, xor)
1133 IROp xor = mkSizedOp(ty, Iop_Xor8); local
1167 stmt( IRStmt_Put( OFFB_CC_DEP2, widenUto32(binop(xor, mkexpr(ta2),
1187 IROp xor = mkSizedOp(ty, Iop_Xor8); local
1221 stmt( IRStmt_Put( OFFB_CC_DEP2, widenUto32(binop(xor, mkexpr(ta2),
1232 = { "add", "or", "adc", "sbb", "and", "sub", "xor", "cmp" };
13726 delta = dis_op_imm_A( 1, False, Iop_Xor8, True, delta, "xor" );
13729 delta = dis_op_imm_A( sz, False, Iop_Xor8, True, delta, "xor" );
13791 delta = dis_op2_E_G ( sorb, False, Iop_Xor8, True, 1, delta, "xor" );
[all...]
H A Dguest_amd64_toIR.c151 dis_op2_G_E (add, or, adc, sbb, and, sub, xor)
153 dis_Grp1 (add, or, adc, sbb, and, sub, xor)
2003 IROp xor = mkSizedOp(ty, Iop_Xor8); local
2042 stmt( IRStmt_Put( OFFB_CC_DEP2, widenUto64(binop(xor, mkexpr(ta2),
2062 IROp xor = mkSizedOp(ty, Iop_Xor8); local
2101 stmt( IRStmt_Put( OFFB_CC_DEP2, widenUto64(binop(xor, mkexpr(ta2),
2112 = { "add", "or", "adc", "sbb", "and", "sub", "xor", "cmp" };
12742 /* 66 0F 57 = XORPD -- G = G xor E */
12747 /* 0F 57 = XORPS -- G = G xor E */
19550 delta = dis_op2_G_E ( vbi, pfx, False, Iop_Xor8, True, 1, delta, "xor" );
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.sat4j.core_2.2.0.v20100429.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 7355 milliseconds

12