HomeSort by: relevance | last modified time | path
    Searched defs:Ch (Results 1 - 25 of 29) sorted by relevancy

1 2

  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_hash/sha256/cp/
hash_sha256_cp.c 74 #define Ch(x, y, z) ((x & (y ^ z)) ^ z)
84 h += S1(e) + Ch(e, f, g) + k; \
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_hash/sha512/cp/
hash_sha512_cp.c 90 #define Ch(x, y, z) ((x & (y ^ z)) ^ z)
100 h += S1(e) + Ch(e, f, g) + k; \
  /src/external/bsd/wpa/dist/src/crypto/
sha256-internal.c 71 #define Ch(x,y,z) (z ^ (x & (y ^ z)))
104 t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i]; \
sha512-internal.c 92 #define Ch(x,y,z) (z ^ (x & (y ^ z)))
134 t0 = S[7] + Sigma1(S[4]) + Ch(S[4], S[5], S[6]) + K[i] + W[i];
  /src/crypto/external/bsd/openssl/dist/crypto/sha/
sha256.c 142 # define Ch(x,y,z) (((x) & (y)) ^ ((~(x)) & (z)))
169 T1 += h + Sigma1(e) + Ch(e, f, g) + K256[i];
188 T1 += h + Sigma1(e) + Ch(e, f, g) + K256[i];
215 T1 += h + Sigma1(e) + Ch(e,f,g) + K256[i]; \
sha512.c 479 # define Ch(x,y,z) (((x) & (y)) ^ ((~(x)) & (z)))
517 T += F[7] + Sigma1(E) + Ch(E, F[5], F[6]) + K512[i];
530 T += F[7] + Sigma1(E) + Ch(E, F[5], F[6]) + K512[i];
575 T1 += h + Sigma1(e) + Ch(e, f, g) + K512[i];
594 T1 += h + Sigma1(e) + Ch(e, f, g) + K512[i];
621 T1 += h + Sigma1(e) + Ch(e,f,g) + K512[i]; \
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
SubtargetFeature.h 211 char Ch = Feature[0];
213 return Ch == '+' || Ch =='-';
225 char Ch = Feature[0];
227 return Ch == '+';
  /src/external/public-domain/xz/dist/src/liblzma/check/
sha256.c 31 #define Ch(x, y, z) (z ^ (x & (y ^ z)))
44 h(i) += S1(e(i)) + Ch(e(i), f(i), g(i)) + SHA256_K[i + j] + blk; \
  /src/common/lib/libc/hash/sha2/
sha2.c 108 #define Ch(x,y,z) (((x) & (y)) ^ ((~(x)) & (z)))
290 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + \
301 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + K256[j] + \
391 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] + W256[j];
413 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] +
636 T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + \
647 T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + K512[j] + \
732 T1 = h + Sigma1_512(e) + Ch(e, f, g) + K512[j] + W512[j];
754 T1 = h + Sigma1_512(e) + Ch(e, f, g) + K512[j] +
  /src/crypto/external/apache2/openssl/dist/crypto/sha/
sha256.c 178 #define Ch(x, y, z) ({ MD32_REG_T ret; \
207 #ifndef Ch
208 #define Ch(x, y, z) (((x) & (y)) ^ ((~(x)) & (z)))
238 T1 += h + Sigma1(e) + Ch(e, f, g) + K256[i];
257 T1 += h + Sigma1(e) + Ch(e, f, g) + K256[i];
284 T1 += h + Sigma1(e) + Ch(e, f, g) + K256[i]; \
sha512.c 501 #define Ch(x, y, z) ({ SHA_LONG64 ret; unsigned int *r = (unsigned int *)(&(ret)); \
522 #define Ch(x, y, z) ({ SHA_LONG64 ret; \
570 #ifndef Ch
571 #define Ch(x, y, z) (((x) & (y)) ^ ((~(x)) & (z)))
612 T += F[7] + Sigma1(E) + Ch(E, F[5], F[6]) + K512[i];
625 T += F[7] + Sigma1(E) + Ch(E, F[5], F[6]) + K512[i];
670 T1 += h + Sigma1(e) + Ch(e, f, g) + K512[i];
689 T1 += h + Sigma1(e) + Ch(e, f, g) + K512[i];
717 T1 += h + Sigma1(e) + Ch(e, f, g) + K512[i]; \
  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/
sha256.c 42 #define Ch(x,y,z) (((x) & (y)) ^ ((~(x)) & (z)))
121 T1 = HH + Sigma1(EE) + Ch(EE, FF, GG) + constant_256[i] + data[i];
sha512.c 42 #define Ch(x,y,z) (((x) & (y)) ^ ((~(x)) & (z)))
145 T1 = HH + Sigma1(EE) + Ch(EE, FF, GG) + constant_512[i] + data[i];
  /src/crypto/external/bsd/openssl.old/dist/crypto/sha/
