Searched refs:Ch (Results 1 - 25 of 48) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/WindowsResource/
H A DResourceScriptToken.h33 #define SHORT_TOKEN(Name, Ch) Name,
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DTemplateBase.cpp74 const char Ch = Val.getZExtValue(); local
75 Out << ((Ch == '\'') ? "'\\" : "'");
76 Out.write_escaped(StringRef(&Ch, 1), /*UseHexEscapes=*/ true);
/freebsd-13-stable/crypto/openssl/crypto/sha/asm/
H A Dsha256-c64xplus.pl44 ($Maj,$Ch)=($T2,"B6");
129 || AND $F,$E,$Ch
134 || XOR $t2e,$Ch,$Ch ; Ch(e,f,g) = (e&f)^(~e&g)
146 || ADD $Ch,$T1,$T1 ; T1 += Ch(e,f,g)
166 || AND $F,$E,$Ch
172 || XOR $t2e,$Ch,$Ch ; C
[all...]
H A Dsha512-armv4.pl144 eor $t1,$t1,$t3 @ Ch(e,f,g)
149 adc $Thi,$Thi,$t1 @ T += Ch(e,f,g)
519 my ($t0,$t1,$t2,$T1,$K,$Ch,$Maj)=map("d$_",(24..31)); # temps
536 vmov $Ch,$e
542 vbsl $Ch,$f,$g @ Ch(e,f,g)
545 vadd.i64 $T1,$Ch,$h
/freebsd-13-stable/contrib/diff/lib/
H A Dstrftime.c226 # define TOUPPER(Ch, L) __towupper_l (Ch, L)
227 # define TOLOWER(Ch, L) __towlower_l (Ch, L)
229 # define TOUPPER(Ch, L) towupper (Ch)
230 # define TOLOWER(Ch, L) towlower (Ch)
235 # define TOUPPER(Ch, L) __toupper_l (Ch,
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DWindowsResourceDumper.cpp27 for (UTF16 Ch : UTF16Str) {
30 uint16_t ChValue = support::endian::byte_swap(Ch, support::little);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DSubtargetFeature.h211 char Ch = Feature[0]; local
213 return Ch == '+' || Ch =='-';
225 char Ch = Feature[0]; local
227 return Ch == '+';
/freebsd-13-stable/sys/contrib/openzfs/module/icp/asm-x86_64/sha2/
H A Dsha256_impl.S142 xor %r10d,%r15d # Ch(e,f,g)=((f^g)&e)^g
148 add %r15d,%r12d # T1+=Ch(e,f,g)
188 xor %r9d,%r15d # Ch(e,f,g)=((f^g)&e)^g
194 add %r15d,%r12d # T1+=Ch(e,f,g)
234 xor %r8d,%r15d # Ch(e,f,g)=((f^g)&e)^g
240 add %r15d,%r12d # T1+=Ch(e,f,g)
280 xor %edx,%r15d # Ch(e,f,g)=((f^g)&e)^g
286 add %r15d,%r12d # T1+=Ch(e,f,g)
326 xor %ecx,%r15d # Ch(e,f,g)=((f^g)&e)^g
332 add %r15d,%r12d # T1+=Ch(
[all...]
H A Dsha512_impl.S143 xor %r10,%r15 # Ch(e,f,g)=((f^g)&e)^g
149 add %r15,%r12 # T1+=Ch(e,f,g)
189 xor %r9,%r15 # Ch(e,f,g)=((f^g)&e)^g
195 add %r15,%r12 # T1+=Ch(e,f,g)
235 xor %r8,%r15 # Ch(e,f,g)=((f^g)&e)^g
241 add %r15,%r12 # T1+=Ch(e,f,g)
281 xor %rdx,%r15 # Ch(e,f,g)=((f^g)&e)^g
287 add %r15,%r12 # T1+=Ch(e,f,g)
327 xor %rcx,%r15 # Ch(e,f,g)=((f^g)&e)^g
333 add %r15,%r12 # T1+=Ch(
[all...]
/freebsd-13-stable/contrib/apr/random/unix/
H A Dsha2.c131 #define Ch(x,y,z) (((x) & (y)) ^ ((~(x)) & (z))) macro
212 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + \
222 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + \
235 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + K256[j] + \
322 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] + W256[j];
325 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] + (W256[j] = *data++);
348 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] +
/freebsd-13-stable/contrib/ldns/
H A Dsha2.c198 #define Ch(x,y,z) (((x) & (y)) ^ ((~(x)) & (z))) macro
332 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + \
342 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + \
355 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + K256[j] + \
444 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] + W256[j];
447 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] + (W256[j] = *data++);
470 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] +
646 T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + \
656 T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + \
669 T1 = (h) + Sigma1_512(e) + Ch((
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64A57FPLoadBalancing.cpp421 Chain *Ch = *--I; local
423 return Ch;
427 Chain *Ch = *I; local
429 return Ch;
434 Chain *Ch = L.front(); local
436 return Ch;
/freebsd-13-stable/contrib/unbound/compat/
H A Dsha512.c190 #define Ch(x,y,z) (((x) & (y)) ^ ((~(x)) & (z))) macro
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] +
/freebsd-13-stable/crypto/openssh/openbsd-compat/
H A Dsha2.c167 #define Ch(x,y,z) (((x) & (y)) ^ ((~(x)) & (z))) macro
304 T1 = (h) + Sigma1_256((e)) + Ch((e), (f), (g)) + K256[j] + W256[j]; \
315 T1 = (h) + Sigma1_256((e)) + Ch((e), (f), (g)) + K256[j] + \
402 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] + W256[j];
424 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] +
584 T1 = (h) + Sigma1_512((e)) + Ch((e), (f), (g)) + K512[j] + W512[j]; \
596 T1 = (h) + Sigma1_512((e)) + Ch((e), (f), (g)) + K512[j] + \
683 T1 = h + Sigma1_512(e) + Ch(e, f, g) + K512[j] + W512[j];
705 T1 = h + Sigma1_512(e) + Ch(e, f, g) + K512[j] +
/freebsd-13-stable/contrib/wpa/src/crypto/
H A Dsha256-internal.c71 #define Ch(x,y,z) (z ^ (x & (y ^ z))) macro
107 t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i]; \
H A Dsha512-internal.c92 #define Ch(x,y,z) (z ^ (x & (y ^ z))) macro
137 t0 = S[7] + Sigma1(S[4]) + Ch(S[4], S[5], S[6]) + K[i] + W[i];
/freebsd-13-stable/contrib/ntp/lib/isc/
H A Dsha2.c348 #define Ch(x,y,z) (((x) & (y)) ^ ((~(x)) & (z))) macro
612 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + \
622 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + \
635 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + K256[j] + \
726 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] + W256[j];
729 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] + (W256[j] = *data++);
752 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] +
937 T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + \
947 T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + \
960 T1 = (h) + Sigma1_512(e) + Ch((
[all...]
/freebsd-13-stable/sys/cddl/boot/zfs/
H A Dsha256.c42 * Ch(x, y, z) (((x) & (y)) ^ ((~(x)) & (z)))
47 #define Ch(x, y, z) ((z) ^ ((x) & ((y) ^ (z)))) macro
147 T1 = h + BIGSIGMA1_256(e) + Ch(e, f, g) + SHA256_K[t] + W[t];
181 T1 = h + BIGSIGMA1_512(e) + Ch(e, f, g) + SHA512_K[t] + W[t];
/freebsd-13-stable/crypto/openssl/crypto/sha/
H A Dsha256.c163 # define Ch(x,y,z) (((x) & (y)) ^ ((~(x)) & (z))) macro
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]; \
H A Dsha512.c492 # define Ch(x,y,z) (((x) & (y)) ^ ((~(x)) & (z))) macro
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]; \
/freebsd-13-stable/sys/contrib/openzfs/module/os/freebsd/spl/
H A Dsha256c.c105 #define Ch(x, y, z) ((x & (y ^ z)) ^ z) macro
116 h += S1(e) + Ch(e, f, g) + k; \
H A Dsha512c.c129 #define Ch(x, y, z) ((x & (y ^ z)) ^ z) macro
140 h += S1(e) + Ch(e, f, g) + k; \
/freebsd-13-stable/sys/crypto/sha2/
H A Dsha256c.c103 #define Ch(x, y, z) ((x & (y ^ z)) ^ z) macro
114 h += S1(e) + Ch(e, f, g) + k; \
/freebsd-13-stable/sys/contrib/libsodium/src/libsodium/crypto_hash/sha256/cp/
H A Dhash_sha256_cp.c74 #define Ch(x, y, z) ((x & (y ^ z)) ^ z) macro
84 h += S1(e) + Ch(e, f, g) + k; \
/freebsd-13-stable/sys/contrib/libsodium/src/libsodium/crypto_hash/sha512/cp/
H A Dhash_sha512_cp.c90 #define Ch(x, y, z) ((x & (y ^ z)) ^ z) macro
100 h += S1(e) + Ch(e, f, g) + k; \

Completed in 269 milliseconds

12