Searched defs:xor (Results 1 - 25 of 31) 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/clang/lib/include/
H A Diso646.h39 #define xor ^ macro
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/gcm/
H A DGCMUtil.java53 xor(c, tmp);
61 // GCMUtil.xor(v, R);
78 // xor(v, R);
221 static void xor(byte[] block, byte[] val) method in class:GCMUtil
229 static void xor(byte[] block, byte[] val, int off, int len) method in class:GCMUtil
237 static void xor(byte[] block, byte[] val, byte[] output) method in class:GCMUtil
245 static void xor(int[] block, int[] val) method in class:GCMUtil
253 static void xor(int[] block, int[] val, int[] output) method in class:GCMUtil
/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.cpp93 #define xor macro
178 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/v8/benchmarks/
H A Dcrypto.js1312 BigInteger.prototype.xor = bnXor;
/external/proguard/lib/
H A Dproguard.jar ... AND public static final byte OR public static final byte XOR private final proguard.evaluation.value.IntegerValue integerValue1 ...
/external/valgrind/main/VEX/priv/
H A Dguest_x86_toIR.c167 dis_op2_G_E (add, or, adc, sbb, and, sub, xor)
169 dis_Grp1 (add, or, adc, sbb, and, sub, xor)
1131 IROp xor = mkSizedOp(ty, Iop_Xor8); local
1165 stmt( IRStmt_Put( OFFB_CC_DEP2, widenUto32(binop(xor, mkexpr(ta2),
1185 IROp xor = mkSizedOp(ty, Iop_Xor8); local
1219 stmt( IRStmt_Put( OFFB_CC_DEP2, widenUto32(binop(xor, mkexpr(ta2),
1230 = { "add", "or", "adc", "sbb", "and", "sub", "xor", "cmp" };
13542 delta = dis_op_imm_A( 1, False, Iop_Xor8, True, delta, "xor" );
13545 delta = dis_op_imm_A( sz, False, Iop_Xor8, True, delta, "xor" );
13607 delta = dis_op2_E_G ( sorb, False, Iop_Xor8, True, 1, delta, "xor" );
[all...]
H A Dguest_amd64_toIR.c156 dis_op2_G_E (add, or, adc, sbb, and, sub, xor)
158 dis_Grp1 (add, or, adc, sbb, and, sub, xor)
1965 IROp xor = mkSizedOp(ty, Iop_Xor8); local
2004 stmt( IRStmt_Put( OFFB_CC_DEP2, widenUto64(binop(xor, mkexpr(ta2),
2024 IROp xor = mkSizedOp(ty, Iop_Xor8); local
2063 stmt( IRStmt_Put( OFFB_CC_DEP2, widenUto64(binop(xor, mkexpr(ta2),
2074 = { "add", "or", "adc", "sbb", "and", "sub", "xor", "cmp" };
12130 /* 66 0F 57 = XORPD -- G = G xor E */
12135 /* 0F 57 = XORPS -- G = G xor E */
18238 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 1698 milliseconds

12