sha256.c 163 # define Ch(x,y,z) (((x) & (y)) ^ ((~(x)) & (z)))
190 T1 += h + Sigma1(e) + Ch(e, f, g) + K256[i];
209 T1 += h + Sigma1(e) + Ch(e, f, g) + K256[i];
236 T1 += h + Sigma1(e) + Ch(e,f,g) + K256[i]; \
sha512.c 492 # define Ch(x,y,z) (((x) & (y)) ^ ((~(x)) & (z)))
530 T += F[7] + Sigma1(E) + Ch(E, F[5], F[6]) + K512[i];
543 T += F[7] + Sigma1(E) + Ch(E, F[5], F[6]) + K512[i];
588 T1 += h + Sigma1(e) + Ch(e, f, g) + K512[i];
607 T1 += h + Sigma1(e) + Ch(e, f, g) + K512[i];
634 T1 += h + Sigma1(e) + Ch(e,f,g) + K512[i]; \
  /src/external/bsd/unbound/dist/compat/
sha512.c 190 #define Ch(x,y,z) (((x) & (y)) ^ ((~(x)) & (z)))
293 T1 = h + Sigma1_512(e) + Ch(e, f, g) + K512[j] + W512[j];
296 T1 = h + Sigma1_512(e) + Ch(e, f, g) + K512[j] + (W512[j] = *data++);
319 T1 = h + Sigma1_512(e) + Ch(e, f, g) + K512[j] +
  /src/crypto/external/bsd/netpgp/dist/src/netpgpverify/
sha2.c 144 #define Ch(x,y,z) (((x) & (y)) ^ ((~(x)) & (z)))
306 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + \
317 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + K256[j] + \
407 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] + W256[j];
429 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] +
652 T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + \
663 T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + K512[j] + \
748 T1 = h + Sigma1_512(e) + Ch(e, f, g) + K512[j] + W512[j];
770 T1 = h + Sigma1_512(e) + Ch(e, f, g) + K512[j] +
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp 380 SDValue Ch = DAG.getStore(
387 Ch = DAG.getTruncStore(
388 Ch, dl, Tmp2, StackPtr2,
391 return DAG.getLoad(VT, dl, Ch, StackPtr, MachinePointerInfo::getFixedStack(
743 SDValue Ch;
755 Ch = Result.getValue(1); // The chain.
769 Chain = Ch;
784 SDValue Lo, Hi, Ch;
804 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
832 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64A57FPLoadBalancing.cpp 421 Chain *Ch = *--I;
423 return Ch;
427 Chain *Ch = *I;
429 return Ch;
434 Chain *Ch = L.front();
436 return Ch;
  /src/external/bsd/openldap/dist/contrib/slapd-modules/passwd/sha2/
sha2.c 205 #define Ch(x,y,z) (((x) & (y)) ^ ((~(x)) & (z)))
356 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + \
366 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + \
379 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + K256[j] + \
466 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] + W256[j];
469 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] + (W256[j] = *data++);
492 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] +
685 T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + \
695 T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + \
708 T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + K512[j] +
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerDriver.cpp 125 char Ch = Str[i];
126 if (Ch < '0' || Ch > '9')
128 Res = Res * 10 + (Ch - '0');
  /src/crypto/dist/ipsec-tools/src/racoon/missing/crypto/sha2/
sha2.c 198 #define Ch(x,y,z) (((x) & (y)) ^ ((~(x)) & (z)))
349 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + \
359 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + \
372 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + K256[j] + \
459 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] + W256[j];
462 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] + (W256[j] = *data++);
485 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] +
676 T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + \
686 T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + \
699 T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + K512[j] +
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/M68k/Disassembler/
M68kDisassembler.cpp 155 char Ch = IsClear ? '0' : '1';
156 dbgs() << Ch;
241 char Ch = IsMasked ? '?' : (IsClear ? '0' : '1');
242 dbgs() << Ch;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-rc/
ResourceFileWriter.cpp 170 for (UTF16 &Ch : Chars) {
171 assert(Ch <= 0x7F && "We didn't allow identifiers to be non-ASCII");
172 Ch = toupper(Ch);
375 for (auto Ch : ProcessedString)
376 writeInt<uint16_t>(Ch);
658 char Ch = Str[1];
659 if (Ch >= 'a' && Ch <= 'z')
660 Entry.ANSICode = ulittle16_t(Ch - 'a' + 1)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
StmtPrinter.cpp 2395 ObjCArrayLiteral::child_range Ch = E->children();
2396 for (auto I = Ch.begin(), E = Ch.end(); I != E; ++I) {
2397 if (I != Ch.begin())

Completed in 50 milliseconds

1 2