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

12

/freebsd-10.0-release/contrib/groff/src/libs/libgroff/
H A Dstrcasecmp.c35 #define TOLOWER(Ch) (isupper (Ch) ? tolower (Ch) : (Ch))
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/AST/
H A DTemplateBase.cpp44 const char Ch = Val.getZExtValue(); local
45 Out << ((Ch == '\'') ? "'\\" : "'");
46 Out.write_escaped(StringRef(&Ch, 1), /*UseHexEscapes=*/ true);
/freebsd-10.0-release/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-10.0-release/contrib/llvm/lib/MC/
H A DSubtargetFeature.cpp33 char Ch = Feature[0]; local
35 return Ch == '+' || Ch =='-';
49 char Ch = Feature[0]; local
51 return Ch == '+';
/freebsd-10.0-release/sys/cddl/boot/zfs/
H A Dsha256.c40 * Ch(x, y, z) (((x) & (y)) ^ ((~(x)) & (z)))
45 #define Ch(x, y, z) ((z) ^ ((x) & ((y) ^ (z)))) macro
88 T1 = h + SIGMA1(e) + Ch(e, f, g) + SHA256_K[t] + W[t];
/freebsd-10.0-release/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-10.0-release/crypto/openssl/crypto/sha/asm/
H A Dsha512-armv4.pl113 eor $t1,$t1,$t3 @ Ch(e,f,g)
118 adc $Thi,$Thi,$t1 @ T += Ch(e,f,g)
452 my ($t0,$t1,$t2,$T1,$K,$Ch,$Maj)=map("d$_",(24..31)); # temps
471 veor $Ch,$f,$g
473 vand $Ch,$e
475 veor $Ch,$g @ Ch(e,f,g)
478 vadd.i64 $T1,$Ch
486 vand $Ch,$a,$c
490 vorr $Maj,$Ch
[all...]
H A Dsha256-armv4.pl83 eor $t1,$t1,$g @ Ch(e,f,g)
H A Dsha512-ia64.pl458 { .mib; add T1=T1,H // T1=Ch(e,f,g)+h
468 { .mib; add T1=T1,K // T1=Ch(e,f,g)+h+K512[i]
521 add T1=T1,H // T1=Ch(e,f,g)+h
545 { .mib; add T1=T1,K // T1=Ch(e,f,g)+h+K512[i]
H A Dsha512-parisc.pl109 or $t0,$t1,$t1 ; Ch(e,f,g)
410 xor $a3,$a1,$a1 ; Ch(e,f,g)
418 addc $a1,$hhi,$hhi ; h += Ch(e,f,g)
H A Dsha512-ppc.pl134 or $t0,$t0,$t1 ; Ch(e,f,g)
/freebsd-10.0-release/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] +
639 T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + \
649 T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + \
662 T1 = (h) + Sigma1_512(e) + Ch((
[all...]
/freebsd-10.0-release/sys/crypto/sha2/
H A Dsha2.c192 #define Ch(x,y,z) (((x) & (y)) ^ ((~(x)) & (z))) macro
343 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + \
353 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + \
366 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + K256[j] + \
453 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] + W256[j];
456 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] + (W256[j] = *data++);
479 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] +
670 T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + \
680 T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + \
693 T1 = (h) + Sigma1_512(e) + Ch((
[all...]
/freebsd-10.0-release/crypto/openssh/openbsd-compat/
H A Dsha2.c162 #define Ch(x,y,z) (((x) & (y)) ^ ((~(x)) & (z))) macro
299 T1 = (h) + Sigma1_256((e)) + Ch((e), (f), (g)) + K256[j] + W256[j]; \
310 T1 = (h) + Sigma1_256((e)) + Ch((e), (f), (g)) + K256[j] + \
397 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] + W256[j];
419 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] +
579 T1 = (h) + Sigma1_512((e)) + Ch((e), (f), (g)) + K512[j] + W512[j]; \
591 T1 = (h) + Sigma1_512((e)) + Ch((e), (f), (g)) + K512[j] + \
678 T1 = h + Sigma1_512(e) + Ch(e, f, g) + K512[j] + W512[j];
700 T1 = h + Sigma1_512(e) + Ch(e, f, g) + K512[j] +
/freebsd-10.0-release/contrib/wpa/src/crypto/
H A Dsha256-internal.c68 #define Ch(x,y,z) (z ^ (x & (y ^ z))) macro
104 t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i]; \
/freebsd-10.0-release/contrib/xz/src/liblzma/check/
H A Dsha256.c39 #define Ch(x, y, z) (z ^ (x & (y ^ z))) macro
52 h(i) += S1(e(i)) + Ch(e(i), f(i), g(i)) + SHA256_K[i + j] \
/freebsd-10.0-release/sys/dev/rp/
H A Drp.c347 Byte_t Ch; /* channel number within AIOP */ local
362 Ch = (Byte_t)sGetChanNum(ChP);
363 rp_writech1(ChP,_CMD_REG,Ch | RESRXFCNT); /* apply reset Rx FIFO count */
364 rp_writech1(ChP,_CMD_REG,Ch); /* remove reset Rx FIFO count */
390 Byte_t Ch; /* channel number within AIOP */ local
405 Ch = (Byte_t)sGetChanNum(ChP);
406 rp_writech1(ChP,_CMD_REG,Ch | RESTXFCNT); /* apply reset Tx FIFO count */
407 rp_writech1(ChP,_CMD_REG,Ch); /* remove reset Tx FIFO count */
/freebsd-10.0-release/crypto/openssl/crypto/sha/
H A Dsha256.c146 #define Ch(x,y,z) (((x) & (y)) ^ ((~(x)) & (z))) macro
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]; \
H A Dsha512.c398 #define Ch(x,y,z) (((x) & (y)) ^ ((~(x)) & (z))) macro
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]; \
/freebsd-10.0-release/lib/libmd/
H A Dsha256c.c78 #define Ch(x, y, z) ((x & (y ^ z)) ^ z) macro
89 t0 = h + S1(e) + Ch(e, f, g) + k; \
H A Dsha512c.c78 #define Ch(x, y, z) ((x & (y ^ z)) ^ z) macro
89 t0 = h + S1(e) + Ch(e, f, g) + k; \
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeIntegerTypes.cpp1027 SDValue Ch = N->getChain(), Ptr = N->getBasePtr(); local
1036 return DAG.getTruncStore(Ch, dl, Val, Ptr, N->getPointerInfo(),
1786 SDValue Ch = N->getChain(); local
1800 Lo = DAG.getExtLoad(ExtType, dl, NVT, Ch, Ptr, N->getPointerInfo(),
1804 Ch = Lo.getValue(1);
1822 Lo = DAG.getLoad(NVT, dl, Ch, Ptr, N->getPointerInfo(),
1833 Hi = DAG.getExtLoad(ExtType, dl, NVT, Ch, Ptr,
1840 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1851 Hi = DAG.getExtLoad(ExtType, dl, NVT, Ch, Ptr, N->getPointerInfo(),
1860 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, NVT, Ch, Pt
1887 ReplaceValueWith(SDValue(N, 1), Ch); local
2687 SDValue Ch = N->getChain(); local
[all...]
H A DLegalizeDAG.cpp593 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Tmp1, StackPtr, local
605 Ch = DAG.getTruncStore(Ch, dl, Tmp2, StackPtr2, MachinePointerInfo(), EltVT,
608 return DAG.getLoad(VT, dl, Ch, StackPtr,
938 SDValue Ch;
951 Ch = Result.getValue(1); // The chain.
965 Chain = Ch;
977 SDValue Lo, Hi, Ch;
999 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1029 Ch
[all...]
H A DLegalizeVectorTypes.cpp807 SDValue Ch = LD->getChain(); local
819 Lo = DAG.getLoad(ISD::UNINDEXED, ExtType, LoVT, dl, Ch, Ptr, Offset,
826 Hi = DAG.getLoad(ISD::UNINDEXED, ExtType, HiVT, dl, Ch, Ptr, Offset,
832 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
837 ReplaceValueWith(SDValue(LD, 1), Ch); local
1235 SDValue Ch = N->getChain(); local
1250 Lo = DAG.getTruncStore(Ch, DL, Lo, Ptr, N->getPointerInfo(),
1253 Lo = DAG.getStore(Ch, DL, Lo, Ptr, N->getPointerInfo(),
1261 Hi = DAG.getTruncStore(Ch, DL, Hi, Ptr,
1265 Hi = DAG.getStore(Ch, D
[all...]
/freebsd-10.0-release/contrib/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.h326 TreePatternNode(Record *Op, const std::vector<TreePatternNode*> &Ch,
328 : Operator(Op), Val(0), TransformFn(0), Children(Ch) {

Completed in 331 milliseconds

12