Searched defs:FF (Results 1 - 11 of 11) sorted by relevance

/illumos-gate/usr/src/cmd/asa/
H A Dasa.c40 #define FF '\f' macro
107 (void) putchar(FF);
131 (void) putchar(FF);
159 (void) putchar(FF);
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/crypto/md4/
H A Dmd4.c69 /* FF, GG and HH are MD4 transformations for rounds 1, 2 and 3 */
71 #define FF(a, b, c, d, x, s) \ macro
181 FF (a, b, c, d, in[i], round1consts[i%4]); ROTATE;
199 FF (a, b, c, d, in[ 0], 3);
200 FF (d, a, b, c, in[ 1], 7);
201 FF (c, d, a, b, in[ 2], 11);
202 FF (b, c, d, a, in[ 3], 19);
203 FF (a, b, c, d, in[ 4], 3);
204 FF (d, a, b, c, in[ 5], 7);
205 FF (
[all...]
/illumos-gate/usr/src/cmd/vntsd/
H A Dchars.h45 #define FF 12 /* not support */ macro
/illumos-gate/usr/src/lib/gss_mechs/mech_dh/backend/crypto/
H A Dmd5.c78 /* FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4 */
80 #define FF(a, b, c, d, x, s, ac) \ macro
210 FF (a, b, c, d, in[ 0], S11, 3614090360U); /* 1 */
211 FF (d, a, b, c, in[ 1], S12, 3905402710U); /* 2 */
212 FF (c, d, a, b, in[ 2], S13, 606105819U); /* 3 */
213 FF (b, c, d, a, in[ 3], S14, 3250441966U); /* 4 */
214 FF (a, b, c, d, in[ 4], S11, 4118548399U); /* 5 */
215 FF (d, a, b, c, in[ 5], S12, 1200080426U); /* 6 */
216 FF (c, d, a, b, in[ 6], S13, 2821735955U); /* 7 */
217 FF (
[all...]
/illumos-gate/usr/src/lib/libsasl/lib/
H A Dmd5.c108 /* FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4.
112 #define FF(a, b, c, d, x, s, ac) { (a) += F ((b), (c), (d)) + (x) + (UINT4)(ac); (a) = ROTATE_LEFT ((a), (s)); (a) += (b); } macro
218 FF (a, b, c, d, x[ 0], S11, 0xd76aa478); /* 1 */
219 FF (d, a, b, c, x[ 1], S12, 0xe8c7b756); /* 2 */
220 FF (c, d, a, b, x[ 2], S13, 0x242070db); /* 3 */
221 FF (b, c, d, a, x[ 3], S14, 0xc1bdceee); /* 4 */
222 FF (a, b, c, d, x[ 4], S11, 0xf57c0faf); /* 5 */
223 FF (d, a, b, c, x[ 5], S12, 0x4787c62a); /* 6 */
224 FF (c, d, a, b, x[ 6], S13, 0xa8304613); /* 7 */
225 FF (
[all...]
/illumos-gate/usr/src/common/crypto/md4/
H A Dmd4.c83 /* FF, GG and HH are transformations for rounds 1, 2 and 3 */
86 #define FF(a, b, c, d, x, s) { \ macro
199 FF(a, b, c, d, x[ 0], S11); /* 1 */
200 FF(d, a, b, c, x[ 1], S12); /* 2 */
201 FF(c, d, a, b, x[ 2], S13); /* 3 */
202 FF(b, c, d, a, x[ 3], S14); /* 4 */
203 FF(a, b, c, d, x[ 4], S11); /* 5 */
204 FF(d, a, b, c, x[ 5], S12); /* 6 */
205 FF(c, d, a, b, x[ 6], S13); /* 7 */
206 FF(
[all...]
/illumos-gate/usr/src/common/crypto/md5/
H A Dmd5.c82 * FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4.
86 #define FF(a, b, c, d, x, s, ac) { \ macro
443 * FF(), and likewise for `x_1' and up. note that the compiler
444 * prefers this to doing each swap right before the FF() that
563 FF(a, b, c, d, x_0, MD5_SHIFT_11, MD5_CONST_e(0)); /* 1 */
564 FF(d, a, b, c, x_1, MD5_SHIFT_12, MD5_CONST_o(1)); /* 2 */
565 FF(c, d, a, b, x_2, MD5_SHIFT_13, MD5_CONST_e(2)); /* 3 */
566 FF(b, c, d, a, x_3, MD5_SHIFT_14, MD5_CONST_o(3)); /* 4 */
567 FF(a, b, c, d, x_4, MD5_SHIFT_11, MD5_CONST_e(4)); /* 5 */
568 FF(
[all...]
/illumos-gate/usr/src/lib/libsum/common/
H A Dsum-md5.c175 /* FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4 */
177 #define FF(a, b, c, d, x, s, ac) { \ macro
210 FF (a, b, c, d, x[ 0], S11, 0xd76aa478); /* 1 */
211 FF (d, a, b, c, x[ 1], S12, 0xe8c7b756); /* 2 */
212 FF (c, d, a, b, x[ 2], S13, 0x242070db); /* 3 */
213 FF (b, c, d, a, x[ 3], S14, 0xc1bdceee); /* 4 */
214 FF (a, b, c, d, x[ 4], S11, 0xf57c0faf); /* 5 */
215 FF (d, a, b, c, x[ 5], S12, 0x4787c62a); /* 6 */
216 FF (c, d, a, b, x[ 6], S13, 0xa8304613); /* 7 */
217 FF (
[all...]
/illumos-gate/usr/src/cmd/gencat/
H A Dgencat.c57 #define FF '\f' macro
705 c = FF;
796 c = FF;
/illumos-gate/usr/src/cmd/troff/troff.d/
H A Dta.c453 #define FF 014 macro
/illumos-gate/usr/src/common/dis/i386/
H A Ddis_tables.c144 FF, /* for 287 instructions */ enumerator in enum:__anon34
2100 /* [0,0] */ TNS("fadd",FF), TNS("fmul",FF), TNS("fcom",F), TNS("fcomp",F),
2101 /* [0,4] */ TNS("fsub",FF), TNS("fsubr",FF), TNS("fdiv",FF), TNS("fdivr",FF),
2112 /* [4,0] */ TNS("fadd",FF), TNS("fmul",FF), TNS("fcom",F), TNS("fcomp",F),
2113 /* [4,4] */ TNS("fsub",FF), TN
[all...]

Completed in 163 milliseconds