| /freebsd/crypto/krb5/src/lib/crypto/builtin/md4/ |
| H A D | md4.c | 68 #define GG(a, b, c, d, x, s) \ macro 170 GG (a, b, c, d, in[round2indices[i]], round2consts[i%4]); ROTATE; in Transform() 199 GG (a, b, c, d, in[ 0], 3); in Transform() 200 GG (d, a, b, c, in[ 4], 5); in Transform() 201 GG (c, d, a, b, in[ 8], 9); in Transform() 202 GG (b, c, d, a, in[12], 13); in Transform() 203 GG (a, b, c, d, in[ 1], 3); in Transform() 204 GG (d, a, b, c, in[ 5], 5); in Transform() 205 GG (c, d, a, b, in[ 9], 9); in Transform() 206 GG (b, c, d, a, in[13], 13); in Transform() [all …]
|
| /freebsd/sys/crypto/ |
| H A D | md4c.c | 85 #define GG(a, b, c, d, x, s) { \ macro 211 GG (a, b, c, d, x[ 0], S21); /* 17 */ in MD4Transform() 212 GG (d, a, b, c, x[ 4], S22); /* 18 */ in MD4Transform() 213 GG (c, d, a, b, x[ 8], S23); /* 19 */ in MD4Transform() 214 GG (b, c, d, a, x[12], S24); /* 20 */ in MD4Transform() 215 GG (a, b, c, d, x[ 1], S21); /* 21 */ in MD4Transform() 216 GG (d, a, b, c, x[ 5], S22); /* 22 */ in MD4Transform() 217 GG (c, d, a, b, x[ 9], S23); /* 23 */ in MD4Transform() 218 GG (b, c, d, a, x[13], S24); /* 24 */ in MD4Transform() 219 GG (a, b, c, d, x[ 2], S21); /* 25 */ in MD4Transform() [all …]
|
| /freebsd/crypto/krb5/src/lib/crypto/builtin/md5/ |
| H A D | md5.c | 85 #define GG(a, b, c, d, x, s, ac) \ macro 220 GG (a, b, c, d, in[r2index], round2s[i%4], round2consts[i]); in Transform() 277 GG ( a, b, c, d, in[ 1], S21, 4129170786UL); /* 17 */ in Transform() 278 GG ( d, a, b, c, in[ 6], S22, 3225465664UL); /* 18 */ in Transform() 279 GG ( c, d, a, b, in[11], S23, 643717713UL); /* 19 */ in Transform() 280 GG ( b, c, d, a, in[ 0], S24, 3921069994UL); /* 20 */ in Transform() 281 GG ( a, b, c, d, in[ 5], S21, 3593408605UL); /* 21 */ in Transform() 282 GG ( d, a, b, c, in[10], S22, 38016083UL); /* 22 */ in Transform() 283 GG ( c, d, a, b, in[15], S23, 3634488961UL); /* 23 */ in Transform() 284 GG ( b, c, d, a, in[ 4], S24, 3889429448UL); /* 24 */ in Transform() [all …]
|
| /freebsd/sbin/ipf/ipftest/ |
| H A D | md5.c | 86 #define GG(a, b, c, d, x, s, ac) \ macro 230 GG ( a, b, c, d, in[ 1], S21, UL(4129170786)); /* 17 */ in Transform() 231 GG ( d, a, b, c, in[ 6], S22, UL(3225465664)); /* 18 */ in Transform() 232 GG ( c, d, a, b, in[11], S23, UL( 643717713)); /* 19 */ in Transform() 233 GG ( b, c, d, a, in[ 0], S24, UL(3921069994)); /* 20 */ in Transform() 234 GG ( a, b, c, d, in[ 5], S21, UL(3593408605)); /* 21 */ in Transform() 235 GG ( d, a, b, c, in[10], S22, UL( 38016083)); /* 22 */ in Transform() 236 GG ( c, d, a, b, in[15], S23, UL(3634488961)); /* 23 */ in Transform() 237 GG ( b, c, d, a, in[ 4], S24, UL(3889429448)); /* 24 */ in Transform() 238 GG ( a, b, c, d, in[ 9], S21, UL( 568446438)); /* 25 */ in Transform() [all …]
|
| /freebsd/sys/fs/ext2fs/ |
| H A D | ext2_hash.c | 94 #define GG(a, b, c, d, x, s) { \ macro 131 GG(a, b, c, d, data[1], 3); in ext2_half_md4() 132 GG(d, a, b, c, data[3], 5); in ext2_half_md4() 133 GG(c, d, a, b, data[5], 9); in ext2_half_md4() 134 GG(b, c, d, a, data[7], 13); in ext2_half_md4() 135 GG(a, b, c, d, data[0], 3); in ext2_half_md4() 136 GG(d, a, b, c, data[2], 5); in ext2_half_md4() 137 GG(c, d, a, b, data[4], 9); in ext2_half_md4() 138 GG(b, c, d, a, data[6], 13); in ext2_half_md4()
|
| /freebsd/crypto/krb5/src/lib/crypto/builtin/sha2/ |
| H A D | sha256.c | 124 uint32_t AA, BB, CC, DD, EE, FF, GG, HH; in calc() local 134 GG = G; in calc() 146 T1 = HH + Sigma1(EE) + Ch(EE, FF, GG) + constant_256[i] + data[i]; in calc() 149 HH = GG; in calc() 150 GG = FF; in calc() 165 G += GG; in calc()
|
| H A D | sha512.c | 132 uint64_t AA, BB, CC, DD, EE, FF, GG, HH; in calc() local 142 GG = G; in calc() 154 T1 = HH + Sigma1(EE) + Ch(EE, FF, GG) + constant_512[i] + data[i]; in calc() 157 HH = GG; in calc() 158 GG = FF; in calc() 173 G += GG; in calc()
|
| /freebsd/crypto/krb5/src/ |
| H A D | Makefile.in | 317 GG = lib/gssapi/generic/ 331 $(GG)gssapi_err_generic.h $(GG)gssapi_err_generic.c \ 335 HOUT = $(INC)krb5/krb5.h $(GG)gssapi.h $(PR)profile.h 363 $(GG)gssapi_err_generic.h: $(AH) $(GG)gssapi_err_generic.et 364 $(AWK) -f $(AH) outfile=$@ $(GG)gssapi_err_generic.et 388 $(GG)gssapi_err_generic.c: $(AC) $(GG)gssapi_err_generic.et 389 $(AWK) -f $(AC) outfile=$@ $(GG)gssapi_err_generic.et 408 $(GG)gssapi.h: $(GG)gssapi.hin 410 cat $(GG)gssapi.hin > $@
|
| /freebsd/crypto/openssl/crypto/sm3/ |
| H A D | sm3_local.h | 100 #define RND(A, B, C, D, E, F, G, H, TJ, Wi, Wj, FF, GG) \ argument 106 const SM3_WORD TT2 = GG(E, F, G) + H + SS1 + Wi; \
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaTemplateDeductionGuide.cpp | 1156 auto *GG = cast<CXXDeductionGuideDecl>(FPrime); in BuildDeductionGuideForTypeAlias() local 1172 GG->getCorrespondingConstructor(), GG->getExplicitSpecifier(), in BuildDeductionGuideForTypeAlias() 1173 GG->getTypeSourceInfo(), AliasTemplate->getBeginLoc(), in BuildDeductionGuideForTypeAlias() 1177 ->setDeductionCandidateKind(GG->getDeductionCandidateKind()); in BuildDeductionGuideForTypeAlias()
|
| /freebsd/share/misc/ |
| H A D | iso3166 | 112 GG GGY 831 Guernsey 517 # GUERNSEY (GG), ISLE OF MAN (IM), and JERSEY (JE) added as new entries.
|
| /freebsd/sys/contrib/device-tree/Bindings/pci/ |
| H A D | nvidia,tegra194-pcie.txt | 234 reset-gpios = <&gpio TEGRA194_MAIN_GPIO(GG, 1) GPIO_ACTIVE_LOW>;
|
| /freebsd/usr.sbin/tzsetup/ |
| H A D | baseline | 263 GG:Guernsey
|
| /freebsd/contrib/tzdata/ |
| H A D | zone.tab | 187 GG +492717-0023210 Europe/Guernsey
|
| H A D | zone1970.tab | 157 GB,GG,IM,JE +513030-0000731 Europe/London
|
| /freebsd/contrib/sendmail/contrib/ |
| H A D | mail.local.linux | 37 M'+UYV6=Q!YI!QQTL4IMJL%C",6EUR#:J[,'^C;$&GG>P,5]PV4H97@*[^<DJ
|
| /freebsd/sys/contrib/device-tree/src/arm64/qcom/ |
| H A D | qrb5165-rb5.dts | 1262 "GPIO-GG",
|
| /freebsd/contrib/ncurses/include/ |
| H A D | Caps-ncurses | 283 capalias GG IGNORE XENIX acs-glitch
|
| /freebsd/sys/contrib/device-tree/src/arm64/nvidia/ |
| H A D | tegra194-p2972-0000.dts | 2291 reset-gpios = <&gpio TEGRA194_MAIN_GPIO(GG, 1) GPIO_ACTIVE_LOW>;
|
| H A D | tegra194-p3509-0000.dtsi | 2247 reset-gpios = <&gpio TEGRA194_MAIN_GPIO(GG, 1) GPIO_ACTIVE_LOW>;
|
| /freebsd/contrib/tcsh/ |
| H A D | host.defs | 1046 comment : Amiga running AmigaOS+GG
|
| /freebsd/contrib/file/magic/Magdir/ |
| H A D | console | 390 # SMS/GG header locations.
|
| /freebsd/share/termcap/ |
| H A D | termcap | 4550 :rg=0:GS=\Eo:GE=^O:GG=0:GV=-:GH=&:GU=%:GD=#:G1=(:G2= :G3=":G4=*:CF=\E]:\
|
| /freebsd/contrib/ncurses/misc/ |
| H A D | terminfo.src | 10221 # :GG#0:GI=\EH8:GF=\EH7:\ 24226 # :rv=\EH:re=\EI:rg=0:GG=0:\ 25393 # GG :as:/:ae: glitch (analogous to :sg:/:ug:)
|
| /freebsd/crypto/krb5/src/lib/krb5/unicode/ |
| H A D | UnicodeData.txt | 12004 1D0E6;BYZANTINE MUSICAL SYMBOL DIGRAMMA GG;So;0;L;;;;;N;;;;;
|