/external/llvm/test/CodeGen/X86/ |
targetLoweringGeneric.ll | 13 ; The known set (one) bits for the arguments %xor1 are not the same, so the 30 %xor1 = xor i32 %or1, 268567040 ;0x10020200 32 store i32 %xor1, i32* %i32StarOut 34 %i32SelVal = select i1 %i1In1, i32 %i32In1, i32 %xor1
|
/external/llvm/test/Transforms/Reassociate/ |
xor_reassoc.ll | 11 define i32 @xor1(i32 %x) { 17 ;CHECK-LABEL: @xor1( 42 %xor1 = xor i32 %xor, %and 43 ret i32 %xor1 48 ;CHECK: %xor1 = xor i32 %xor, %and.ra 55 %xor1 = xor i32 %xor, %and 56 ret i32 %xor1 60 ; CHECK: %xor1 = xor i32 %xor, %and 75 %xor1 = xor i32 %xor, %and 76 ret i32 %xor1 [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/des/ |
ncbc_enc.c | 75 register DES_LONG tout0,tout1,xor0,xor1; local 114 c2l(iv,xor1); 121 tout1=tin[1]^xor1; 125 xor1=tin1; 133 tout1=tin[1]^xor1; 137 xor1=tin1; 143 l2c(xor1,iv); 146 tin0=tin1=tout0=tout1=xor0=xor1=0;
|
pcbc_enc.c | 65 register DES_LONG sin0,sin1,xor0,xor1,tout0,tout1; local 77 c2l(iv,xor1); 88 tin[1]=sin1^xor1; 93 xor1=sin1^tout1; 100 c2l(iv,xor0); c2l(iv,xor1); 109 tout1=tin[1]^xor1; 118 xor1=tout1^sin1; 122 sin0=sin1=xor0=xor1=tout0=tout1=0;
|
ede_cbcm_enc.c | 82 register DES_LONG tout0,tout1,xor0,xor1,m0,m1; local 146 c2l(iv2,xor1); 174 tout1^=xor1; 185 xor1=t1; 194 l2c(xor1,iv2); 196 tin0=tin1=tout0=tout1=xor0=xor1=0;
|
xcbc_enc.c | 118 register DES_LONG tout0,tout1,xor0,xor1; local 164 c2l(iv,xor1); 171 tout1=tin[1]^xor1^inW1; 175 xor1=tin1; 183 tout1=tin[1]^xor1^inW1; 186 xor1=tin1; 191 l2c(xor1,iv); 193 tin0=tin1=tout0=tout1=xor0=xor1=0;
|