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

12

/external/clang/lib/include/
H A Diso646.h39 #define xor ^ macro
/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.java44 xor(c, tmp);
52 // GCMUtil.xor(v, R);
69 // xor(v, R);
140 static void xor(byte[] block, byte[] val) method in class:GCMUtil
148 static void xor(int[] block, int[] val) method in class:GCMUtil
/external/iproute2/tc/
H A Df_flow.c37 "OPS := [ or NUM | and NUM | xor NUM | rshift NUM | addend NUM ]\n"
91 static void transfer_bitop(__u32 *mask, __u32 *xor, __u32 m, __u32 x) argument
93 *xor = x ^ (*xor & m);
138 __u32 mask = ~0U, xor = 0; local
171 transfer_bitop(&mask, &xor, tmp, 0);
178 transfer_bitop(&mask, &xor, ~tmp, tmp);
179 } else if (matches(*argv, "xor") == 0) {
182 fprintf(stderr, "Illegal \"xor\"\n");
185 transfer_bitop(&mask, &xor, ~
317 __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/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
H A DGCMBlockCipher.java159 xor(this.J0, X);
268 xor(S, X);
275 xor(tag, S);
366 xor(S, hashBytes);
381 xor(Y, X);
390 // xor(S, block);
408 private static void xor(byte[] block, byte[] val) method in class:GCMBlockCipher
/external/clang/test/Preprocessor/
H A Dcxx_oper_keyword_ms_compat.cpp93 #define xor macro
178 xor
/external/v8/benchmarks/
H A Dcrypto.js1312 BigInteger.prototype.xor = bnXor;
/external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
H A Dv8-crypto.js1304 BigInteger.prototype.xor = bnXor;
/external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
H A Dv8-crypto.js1304 BigInteger.prototype.xor = bnXor;
/external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
H A Dv8-crypto.js1304 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_amd64_toIR.c156 dis_op2_G_E (add, or, adc, sbb, and, sub, xor)
158 dis_Grp1 (add, or, adc, sbb, and, sub, xor)
1868 IROp xor = mkSizedOp(ty, Iop_Xor8); local
1907 stmt( IRStmt_Put( OFFB_CC_DEP2, widenUto64(binop(xor, mkexpr(ta2),
1927 IROp xor = mkSizedOp(ty, Iop_Xor8); local
1966 stmt( IRStmt_Put( OFFB_CC_DEP2, widenUto64(binop(xor, mkexpr(ta2),
1977 = { "add", "or", "adc", "sbb", "and", "sub", "xor", "cmp" };
11843 /* 66 0F 57 = XORPD -- G = G xor E */
16904 delta = dis_op_imm_A( 1, False, Iop_Xor8, True, delta, "xor" );
16908 delta = dis_op_imm_A( sz, False, Iop_Xor8, True, delta, "xor" );
[all...]
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)
1130 IROp xor = mkSizedOp(ty, Iop_Xor8); local
1164 stmt( IRStmt_Put( OFFB_CC_DEP2, widenUto32(binop(xor, mkexpr(ta2),
1184 IROp xor = mkSizedOp(ty, Iop_Xor8); local
1218 stmt( IRStmt_Put( OFFB_CC_DEP2, widenUto32(binop(xor, mkexpr(ta2),
1229 = { "add", "or", "adc", "sbb", "and", "sub", "xor", "cmp" };
13450 delta = dis_op_imm_A( 1, False, Iop_Xor8, True, delta, "xor" );
13453 delta = dis_op_imm_A( sz, False, Iop_Xor8, True, delta, "xor" );
13515 delta = dis_op2_E_G ( sorb, 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 ...
H A Dorg.objectweb.asm_3.2.0.v200909071300.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...

Completed in 1138 milliseconds

12