Home
last modified time | relevance | path

Searched refs:FF (Results 1 – 25 of 76) sorted by relevance

1234

/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/crypto/md4/
H A Dmd4.c71 #define FF(a, b, c, d, x, s) \ macro
181 FF (a, b, c, d, in[i], round1consts[i%4]); ROTATE; in Transform()
199 FF (a, b, c, d, in[ 0], 3); in Transform()
200 FF (d, a, b, c, in[ 1], 7); in Transform()
201 FF (c, d, a, b, in[ 2], 11); in Transform()
202 FF (b, c, d, a, in[ 3], 19); in Transform()
203 FF (a, b, c, d, in[ 4], 3); in Transform()
204 FF (d, a, b, c, in[ 5], 7); in Transform()
205 FF (c, d, a, b, in[ 6], 11); in Transform()
206 FF (b, c, d, a, in[ 7], 19); in Transform()
[all …]
/illumos-gate/usr/src/common/crypto/md4/
H A Dmd4.c86 #define FF(a, b, c, d, x, s) { \ macro
199 FF(a, b, c, d, x[ 0], S11); /* 1 */ in MD4Transform()
200 FF(d, a, b, c, x[ 1], S12); /* 2 */ in MD4Transform()
201 FF(c, d, a, b, x[ 2], S13); /* 3 */ in MD4Transform()
202 FF(b, c, d, a, x[ 3], S14); /* 4 */ in MD4Transform()
203 FF(a, b, c, d, x[ 4], S11); /* 5 */ in MD4Transform()
204 FF(d, a, b, c, x[ 5], S12); /* 6 */ in MD4Transform()
205 FF(c, d, a, b, x[ 6], S13); /* 7 */ in MD4Transform()
206 FF(b, c, d, a, x[ 7], S14); /* 8 */ in MD4Transform()
207 FF(a, b, c, d, x[ 8], S11); /* 9 */ in MD4Transform()
[all …]
/illumos-gate/usr/src/lib/gss_mechs/mech_dh/backend/crypto/
H A Dmd5.c78 #define FF(a, b, c, d, x, s, ac) \ macro
208 FF (a, b, c, d, in[ 0], S11, 3614090360U); /* 1 */ in Transform()
209 FF (d, a, b, c, in[ 1], S12, 3905402710U); /* 2 */ in Transform()
210 FF (c, d, a, b, in[ 2], S13, 606105819U); /* 3 */ in Transform()
211 FF (b, c, d, a, in[ 3], S14, 3250441966U); /* 4 */ in Transform()
212 FF (a, b, c, d, in[ 4], S11, 4118548399U); /* 5 */ in Transform()
213 FF (d, a, b, c, in[ 5], S12, 1200080426U); /* 6 */ in Transform()
214 FF (c, d, a, b, in[ 6], S13, 2821735955U); /* 7 */ in Transform()
215 FF (b, c, d, a, in[ 7], S14, 4249261313U); /* 8 */ in Transform()
216 FF (a, b, c, d, in[ 8], S11, 1770035416U); /* 9 */ in Transform()
[all …]
/illumos-gate/usr/src/contrib/ast/src/lib/libsum/
H A Dsum-md5.c158 #define FF(a, b, c, d, x, s, ac) { \ macro
191 FF (a, b, c, d, x[ 0], S11, 0xd76aa478); /* 1 */ in md5_transform()
192 FF (d, a, b, c, x[ 1], S12, 0xe8c7b756); /* 2 */ in md5_transform()
193 FF (c, d, a, b, x[ 2], S13, 0x242070db); /* 3 */ in md5_transform()
194 FF (b, c, d, a, x[ 3], S14, 0xc1bdceee); /* 4 */ in md5_transform()
195 FF (a, b, c, d, x[ 4], S11, 0xf57c0faf); /* 5 */ in md5_transform()
196 FF (d, a, b, c, x[ 5], S12, 0x4787c62a); /* 6 */ in md5_transform()
197 FF (c, d, a, b, x[ 6], S13, 0xa8304613); /* 7 */ in md5_transform()
198 FF (b, c, d, a, x[ 7], S14, 0xfd469501); /* 8 */ in md5_transform()
199 FF (a, b, c, d, x[ 8], S11, 0x698098d8); /* 9 */ in md5_transform()
[all …]
/illumos-gate/usr/src/lib/libsasl/lib/
H A Dmd5.c111 #define FF(a, b, c, d, x, s, ac) { (a) += F ((b), (c), (d)) + (x) + (UINT4)(ac); (a) = ROTATE_LEFT … macro
217 FF (a, b, c, d, x[ 0], S11, 0xd76aa478); /* 1 */
218 FF (d, a, b, c, x[ 1], S12, 0xe8c7b756); /* 2 */
219 FF (c, d, a, b, x[ 2], S13, 0x242070db); /* 3 */
220 FF (b, c, d, a, x[ 3], S14, 0xc1bdceee); /* 4 */
221 FF (a, b, c, d, x[ 4], S11, 0xf57c0faf); /* 5 */
222 FF (d, a, b, c, x[ 5], S12, 0x4787c62a); /* 6 */
223 FF (c, d, a, b, x[ 6], S13, 0xa8304613); /* 7 */
224 FF (b, c, d, a, x[ 7], S14, 0xfd469501); /* 8 */
225 FF (a, b, c, d, x[ 8], S11, 0x698098d8); /* 9 */
[all …]
/illumos-gate/usr/src/common/crypto/md5/
H A Dmd5.c86 #define FF(a, b, c, d, x, s, ac) { \ macro
563 FF(a, b, c, d, x_0, MD5_SHIFT_11, MD5_CONST_e(0)); /* 1 */ in MD5Transform()
564 FF(d, a, b, c, x_1, MD5_SHIFT_12, MD5_CONST_o(1)); /* 2 */ in MD5Transform()
565 FF(c, d, a, b, x_2, MD5_SHIFT_13, MD5_CONST_e(2)); /* 3 */ in MD5Transform()
566 FF(b, c, d, a, x_3, MD5_SHIFT_14, MD5_CONST_o(3)); /* 4 */ in MD5Transform()
567 FF(a, b, c, d, x_4, MD5_SHIFT_11, MD5_CONST_e(4)); /* 5 */ in MD5Transform()
568 FF(d, a, b, c, x_5, MD5_SHIFT_12, MD5_CONST_o(5)); /* 6 */ in MD5Transform()
569 FF(c, d, a, b, x_6, MD5_SHIFT_13, MD5_CONST_e(6)); /* 7 */ in MD5Transform()
570 FF(b, c, d, a, x_7, MD5_SHIFT_14, MD5_CONST_o(7)); /* 8 */ in MD5Transform()
571 FF(a, b, c, d, x_8, MD5_SHIFT_11, MD5_CONST_e(8)); /* 9 */ in MD5Transform()
[all …]
/illumos-gate/usr/src/cmd/asa/
H A Dasa.c37 #define FF '\f' macro
104 (void) putchar(FF); in main()
128 (void) putchar(FF); in main()
156 (void) putchar(FF); in main()
/illumos-gate/usr/src/test/util-tests/tests/libjedec/hex2spd/data/ddr4/
H A DAQD-SD4U16GN32-SE1.spd13 0010: 00 00 05 0D F8 FF 03 00 6E 6E 6E 11 00 6E F0 0A
27 00F0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF DB
H A DAQD-D4U32N32-SBW.spd13 0010: 00 00 05 0D F8 FF 03 00 6E 6E 6E 11 00 6E 30 11
H A DM386AAK40B40-CWD70.spd12 0010: 00 00 06 0D F0 FF 01 00 84 72 72 11 00 6E F0 0A
/illumos-gate/usr/src/cmd/vntsd/
H A Dchars.h45 #define FF 12 /* not support */ macro
/illumos-gate/usr/src/test/util-tests/tests/libjedec/hex2spd/data/ddr5/
H A DAQD-D5V16GR48-SB.spd42 0220: 20 20 20 20 20 20 20 00 80 CE FF 00 00 00 00 00
/illumos-gate/usr/src/cmd/lp/model/
H A Dstandard674 FF=`${TPUT} ff`
790 if [ -n "${FF}" ]
792 echo "${CR}${FF}\c"
828 if [ -n "${FF}" ]
830 echo "${CR}${FF}\c"
845 if [ -n "${FF}" ]
847 echo "${CR}${FF}\c"
1018 if [ -n "${FF}" -a "no" = "${nofilebreak}" ]
1020 echo "${CR}${FF}\c"
1071 if [ -n "${FF}" -a "yes" = "${nofilebreak}" ]
[all …]
H A Dtsol_standard690 FF=`${TPUT} ff`
806 if [ -n "${FF}" ]
808 echo "${CR}${FF}\c"
844 if [ -n "${FF}" ]
846 echo "${CR}${FF}\c"
861 if [ -n "${FF}" ]
863 echo "${CR}${FF}\c"
1099 if [ -n "${FF}" -a "no" = "${nofilebreak}" ]
1101 echo "${CR}${FF}\c"
1154 if [ -n "${FF}" -a "yes" = "${nofilebreak}" ]
[all …]
H A Dnetstandard436 FF=
449 if [ -n "${FF}" ]
451 echo "${CR}${FF}\c"
H A Dtsol_netstandard472 FF=
485 if [ -n "${FF}" ]
487 echo "${CR}${FF}\c"
H A Dtsol_standard_foomatic717 FF=`${TPUT} ff`
718 BFF=$FF
1128 if [ -n "${FF}" -a "no" = "${nofilebreak}" ]
1130 echo "${CR}${FF}\c"
1183 if [ -n "${FF}" -a "yes" = "${nofilebreak}" ]
1185 echo "${CR}${FF}\c"
H A Dtsol_netstandard_foomatic498 FF=
511 if [ -n "${FF}" ]
513 echo "${CR}${FF}\c"
/illumos-gate/usr/src/test/util-tests/tests/libjedec/hex2spd/data/ddr3/
H A DMT36KSZF2G72LDZ-1G6E2A7.spd21 0060: 00 00 00 00 00 00 0B 20 E0 01 21 20 01 FF 00 00
/illumos-gate/usr/src/test/util-tests/tests/libjedec/hex2spd/data/lpddr5/
H A DMT62F4G32D8DV-023.spd24 0010: 00 00 08 FF 00 00 00 00 AA 00 90 A8 90 C0 08 60
H A DCAMM2.spd31 0010: 00 00 06 FF 00 00 00 00 BA 00 98 A8 90 E0 0B D0
/illumos-gate/usr/src/common/dis/i386/
H A Ddis_tables.c146 FF, /* for 287 instructions */ enumerator
2865 /* [0,0] */ TNS("fadd",FF), TNS("fmul",FF), TNS("fcom",F), TNS("fcomp",F),
2866 /* [0,4] */ TNS("fsub",FF), TNS("fsubr",FF), TNS("fdiv",FF), TNS("fdivr",FF),
2877 /* [4,0] */ TNS("fadd",FF), TNS("fmul",FF), TNS("fcom",F), TNS("fcomp",F),
2878 /* [4,4] */ TNS("fsub",FF), TNS("fsubr",FF), TNS("fdiv",FF), TNS("fdivr",FF),
2883 /* [6,0] */ TNS("faddp",FF), TNS("fmulp",FF), TNS("fcomp",F), TNS("fcompp",NORM),
2884 /* [6,4] */ TNS("fsubp",FF), TNS("fsubrp",FF), TNS("fdivp",FF), TNS("fdivrp",FF),
2914 /* [00] */ TNS("fcmov.nb",FF), TNS("fcmov.ne",FF), TNS("fcmov.nbe",FF), TNS("fcmov.nu",FF),
2920 /* [00] */ TNS("fcmov.b",FF), TNS("fcmov.e",FF), TNS("fcmov.be",FF), TNS("fcmov.u",FF),
6307 case FF: in dtrace_disx86()
/illumos-gate/usr/src/cmd/gencat/
H A Dgencat.c57 #define FF '\f' macro
705 c = FF;
796 c = FF;
/illumos-gate/usr/src/data/locale/data/
H A Dwidths.txt2514 <CJK_UNIFIED_IDEOGRAPH-34FF> 2
2770 <CJK_UNIFIED_IDEOGRAPH-35FF> 2
3026 <CJK_UNIFIED_IDEOGRAPH-36FF> 2
3282 <CJK_UNIFIED_IDEOGRAPH-37FF> 2
3538 <CJK_UNIFIED_IDEOGRAPH-38FF> 2
3794 <CJK_UNIFIED_IDEOGRAPH-39FF> 2
5586 <CJK_UNIFIED_IDEOGRAPH-40FF> 2
5842 <CJK_UNIFIED_IDEOGRAPH-41FF> 2
6098 <CJK_UNIFIED_IDEOGRAPH-42FF> 2
6354 <CJK_UNIFIED_IDEOGRAPH-43FF> 2
[all …]
/illumos-gate/usr/src/cmd/troff/troff.d/
H A Dta.c449 #define FF 014 macro

1234