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

1 2

  /external/llvm/lib/MC/
SubtargetFeature.cpp 33 char Ch = Feature[0];
35 return Ch == '+' || Ch =='-';
49 char Ch = Feature[0];
51 return Ch == '+';
  /external/wpa_supplicant_8/src/crypto/
sha256-internal.c 68 #define Ch(x,y,z) (z ^ (x & (y ^ z)))
104 t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i]; \
  /external/clang/lib/AST/
TemplateBase.cpp 44 const char Ch = Val.getZExtValue();
45 Out << ((Ch == '\'') ? "'\\" : "'");
46 Out.write_escaped(StringRef(&Ch, 1), /*UseHexEscapes=*/ true);
  /external/fio/crc/
sha256.c 28 static inline uint32_t Ch(uint32_t x, uint32_t y, uint32_t z)
86 t1 = h + e1(e) + Ch(e,f,g) + 0x428a2f98 + W[ 0];
88 t1 = g + e1(d) + Ch(d,e,f) + 0x71374491 + W[ 1];
90 t1 = f + e1(c) + Ch(c,d,e) + 0xb5c0fbcf + W[ 2];
92 t1 = e + e1(b) + Ch(b,c,d) + 0xe9b5dba5 + W[ 3];
94 t1 = d + e1(a) + Ch(a,b,c) + 0x3956c25b + W[ 4];
96 t1 = c + e1(h) + Ch(h,a,b) + 0x59f111f1 + W[ 5];
98 t1 = b + e1(g) + Ch(g,h,a) + 0x923f82a4 + W[ 6];
100 t1 = a + e1(f) + Ch(f,g,h) + 0xab1c5ed5 + W[ 7];
103 t1 = h + e1(e) + Ch(e,f,g) + 0xd807aa98 + W[ 8]
    [all...]
sha512.c 25 static inline uint64_t Ch(uint64_t x, uint64_t y, uint64_t z)
124 t1 = h + e1(e) + Ch(e,f,g) + sha512_K[i ] + W[i ];
126 t1 = g + e1(d) + Ch(d,e,f) + sha512_K[i+1] + W[i+1];
128 t1 = f + e1(c) + Ch(c,d,e) + sha512_K[i+2] + W[i+2];
130 t1 = e + e1(b) + Ch(b,c,d) + sha512_K[i+3] + W[i+3];
132 t1 = d + e1(a) + Ch(a,b,c) + sha512_K[i+4] + W[i+4];
134 t1 = c + e1(h) + Ch(h,a,b) + sha512_K[i+5] + W[i+5];
136 t1 = b + e1(g) + Ch(g,h,a) + sha512_K[i+6] + W[i+6];
138 t1 = a + e1(f) + Ch(f,g,h) + sha512_K[i+7] + W[i+7];
  /external/lzma/C/
Sha256.c 33 #define Ch(x,y,z) (z^(x&(y^z)))
48 #define R(a,b,c,d,e,f,g,h, i) h += S1(e) + Ch(e,f,g) + K[i+j] + (j?blk2(i):blk0(i));\
63 #define R(i) h(i) += S1(e(i)) + Ch(e(i),f(i),g(i)) + K[i+j] + (j?blk2(i):blk0(i));\
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
LongDigest.java 235 h += Sum1(e) + Ch(e, f, g) + K[t] + W[t++];
240 g += Sum1(d) + Ch(d, e, f) + K[t] + W[t++];
245 f += Sum1(c) + Ch(c, d, e) + K[t] + W[t++];
250 e += Sum1(b) + Ch(b, c, d) + K[t] + W[t++];
255 d += Sum1(a) + Ch(a, b, c) + K[t] + W[t++];
260 c += Sum1(h) + Ch(h, a, b) + K[t] + W[t++];
265 b += Sum1(g) + Ch(g, h, a) + K[t] + W[t++];
270 a += Sum1(f) + Ch(f, g, h) + K[t] + W[t++];
295 private long Ch(
SHA224Digest.java 177 h += Sum1(e) + Ch(e, f, g) + K[t] + X[t];
183 g += Sum1(d) + Ch(d, e, f) + K[t] + X[t];
189 f += Sum1(c) + Ch(c, d, e) + K[t] + X[t];
195 e += Sum1(b) + Ch(b, c, d) + K[t] + X[t];
201 d += Sum1(a) + Ch(a, b, c) + K[t] + X[t];
207 c += Sum1(h) + Ch(h, a, b) + K[t] + X[t];
213 b += Sum1(g) + Ch(g, h, a) + K[t] + X[t];
219 a += Sum1(f) + Ch(f, g, h) + K[t] + X[t];
245 private int Ch(
SHA256Digest.java 179 h += Sum1(e) + Ch(e, f, g) + K[t] + X[t];
185 g += Sum1(d) + Ch(d, e, f) + K[t] + X[t];
191 f += Sum1(c) + Ch(c, d, e) + K[t] + X[t];
197 e += Sum1(b) + Ch(b, c, d) + K[t] + X[t];
203 d += Sum1(a) + Ch(a, b, c) + K[t] + X[t];
209 c += Sum1(h) + Ch(h, a, b) + K[t] + X[t];
215 b += Sum1(g) + Ch(g, h, a) + K[t] + X[t];
221 a += Sum1(f) + Ch(f, g, h) + K[t] + X[t];
247 private int Ch(
  /external/chromium_org/third_party/boringssl/src/crypto/sha/
sha256.c 211 #define Ch(x, y, z) (((x) & (y)) ^ ((~(x)) & (z)))
216 T1 += h + Sigma1(e) + Ch(e, f, g) + K256[i]; \
sha512.c 424 #define Ch(x, y, z) (((x) & (y)) ^ ((~(x)) & (z)))
456 T += F[7] + Sigma1(E) + Ch(E, F[5], F[6]) + K512[i];
469 T += F[7] + Sigma1(E) + Ch(E, F[5], F[6]) + K512[i];
491 T1 += h + Sigma1(e) + Ch(e, f, g) + K512[i]; \
  /external/openssl/crypto/sha/
sha256.c 146 #define Ch(x,y,z) (((x) & (y)) ^ ((~(x)) & (z)))
166 T1 += h + Sigma1(e) + Ch(e,f,g) + K256[i];
178 T1 += h + Sigma1(e) + Ch(e,f,g) + K256[i];
193 T1 += h + Sigma1(e) + Ch(e,f,g) + K256[i]; \
sha512.c 398 #define Ch(x,y,z) (((x) & (y)) ^ ((~(x)) & (z)))
432 T += F[7] + Sigma1(E) + Ch(E,F[5],F[6]) + K512[i];
446 T += F[7] + Sigma1(E) + Ch(E,F[5],F[6]) + K512[i];
481 T1 += h + Sigma1(e) + Ch(e,f,g) + K512[i];
493 T1 += h + Sigma1(e) + Ch(e,f,g) + K512[i];
509 T1 += h + Sigma1(e) + Ch(e,f,g) + K512[i]; \
  /external/chromium_org/crypto/third_party/nss/
sha512.cc 68 #define Ch(x,y,z) ((x & y) ^ (~x & z))
287 h += S1(e) + Ch(e,f,g) + K256[n] + W[n]; \
726 h += S1(e) + Ch(e,f,g) + K512[n] + W[n]; \
755 /* 32-bit versions of Ch and Maj */
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64A57FPLoadBalancing.cpp 401 Chain *Ch = *--I;
403 return Ch;
407 Chain *Ch = *I;
409 return Ch;
414 Chain *Ch = L.front();
416 return Ch;
  /external/ipsec-tools/src/racoon/missing/crypto/sha2/
sha2.c 200 #define Ch(x,y,z) (((x) & (y)) ^ ((~(x)) & (z)))
351 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + \
361 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + \
374 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + K256[j] + \
461 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] + W256[j];
464 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] + (W256[j] = *data++);
487 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] +
678 T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + \
688 T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + \
701 T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + K512[j] +
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp 601 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Tmp1, StackPtr,
613 Ch = DAG.getTruncStore(Ch, dl, Tmp2, StackPtr2, MachinePointerInfo(), EltVT,
616 return DAG.getLoad(VT, dl, Ch, StackPtr,
    [all...]
LegalizeIntegerTypes.cpp     [all...]
LegalizeVectorTypes.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]
  /external/google-tv-pairing-protocol/java/jar/
bcprov-jdk15-143.jar 
  /prebuilts/devtools/tools/lib/
bcprov-jdk15on-1.48.jar 
  /prebuilts/sdk/tools/lib/
signapk.jar 
lombok-ast-0.2.jar 
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar 

Completed in 815 milliseconds

1 2