crypto/libressl/crypto/md4/md4_locl.h
103
a+=((k)+(t)+F((b),(c),(d))); \
crypto/libressl/crypto/md5/md5_locl.h
115
a+=((k)+(t)+F((b),(c),(d))); \
crypto/libressl/crypto/sha/sha512.c
363
SHA_LONG64 X[9+80],*F;
crypto/libressl/crypto/sha/sha512.c
368
F = X+80;
crypto/libressl/crypto/sha/sha512.c
369
A = ctx->h[0]; F[1] = ctx->h[1];
crypto/libressl/crypto/sha/sha512.c
370
F[2] = ctx->h[2]; F[3] = ctx->h[3];
crypto/libressl/crypto/sha/sha512.c
371
E = ctx->h[4]; F[5] = ctx->h[5];
crypto/libressl/crypto/sha/sha512.c
372
F[6] = ctx->h[6]; F[7] = ctx->h[7];
crypto/libressl/crypto/sha/sha512.c
374
for (i=0;i<16;i++,F--)
crypto/libressl/crypto/sha/sha512.c
377
F[0] = A;
crypto/libressl/crypto/sha/sha512.c
378
F[4] = E;
crypto/libressl/crypto/sha/sha512.c
379
F[8] = T;
crypto/libressl/crypto/sha/sha512.c
380
T += F[7] + Sigma1(E) + Ch(E,F[5],F[6]) + K512[i];
crypto/libressl/crypto/sha/sha512.c
381
E = F[3] + T;
crypto/libressl/crypto/sha/sha512.c
382
A = T + Sigma0(A) + Maj(A,F[1],F[2]);
crypto/libressl/crypto/sha/sha512.c
385
for (;i<80;i++,F--)
crypto/libressl/crypto/sha/sha512.c
387
T = sigma0(F[8+16-1]);
crypto/libressl/crypto/sha/sha512.c
388
T += sigma1(F[8+16-14]);
crypto/libressl/crypto/sha/sha512.c
389
T += F[8+16] + F[8+16-9];
crypto/libressl/crypto/sha/sha512.c
391
F[0] = A;
crypto/libressl/crypto/sha/sha512.c
392
F[4] = E;
crypto/libressl/crypto/sha/sha512.c
393
F[8] = T;
crypto/libressl/crypto/sha/sha512.c
394
T += F[7] + Sigma1(E) + Ch(E,F[5],F[6]) + K512[i];
crypto/libressl/crypto/sha/sha512.c
395
E = F[3] + T;
crypto/libressl/crypto/sha/sha512.c
396
A = T + Sigma0(A) + Maj(A,F[1],F[2]);
crypto/libressl/crypto/sha/sha512.c
399
ctx->h[0] += A; ctx->h[1] += F[1];
crypto/libressl/crypto/sha/sha512.c
400
ctx->h[2] += F[2]; ctx->h[3] += F[3];
crypto/libressl/crypto/sha/sha512.c
401
ctx->h[4] += E; ctx->h[5] += F[5];
crypto/libressl/crypto/sha/sha512.c
402
ctx->h[6] += F[6]; ctx->h[7] += F[7];
crypto/libressl/crypto/sm3/sm3.c
100
R1(B, C, D, A, F, G, H, E, 0x6228cbce, W11, W11 ^ W15);
crypto/libressl/crypto/sm3/sm3.c
102
R1(A, B, C, D, E, F, G, H, 0xc451979c, W12, W12 ^ W00);
crypto/libressl/crypto/sm3/sm3.c
104
R1(D, A, B, C, H, E, F, G, 0x88a32f39, W13, W13 ^ W01);
crypto/libressl/crypto/sm3/sm3.c
106
R1(C, D, A, B, G, H, E, F, 0x11465e73, W14, W14 ^ W02);
crypto/libressl/crypto/sm3/sm3.c
108
R1(B, C, D, A, F, G, H, E, 0x228cbce6, W15, W15 ^ W03);
crypto/libressl/crypto/sm3/sm3.c
110
R2(A, B, C, D, E, F, G, H, 0x9d8a7a87, W00, W00 ^ W04);
crypto/libressl/crypto/sm3/sm3.c
112
R2(D, A, B, C, H, E, F, G, 0x3b14f50f, W01, W01 ^ W05);
crypto/libressl/crypto/sm3/sm3.c
114
R2(C, D, A, B, G, H, E, F, 0x7629ea1e, W02, W02 ^ W06);
crypto/libressl/crypto/sm3/sm3.c
116
R2(B, C, D, A, F, G, H, E, 0xec53d43c, W03, W03 ^ W07);
crypto/libressl/crypto/sm3/sm3.c
118
R2(A, B, C, D, E, F, G, H, 0xd8a7a879, W04, W04 ^ W08);
crypto/libressl/crypto/sm3/sm3.c
120
R2(D, A, B, C, H, E, F, G, 0xb14f50f3, W05, W05 ^ W09);
crypto/libressl/crypto/sm3/sm3.c
122
R2(C, D, A, B, G, H, E, F, 0x629ea1e7, W06, W06 ^ W10);
crypto/libressl/crypto/sm3/sm3.c
124
R2(B, C, D, A, F, G, H, E, 0xc53d43ce, W07, W07 ^ W11);
crypto/libressl/crypto/sm3/sm3.c
126
R2(A, B, C, D, E, F, G, H, 0x8a7a879d, W08, W08 ^ W12);
crypto/libressl/crypto/sm3/sm3.c
128
R2(D, A, B, C, H, E, F, G, 0x14f50f3b, W09, W09 ^ W13);
crypto/libressl/crypto/sm3/sm3.c
130
R2(C, D, A, B, G, H, E, F, 0x29ea1e76, W10, W10 ^ W14);
crypto/libressl/crypto/sm3/sm3.c
132
R2(B, C, D, A, F, G, H, E, 0x53d43cec, W11, W11 ^ W15);
crypto/libressl/crypto/sm3/sm3.c
134
R2(A, B, C, D, E, F, G, H, 0xa7a879d8, W12, W12 ^ W00);
crypto/libressl/crypto/sm3/sm3.c
136
R2(D, A, B, C, H, E, F, G, 0x4f50f3b1, W13, W13 ^ W01);
crypto/libressl/crypto/sm3/sm3.c
138
R2(C, D, A, B, G, H, E, F, 0x9ea1e762, W14, W14 ^ W02);
crypto/libressl/crypto/sm3/sm3.c
140
R2(B, C, D, A, F, G, H, E, 0x3d43cec5, W15, W15 ^ W03);
crypto/libressl/crypto/sm3/sm3.c
142
R2(A, B, C, D, E, F, G, H, 0x7a879d8a, W00, W00 ^ W04);
crypto/libressl/crypto/sm3/sm3.c
144
R2(D, A, B, C, H, E, F, G, 0xf50f3b14, W01, W01 ^ W05);
crypto/libressl/crypto/sm3/sm3.c
146
R2(C, D, A, B, G, H, E, F, 0xea1e7629, W02, W02 ^ W06);
crypto/libressl/crypto/sm3/sm3.c
148
R2(B, C, D, A, F, G, H, E, 0xd43cec53, W03, W03 ^ W07);
crypto/libressl/crypto/sm3/sm3.c
150
R2(A, B, C, D, E, F, G, H, 0xa879d8a7, W04, W04 ^ W08);
crypto/libressl/crypto/sm3/sm3.c
152
R2(D, A, B, C, H, E, F, G, 0x50f3b14f, W05, W05 ^ W09);
crypto/libressl/crypto/sm3/sm3.c
154
R2(C, D, A, B, G, H, E, F, 0xa1e7629e, W06, W06 ^ W10);
crypto/libressl/crypto/sm3/sm3.c
156
R2(B, C, D, A, F, G, H, E, 0x43cec53d, W07, W07 ^ W11);
crypto/libressl/crypto/sm3/sm3.c
158
R2(A, B, C, D, E, F, G, H, 0x879d8a7a, W08, W08 ^ W12);
crypto/libressl/crypto/sm3/sm3.c
160
R2(D, A, B, C, H, E, F, G, 0x0f3b14f5, W09, W09 ^ W13);
crypto/libressl/crypto/sm3/sm3.c
162
R2(C, D, A, B, G, H, E, F, 0x1e7629ea, W10, W10 ^ W14);
crypto/libressl/crypto/sm3/sm3.c
164
R2(B, C, D, A, F, G, H, E, 0x3cec53d4, W11, W11 ^ W15);
crypto/libressl/crypto/sm3/sm3.c
166
R2(A, B, C, D, E, F, G, H, 0x79d8a7a8, W12, W12 ^ W00);
crypto/libressl/crypto/sm3/sm3.c
168
R2(D, A, B, C, H, E, F, G, 0xf3b14f50, W13, W13 ^ W01);
crypto/libressl/crypto/sm3/sm3.c
170
R2(C, D, A, B, G, H, E, F, 0xe7629ea1, W14, W14 ^ W02);
crypto/libressl/crypto/sm3/sm3.c
172
R2(B, C, D, A, F, G, H, E, 0xcec53d43, W15, W15 ^ W03);
crypto/libressl/crypto/sm3/sm3.c
174
R2(A, B, C, D, E, F, G, H, 0x9d8a7a87, W00, W00 ^ W04);
crypto/libressl/crypto/sm3/sm3.c
176
R2(D, A, B, C, H, E, F, G, 0x3b14f50f, W01, W01 ^ W05);
crypto/libressl/crypto/sm3/sm3.c
178
R2(C, D, A, B, G, H, E, F, 0x7629ea1e, W02, W02 ^ W06);
crypto/libressl/crypto/sm3/sm3.c
180
R2(B, C, D, A, F, G, H, E, 0xec53d43c, W03, W03 ^ W07);
crypto/libressl/crypto/sm3/sm3.c
182
R2(A, B, C, D, E, F, G, H, 0xd8a7a879, W04, W04 ^ W08);
crypto/libressl/crypto/sm3/sm3.c
183
R2(D, A, B, C, H, E, F, G, 0xb14f50f3, W05, W05 ^ W09);
crypto/libressl/crypto/sm3/sm3.c
184
R2(C, D, A, B, G, H, E, F, 0x629ea1e7, W06, W06 ^ W10);
crypto/libressl/crypto/sm3/sm3.c
185
R2(B, C, D, A, F, G, H, E, 0xc53d43ce, W07, W07 ^ W11);
crypto/libressl/crypto/sm3/sm3.c
186
R2(A, B, C, D, E, F, G, H, 0x8a7a879d, W08, W08 ^ W12);
crypto/libressl/crypto/sm3/sm3.c
187
R2(D, A, B, C, H, E, F, G, 0x14f50f3b, W09, W09 ^ W13);
crypto/libressl/crypto/sm3/sm3.c
188
R2(C, D, A, B, G, H, E, F, 0x29ea1e76, W10, W10 ^ W14);
crypto/libressl/crypto/sm3/sm3.c
189
R2(B, C, D, A, F, G, H, E, 0x53d43cec, W11, W11 ^ W15);
crypto/libressl/crypto/sm3/sm3.c
190
R2(A, B, C, D, E, F, G, H, 0xa7a879d8, W12, W12 ^ W00);
crypto/libressl/crypto/sm3/sm3.c
191
R2(D, A, B, C, H, E, F, G, 0x4f50f3b1, W13, W13 ^ W01);
crypto/libressl/crypto/sm3/sm3.c
192
R2(C, D, A, B, G, H, E, F, 0x9ea1e762, W14, W14 ^ W02);
crypto/libressl/crypto/sm3/sm3.c
193
R2(B, C, D, A, F, G, H, E, 0x3d43cec5, W15, W15 ^ W03);
crypto/libressl/crypto/sm3/sm3.c
200
ctx->F ^= F;
crypto/libressl/crypto/sm3/sm3.c
33
c->F = SM3_F;
crypto/libressl/crypto/sm3/sm3.c
43
SM3_WORD A, B, C, D, E, F, G, H;
crypto/libressl/crypto/sm3/sm3.c
53
F = ctx->F;
crypto/libressl/crypto/sm3/sm3.c
78
R1(A, B, C, D, E, F, G, H, 0x79cc4519, W00, W00 ^ W04);
crypto/libressl/crypto/sm3/sm3.c
80
R1(D, A, B, C, H, E, F, G, 0xf3988a32, W01, W01 ^ W05);
crypto/libressl/crypto/sm3/sm3.c
82
R1(C, D, A, B, G, H, E, F, 0xe7311465, W02, W02 ^ W06);
crypto/libressl/crypto/sm3/sm3.c
84
R1(B, C, D, A, F, G, H, E, 0xce6228cb, W03, W03 ^ W07);
crypto/libressl/crypto/sm3/sm3.c
86
R1(A, B, C, D, E, F, G, H, 0x9cc45197, W04, W04 ^ W08);
crypto/libressl/crypto/sm3/sm3.c
88
R1(D, A, B, C, H, E, F, G, 0x3988a32f, W05, W05 ^ W09);
crypto/libressl/crypto/sm3/sm3.c
90
R1(C, D, A, B, G, H, E, F, 0x7311465e, W06, W06 ^ W10);
crypto/libressl/crypto/sm3/sm3.c
92
R1(B, C, D, A, F, G, H, E, 0xe6228cbc, W07, W07 ^ W11);
crypto/libressl/crypto/sm3/sm3.c
94
R1(A, B, C, D, E, F, G, H, 0xcc451979, W08, W08 ^ W12);
crypto/libressl/crypto/sm3/sm3.c
96
R1(D, A, B, C, H, E, F, G, 0x988a32f3, W09, W09 ^ W13);
crypto/libressl/crypto/sm3/sm3.c
98
R1(C, D, A, B, G, H, E, F, 0x311465e7, W10, W10 ^ W14);
crypto/libressl/crypto/sm3/sm3_locl.h
37
ll = (c)->F; HOST_l2c(ll, (s)); \
crypto/libressl/crypto/sm3/sm3_locl.h
60
#define ROUND(A, B, C, D, E, F, G, H, TJ, Wi, Wj, FF, GG) do { \
crypto/libressl/crypto/sm3/sm3_locl.h
65
const SM3_WORD TT2 = GG(E, F, G) + H + SS1 + Wi; \
crypto/libressl/crypto/sm3/sm3_locl.h
68
F = ROTATE(F, 19); \
crypto/libressl/crypto/sm3/sm3_locl.h
72
#define R1(A, B, C, D, E, F, G, H, TJ, Wi, Wj) \
crypto/libressl/crypto/sm3/sm3_locl.h
73
ROUND(A, B, C, D, E, F, G, H, TJ, Wi, Wj, FF0, GG0)
crypto/libressl/crypto/sm3/sm3_locl.h
75
#define R2(A, B, C, D, E, F, G, H, TJ, Wi, Wj) \
crypto/libressl/crypto/sm3/sm3_locl.h
76
ROUND(A, B, C, D, E, F, G, H, TJ, Wi, Wj, FF1, GG1)
crypto/libressl/crypto/sm4/sm4.c
203
#define SM4_ROUNDS(k0, k1, k2, k3, F) \
crypto/libressl/crypto/sm4/sm4.c
205
B0 ^= F(B1 ^ B2 ^ B3 ^ ks->rk[k0]); \
crypto/libressl/crypto/sm4/sm4.c
206
B1 ^= F(B0 ^ B2 ^ B3 ^ ks->rk[k1]); \
crypto/libressl/crypto/sm4/sm4.c
207
B2 ^= F(B0 ^ B1 ^ B3 ^ ks->rk[k2]); \
crypto/libressl/crypto/sm4/sm4.c
208
B3 ^= F(B0 ^ B1 ^ B2 ^ ks->rk[k3]); \
crypto/libressl/include/openssl/sm3.h
39
SM3_WORD A, B, C, D, E, F, G, H;
crypto/openssh/ed25519.c
33
F(0)
crypto/openssh/ed25519.c
34
F(1)
crypto/openssh/ed25519.c
35
F(2)
crypto/openssh/ed25519.c
36
F(3)
crypto/openssh/ed25519.c
37
F(4)
crypto/openssh/ed25519.c
38
F(5)
crypto/openssh/ed25519.c
39
F(6)
crypto/openssh/ed25519.c
40
F(7)
crypto/openssh/ed25519.c
41
F(8)
crypto/openssh/ed25519.c
42
F(9)
crypto/openssh/ed25519.c
43
F(10)
crypto/openssh/ed25519.c
44
F(11)
crypto/openssh/ed25519.c
45
F(12)
crypto/openssh/ed25519.c
46
F(13)
crypto/openssh/ed25519.c
47
F(14)
crypto/openssh/ed25519.c
48
F(15)
crypto/openssh/ed25519.c
49
F(16)
crypto/openssh/ed25519.c
50
F(17)
crypto/openssh/ed25519.c
51
F(18)
crypto/openssh/ed25519.c
52
F(19)
crypto/openssh/ed25519.c
53
F(20)
crypto/openssh/ed25519.c
54
F(21)
crypto/openssh/ed25519.c
55
F(22)
crypto/openssh/ed25519.c
56
F(23)
crypto/openssh/ed25519.c
57
F(24)
crypto/openssh/ed25519.c
58
F(25)
crypto/openssh/ed25519.c
59
F(26)
crypto/openssh/ed25519.c
60
F(27)
crypto/openssh/ed25519.c
61
F(28)
crypto/openssh/ed25519.c
62
F(29)
crypto/openssh/ed25519.c
63
F(30)
crypto/openssh/ed25519.c
64
F(31)
include/nsswitch.h
134
#define NS_FILES_CB(F,C) { NSSRC_FILES, F, C },
include/nsswitch.h
135
#define NS_COMPAT_CB(F,C) { NSSRC_COMPAT, F, C },
include/nsswitch.h
136
#define NS_FALLBACK_CB(F) { NSSRC_FALLBACK, F, NULL },
include/nsswitch.h
139
# define NS_DNS_CB(F,C) { NSSRC_DNS, F, C },
include/nsswitch.h
141
# define NS_DNS_CB(F,C)
include/nsswitch.h
145
# define NS_NIS_CB(F,C) { NSSRC_NIS, F, C },
include/nsswitch.h
147
# define NS_NIS_CB(F,C)
lib/libcrypt/blowfish.c
69
#define BLFRND(s,p,i,j,n) (i ^= F(s,j) ^ (p)[n])
lib/libssh/openbsd-compat/blowfish.c
68
#define BLFRND(s,p,i,j,n) (i ^= F(s,j) ^ (p)[n])
libexec/ftpd/ftpcmd.y
115
A B C E F I
libexec/ftpd/ftpcmd.y
1474
return (F);
libexec/ftpd/ftpcmd.y
948
: F
sbin/growfs/debug.h
114
#define DBG_DUMP_HEX(F,C,M)
sbin/growfs/debug.h
115
#define DBG_DUMP_FS(F,C)
sbin/growfs/debug.h
116
#define DBG_DUMP_CG(F,C,M)
sbin/growfs/debug.h
117
#define DBG_DUMP_CSUM(F,C,M)
sbin/growfs/debug.h
118
#define DBG_DUMP_INO(F,C,M)
sbin/growfs/debug.h
119
#define DBG_DUMP_IBLK(F,C,M,L)
sbin/growfs/debug.h
120
#define DBG_DUMP_INMAP(F,C,M)
sbin/growfs/debug.h
121
#define DBG_DUMP_FRMAP(F,C,M)
sbin/growfs/debug.h
122
#define DBG_DUMP_CLMAP(F,C,M)
sbin/growfs/debug.h
123
#define DBG_DUMP_CLSUM(F,C,M)
sbin/growfs/debug.h
124
#define DBG_DUMP_SPTBL(F,C,M)
sbin/growfs/debug.h
66
#define DBG_DUMP_HEX(F,C,M) dbg_dump_hex((F),(C),(M))
sbin/growfs/debug.h
67
#define DBG_DUMP_FS(F,C) dbg_dump_fs((F),(C))
sbin/growfs/debug.h
68
#define DBG_DUMP_CG(F,C,M) dbg_dump_cg((C),(M))
sbin/growfs/debug.h
69
#define DBG_DUMP_CSUM(F,C,M) dbg_dump_csum((C),(M))
sbin/growfs/debug.h
70
#define DBG_DUMP_INO(F,C,M) dbg_dump_ino((F),(C),(M))
sbin/growfs/debug.h
71
#define DBG_DUMP_IBLK(F,C,M,L) dbg_dump_iblk((F),(C),(M),(L))
sbin/growfs/debug.h
72
#define DBG_DUMP_INMAP(F,C,M) dbg_dump_inmap((F),(C),(M))
sbin/growfs/debug.h
73
#define DBG_DUMP_FRMAP(F,C,M) dbg_dump_frmap((F),(C),(M))
sbin/growfs/debug.h
74
#define DBG_DUMP_CLMAP(F,C,M) dbg_dump_clmap((F),(C),(M))
sbin/growfs/debug.h
75
#define DBG_DUMP_CLSUM(F,C,M) dbg_dump_clsum((F),(C),(M))
sbin/growfs/debug.h
76
#define DBG_DUMP_SPTBL(F,C,M) dbg_dump_sptbl((F),(C),(M))
sbin/ipfw/ipfw2.c
1381
(uintmax_t)q[l].S, (uintmax_t)q[l].F);
sbin/ipfw3/ipfw3dummynet.c
602
(uintmax_t)q[l].S, (uintmax_t)q[l].F);
sbin/iscontrol/fsm.c
515
tp->F = 1;
sbin/mount_nfs/mount_nfs.c
219
F(NOCONN);
sbin/mount_nfs/mount_nfs.c
220
F(DUMBTIMR);
sbin/mount_nfs/mount_nfs.c
222
F(RDIRPLUS);
sbin/mount_nfs/mount_nfs.c
223
F(RESVPORT);
sbin/mount_nfs/mount_nfs.c
224
F(SOFT);
sbin/mount_nfs/mount_nfs.c
225
F(ACREGMIN);
sbin/mount_nfs/mount_nfs.c
226
F(ACREGMAX);
sbin/mount_nfs/mount_nfs.c
227
F(ACDIRMIN);
sbin/mount_nfs/mount_nfs.c
228
F(ACDIRMAX);
sbin/mount_nfs/mount_nfs.c
230
F(CACHE);
sbin/mount_nfs/mount_nfs.c
232
F(RETRYCNT);
sys/bus/cam/scsi/scsi_all.c
130
#define ALL (D | T | L | P | W | R | O | M | A | E | B | K | V | F | S | C)
sys/bus/cam/scsi/scsi_all.c
249
{ 0x15, ALL & ~(P | R | B | F), "MODE SELECT(6)" },
sys/bus/cam/scsi/scsi_all.c
251
{ 0x16, ALL & ~(R | B | V | F | C), "RESERVE(6)" },
sys/bus/cam/scsi/scsi_all.c
255
{ 0x17, ALL & ~(R | B | V | F | C), "RELEASE(6)" },
sys/bus/cam/scsi/scsi_all.c
263
{ 0x1A, ALL & ~(P | R | B | F), "MODE SENSE(6)" },
sys/bus/cam/scsi/scsi_all.c
265
{ 0x1B, D | W | R | O | A | B | K | F, "START STOP UNIT" },
sys/bus/cam/scsi/scsi_all.c
279
{ 0x1E, D | T | W | R | O | M | K | F, "PREVENT ALLOW MEDIUM REMOVAL" },
sys/bus/cam/scsi/scsi_all.c
413
{ 0x56, ALL & ~(R | B | K | V | F | C), "RESERVE(10)" },
sys/bus/cam/scsi/scsi_all.c
417
{ 0x57, ALL & ~(R | B | K | V | F | C), "RELEASE(10)" },
sys/bus/cam/scsi/scsi_all.c
438
{ 0x7F, D | F, "variable length CDB (more than 16 bytes)" },
sys/bus/cam/scsi/scsi_all.c
456
{ 0x86, ALL & ~(L | R | F), "ACCESS CONTROL IN" },
sys/bus/cam/scsi/scsi_all.c
458
{ 0x87, ALL & ~(L | R | F), "ACCESS CONTROL OUT" },
sys/bus/cam/scsi/scsi_all.c
517
{ 0xA3, ALL & ~(P | R | F), "MAINTENANCE (IN)" },
sys/bus/cam/scsi/scsi_all.c
521
{ 0xA4, ALL & ~(P | R | F), "MAINTENANCE (OUT)" },
sys/dev/disk/iscsi/initiator/isc_sm.c
186
nop_out->F = 1;
sys/dev/disk/iscsi/initiator/isc_sm.c
219
bhs->F = 1;
sys/dev/disk/iscsi/initiator/iscsi.h
133
u_char F:1;
sys/dev/disk/iscsi/initiator/iscsi.h
171
u_char F:1; // Final bit
sys/dev/disk/iscsi/initiator/iscsi.h
188
u_char F:1; // Final bit
sys/dev/disk/iscsi/initiator/iscsi.h
205
u_char F:1; // Final bit
sys/dev/disk/iscsi/initiator/iscsi.h
223
u_char F:1; // Final bit
sys/dev/disk/iscsi/initiator/iscsi.h
246
u_char F:1; // Final bit
sys/dev/disk/iscsi/initiator/iscsi.h
263
u_char F:1;
sys/dev/disk/iscsi/initiator/iscsi.h
279
u_char F:1;
sys/dev/disk/iscsi/initiator/iscsi.h
351
u_char F:1; // Final
sys/dev/disk/iscsi/initiator/iscsi.h
87
u_char F:1; // Final bit
sys/dev/disk/iscsi/initiator/iscsi_subr.c
116
cmd->F = (bs < bleft)? 0: 1; // is this the last one?
sys/dev/disk/iscsi/initiator/iscsi_subr.c
481
cmd->F = 1;
sys/dev/drm/amd/display/dc/dce112/dce112_resource.c
370
clk_src_regs(5, F)
sys/dev/drm/amd/display/dc/dce120/dce120_resource.c
355
clk_src_regs(5, F)
sys/dev/drm/i915/i915_cmd_parser.c
215
CMD( MI_NOOP, SMI, F, 1, S ),
sys/dev/drm/i915/i915_cmd_parser.c
216
CMD( MI_USER_INTERRUPT, SMI, F, 1, R ),
sys/dev/drm/i915/i915_cmd_parser.c
217
CMD( MI_WAIT_FOR_EVENT, SMI, F, 1, M ),
sys/dev/drm/i915/i915_cmd_parser.c
218
CMD( MI_ARB_CHECK, SMI, F, 1, S ),
sys/dev/drm/i915/i915_cmd_parser.c
219
CMD( MI_REPORT_HEAD, SMI, F, 1, S ),
sys/dev/drm/i915/i915_cmd_parser.c
220
CMD( MI_SUSPEND_FLUSH, SMI, F, 1, S ),
sys/dev/drm/i915/i915_cmd_parser.c
221
CMD( MI_SEMAPHORE_MBOX, SMI, !F, 0xFF, R ),
sys/dev/drm/i915/i915_cmd_parser.c
222
CMD( MI_STORE_DWORD_INDEX, SMI, !F, 0xFF, R ),
sys/dev/drm/i915/i915_cmd_parser.c
223
CMD( MI_LOAD_REGISTER_IMM(1), SMI, !F, 0xFF, W,
sys/dev/drm/i915/i915_cmd_parser.c
225
CMD( MI_STORE_REGISTER_MEM, SMI, F, 3, W | B,
sys/dev/drm/i915/i915_cmd_parser.c
232
CMD( MI_LOAD_REGISTER_MEM, SMI, F, 3, W | B,
sys/dev/drm/i915/i915_cmd_parser.c
244
CMD( MI_BATCH_BUFFER_START, SMI, !F, 0xFF, S ),
sys/dev/drm/i915/i915_cmd_parser.c
248
CMD( MI_FLUSH, SMI, F, 1, S ),
sys/dev/drm/i915/i915_cmd_parser.c
249
CMD( MI_ARB_ON_OFF, SMI, F, 1, R ),
sys/dev/drm/i915/i915_cmd_parser.c
250
CMD( MI_PREDICATE, SMI, F, 1, S ),
sys/dev/drm/i915/i915_cmd_parser.c
251
CMD( MI_TOPOLOGY_FILTER, SMI, F, 1, S ),
sys/dev/drm/i915/i915_cmd_parser.c
252
CMD( MI_SET_APPID, SMI, F, 1, S ),
sys/dev/drm/i915/i915_cmd_parser.c
253
CMD( MI_DISPLAY_FLIP, SMI, !F, 0xFF, R ),
sys/dev/drm/i915/i915_cmd_parser.c
254
CMD( MI_SET_CONTEXT, SMI, !F, 0xFF, R ),
sys/dev/drm/i915/i915_cmd_parser.c
255
CMD( MI_URB_CLEAR, SMI, !F, 0xFF, S ),
sys/dev/drm/i915/i915_cmd_parser.c
256
CMD( MI_STORE_DWORD_IMM, SMI, !F, 0x3F, B,
sys/dev/drm/i915/i915_cmd_parser.c
262
CMD( MI_UPDATE_GTT, SMI, !F, 0xFF, R ),
sys/dev/drm/i915/i915_cmd_parser.c
263
CMD( MI_CLFLUSH, SMI, !F, 0x3FF, B,
sys/dev/drm/i915/i915_cmd_parser.c
269
CMD( MI_REPORT_PERF_COUNT, SMI, !F, 0x3F, B,
sys/dev/drm/i915/i915_cmd_parser.c
275
CMD( MI_CONDITIONAL_BATCH_BUFFER_END, SMI, !F, 0xFF, B,
sys/dev/drm/i915/i915_cmd_parser.c
281
CMD( GFX_OP_3DSTATE_VF_STATISTICS, S3D, F, 1, S ),
sys/dev/drm/i915/i915_cmd_parser.c
282
CMD( PIPELINE_SELECT, S3D, F, 1, S ),
sys/dev/drm/i915/i915_cmd_parser.c
283
CMD( MEDIA_VFE_STATE, S3D, !F, 0xFFFF, B,
sys/dev/drm/i915/i915_cmd_parser.c
289
CMD( GPGPU_OBJECT, S3D, !F, 0xFF, S ),
sys/dev/drm/i915/i915_cmd_parser.c
290
CMD( GPGPU_WALKER, S3D, !F, 0xFF, S ),
sys/dev/drm/i915/i915_cmd_parser.c
291
CMD( GFX_OP_3DSTATE_SO_DECL_LIST, S3D, !F, 0x1FF, S ),
sys/dev/drm/i915/i915_cmd_parser.c
292
CMD( GFX_OP_PIPE_CONTROL(5), S3D, !F, 0xFF, B,
sys/dev/drm/i915/i915_cmd_parser.c
309
CMD( MI_SET_PREDICATE, SMI, F, 1, S ),
sys/dev/drm/i915/i915_cmd_parser.c
310
CMD( MI_RS_CONTROL, SMI, F, 1, S ),
sys/dev/drm/i915/i915_cmd_parser.c
311
CMD( MI_URB_ATOMIC_ALLOC, SMI, F, 1, S ),
sys/dev/drm/i915/i915_cmd_parser.c
312
CMD( MI_SET_APPID, SMI, F, 1, S ),
sys/dev/drm/i915/i915_cmd_parser.c
313
CMD( MI_RS_CONTEXT, SMI, F, 1, S ),
sys/dev/drm/i915/i915_cmd_parser.c
314
CMD( MI_LOAD_SCAN_LINES_INCL, SMI, !F, 0x3F, M ),
sys/dev/drm/i915/i915_cmd_parser.c
315
CMD( MI_LOAD_SCAN_LINES_EXCL, SMI, !F, 0x3F, R ),
sys/dev/drm/i915/i915_cmd_parser.c
316
CMD( MI_LOAD_REGISTER_REG, SMI, !F, 0xFF, W,
sys/dev/drm/i915/i915_cmd_parser.c
318
CMD( MI_RS_STORE_DATA_IMM, SMI, !F, 0xFF, S ),
sys/dev/drm/i915/i915_cmd_parser.c
319
CMD( MI_LOAD_URB_MEM, SMI, !F, 0xFF, S ),
sys/dev/drm/i915/i915_cmd_parser.c
320
CMD( MI_STORE_URB_MEM, SMI, !F, 0xFF, S ),
sys/dev/drm/i915/i915_cmd_parser.c
321
CMD( GFX_OP_3DSTATE_DX9_CONSTANTF_VS, S3D, !F, 0x7FF, S ),
sys/dev/drm/i915/i915_cmd_parser.c
322
CMD( GFX_OP_3DSTATE_DX9_CONSTANTF_PS, S3D, !F, 0x7FF, S ),
sys/dev/drm/i915/i915_cmd_parser.c
324
CMD( GFX_OP_3DSTATE_BINDING_TABLE_EDIT_VS, S3D, !F, 0x1FF, S ),
sys/dev/drm/i915/i915_cmd_parser.c
325
CMD( GFX_OP_3DSTATE_BINDING_TABLE_EDIT_GS, S3D, !F, 0x1FF, S ),
sys/dev/drm/i915/i915_cmd_parser.c
326
CMD( GFX_OP_3DSTATE_BINDING_TABLE_EDIT_HS, S3D, !F, 0x1FF, S ),
sys/dev/drm/i915/i915_cmd_parser.c
327
CMD( GFX_OP_3DSTATE_BINDING_TABLE_EDIT_DS, S3D, !F, 0x1FF, S ),
sys/dev/drm/i915/i915_cmd_parser.c
328
CMD( GFX_OP_3DSTATE_BINDING_TABLE_EDIT_PS, S3D, !F, 0x1FF, S ),
sys/dev/drm/i915/i915_cmd_parser.c
332
CMD( MI_ARB_ON_OFF, SMI, F, 1, R ),
sys/dev/drm/i915/i915_cmd_parser.c
333
CMD( MI_SET_APPID, SMI, F, 1, S ),
sys/dev/drm/i915/i915_cmd_parser.c
334
CMD( MI_STORE_DWORD_IMM, SMI, !F, 0xFF, B,
sys/dev/drm/i915/i915_cmd_parser.c
340
CMD( MI_UPDATE_GTT, SMI, !F, 0x3F, R ),
sys/dev/drm/i915/i915_cmd_parser.c
341
CMD( MI_FLUSH_DW, SMI, !F, 0x3F, B,
sys/dev/drm/i915/i915_cmd_parser.c
361
CMD( MI_CONDITIONAL_BATCH_BUFFER_END, SMI, !F, 0xFF, B,
sys/dev/drm/i915/i915_cmd_parser.c
372
CMD( MFX_WAIT, SMFX, F, 1, S ),
sys/dev/drm/i915/i915_cmd_parser.c
376
CMD( MI_ARB_ON_OFF, SMI, F, 1, R ),
sys/dev/drm/i915/i915_cmd_parser.c
377
CMD( MI_SET_APPID, SMI, F, 1, S ),
sys/dev/drm/i915/i915_cmd_parser.c
378
CMD( MI_STORE_DWORD_IMM, SMI, !F, 0xFF, B,
sys/dev/drm/i915/i915_cmd_parser.c
384
CMD( MI_UPDATE_GTT, SMI, !F, 0x3F, R ),
sys/dev/drm/i915/i915_cmd_parser.c
385
CMD( MI_FLUSH_DW, SMI, !F, 0x3F, B,
sys/dev/drm/i915/i915_cmd_parser.c
405
CMD( MI_CONDITIONAL_BATCH_BUFFER_END, SMI, !F, 0xFF, B,
sys/dev/drm/i915/i915_cmd_parser.c
414
CMD( MI_DISPLAY_FLIP, SMI, !F, 0xFF, R ),
sys/dev/drm/i915/i915_cmd_parser.c
415
CMD( MI_STORE_DWORD_IMM, SMI, !F, 0x3FF, B,
sys/dev/drm/i915/i915_cmd_parser.c
421
CMD( MI_UPDATE_GTT, SMI, !F, 0x3F, R ),
sys/dev/drm/i915/i915_cmd_parser.c
422
CMD( MI_FLUSH_DW, SMI, !F, 0x3F, B,
sys/dev/drm/i915/i915_cmd_parser.c
442
CMD( COLOR_BLT, S2D, !F, 0x3F, S ),
sys/dev/drm/i915/i915_cmd_parser.c
443
CMD( SRC_COPY_BLT, S2D, !F, 0x3F, S ),
sys/dev/drm/i915/i915_cmd_parser.c
447
CMD( MI_LOAD_SCAN_LINES_INCL, SMI, !F, 0x3F, M ),
sys/dev/drm/i915/i915_cmd_parser.c
448
CMD( MI_LOAD_SCAN_LINES_EXCL, SMI, !F, 0x3F, R ),
sys/dev/drm/i915/i915_cmd_parser.c
452
CMD(MI_NOOP, SMI, F, 1, S);
sys/dev/misc/kbd/kbdtables.h
104
/*3b*/{{ F( 1), F(13), F(25), F(37), S( 1), S(11), S( 1), S(11),}, 0xFF,0x00 },
sys/dev/misc/kbd/kbdtables.h
105
/*3c*/{{ F( 2), F(14), F(26), F(38), S( 2), S(12), S( 2), S(12),}, 0xFF,0x00 },
sys/dev/misc/kbd/kbdtables.h
106
/*3d*/{{ F( 3), F(15), F(27), F(39), S( 3), S(13), S( 3), S(13),}, 0xFF,0x00 },
sys/dev/misc/kbd/kbdtables.h
107
/*3e*/{{ F( 4), F(16), F(28), F(40), S( 4), S(14), S( 4), S(14),}, 0xFF,0x00 },
sys/dev/misc/kbd/kbdtables.h
108
/*3f*/{{ F( 5), F(17), F(29), F(41), S( 5), S(15), S( 5), S(15),}, 0xFF,0x00 },
sys/dev/misc/kbd/kbdtables.h
109
/*40*/{{ F( 6), F(18), F(30), F(42), S( 6), S(16), S( 6), S(16),}, 0xFF,0x00 },
sys/dev/misc/kbd/kbdtables.h
110
/*41*/{{ F( 7), F(19), F(31), F(43), S( 7), S( 7), S( 7), S( 7),}, 0xFF,0x00 },
sys/dev/misc/kbd/kbdtables.h
111
/*42*/{{ F( 8), F(20), F(32), F(44), S( 8), S( 8), S( 8), S( 8),}, 0xFF,0x00 },
sys/dev/misc/kbd/kbdtables.h
112
/*43*/{{ F( 9), F(21), F(33), F(45), S( 9), S( 9), S( 9), S( 9),}, 0xFF,0x00 },
sys/dev/misc/kbd/kbdtables.h
113
/*44*/{{ F(10), F(22), F(34), F(46), S(10), S(10), S(10), S(10),}, 0xFF,0x00 },
sys/dev/misc/kbd/kbdtables.h
116
/*47*/{{ F(49), '7', '7', '7', '7', '7', '7', '7', }, 0x80,0x02 },
sys/dev/misc/kbd/kbdtables.h
117
/*48*/{{ F(50), '8', '8', '8', '8', '8', '8', '8', }, 0x80,0x02 },
sys/dev/misc/kbd/kbdtables.h
118
/*49*/{{ F(51), '9', '9', '9', '9', '9', '9', '9', }, 0x80,0x02 },
sys/dev/misc/kbd/kbdtables.h
119
/*4a*/{{ F(52), '-', '-', '-', '-', '-', '-', '-', }, 0x80,0x02 },
sys/dev/misc/kbd/kbdtables.h
120
/*4b*/{{ F(53), '4', '4', '4', '4', '4', '4', '4', }, 0x80,0x02 },
sys/dev/misc/kbd/kbdtables.h
121
/*4c*/{{ F(54), '5', '5', '5', '5', '5', '5', '5', }, 0x80,0x02 },
sys/dev/misc/kbd/kbdtables.h
122
/*4d*/{{ F(55), '6', '6', '6', '6', '6', '6', '6', }, 0x80,0x02 },
sys/dev/misc/kbd/kbdtables.h
123
/*4e*/{{ F(56), '+', '+', '+', '+', '+', '+', '+', }, 0x80,0x02 },
sys/dev/misc/kbd/kbdtables.h
124
/*4f*/{{ F(57), '1', '1', '1', '1', '1', '1', '1', }, 0x80,0x02 },
sys/dev/misc/kbd/kbdtables.h
125
/*50*/{{ F(58), '2', '2', '2', '2', '2', '2', '2', }, 0x80,0x02 },
sys/dev/misc/kbd/kbdtables.h
126
/*51*/{{ F(59), '3', '3', '3', '3', '3', '3', '3', }, 0x80,0x02 },
sys/dev/misc/kbd/kbdtables.h
127
/*52*/{{ F(60), '0', '0', '0', '0', '0', '0', '0', }, 0x80,0x02 },
sys/dev/misc/kbd/kbdtables.h
132
/*57*/{{ F(11), F(23), F(35), F(47), S(11), S(11), S(11), S(11),}, 0xFF,0x00 },
sys/dev/misc/kbd/kbdtables.h
133
/*58*/{{ F(12), F(24), F(36), F(48), S(12), S(12), S(12), S(12),}, 0xFF,0x00 },
sys/dev/misc/kbd/kbdtables.h
139
/*5e*/{{ F(49), F(49), F(49), F(49), F(49), F(49), F(49), F(49),}, 0xFF,0x00 },
sys/dev/misc/kbd/kbdtables.h
140
/*5f*/{{ F(50), F(50), F(50), F(50), F(50), F(50), F(50), F(50),}, 0xFF,0x00 },
sys/dev/misc/kbd/kbdtables.h
141
/*60*/{{ F(51), F(51), F(51), F(51), F(51), F(51), F(51), F(51),}, 0xFF,0x00 },
sys/dev/misc/kbd/kbdtables.h
142
/*61*/{{ F(53), F(53), F(53), F(53), F(53), F(53), F(53), F(53),}, 0xFF,0x00 },
sys/dev/misc/kbd/kbdtables.h
143
/*62*/{{ F(55), F(55), F(55), F(55), F(55), F(55), F(55), F(55),}, 0xFF,0x00 },
sys/dev/misc/kbd/kbdtables.h
144
/*63*/{{ F(57), F(57), F(57), F(57), F(57), F(57), F(57), F(57),}, 0xFF,0x00 },
sys/dev/misc/kbd/kbdtables.h
145
/*64*/{{ F(58), F(58), F(58), F(58), F(58), F(58), F(58), F(58),}, 0xFF,0x00 },
sys/dev/misc/kbd/kbdtables.h
146
/*65*/{{ F(59), F(59), F(59), F(59), F(59), F(59), F(59), F(59),}, 0xFF,0x00 },
sys/dev/misc/kbd/kbdtables.h
147
/*66*/{{ F(60), F(60), F(60), F(60), F(60), F(60), F(60), F(60),}, 0xFF,0x00 },
sys/dev/misc/kbd/kbdtables.h
148
/*67*/{{ F(61), F(61), F(61), F(61), F(61), F(61), RBT, F(61),}, 0xFF,0x00 },
sys/dev/misc/kbd/kbdtables.h
150
/*69*/{{ F(62), F(62), F(62), F(62), F(62), F(62), F(62), F(62),}, 0xFF,0x00 },
sys/dev/misc/kbd/kbdtables.h
151
/*6a*/{{ F(63), F(63), F(63), F(63), F(63), F(63), F(63), F(63),}, 0xFF,0x00 },
sys/dev/misc/kbd/kbdtables.h
152
/*6b*/{{ F(64), F(64), F(64), F(64), F(64), F(64), F(64), F(64),}, 0xFF,0x00 },
sys/dev/misc/syscons/syscons.c
3855
case SPCLKEY | FKEY | F(49): /* home key */
sys/dev/misc/syscons/syscons.c
3860
case SPCLKEY | FKEY | F(57): /* end key */
sys/dev/misc/syscons/syscons.c
3865
case SPCLKEY | FKEY | F(50): /* up arrow key */
sys/dev/misc/syscons/syscons.c
3872
case SPCLKEY | FKEY | F(58): /* down arrow key */
sys/dev/misc/syscons/syscons.c
3879
case SPCLKEY | FKEY | F(51): /* page up key */
sys/dev/misc/syscons/syscons.c
3890
case SPCLKEY | FKEY | F(59): /* page down key */
sys/dev/netif/ig_hal/e1000_osdep.h
61
#define DEBUGFUNC(F) DEBUGOUT(F "\n")
sys/dev/netif/ix/ixgbe_osdep.h
63
#define DEBUGFUNC(F) DEBUGOUT(F);
sys/dev/netif/ix/ixgbe_osdep.h
71
#define DEBUGOUT6(S,A,B,C,D,E,F) kprintf(S "\n",A,B,C,D,E,F)
sys/dev/netif/ix/ixgbe_osdep.h
72
#define DEBUGOUT7(S,A,B,C,D,E,F,G) kprintf(S "\n",A,B,C,D,E,F,G)
sys/dev/netif/ix/ixgbe_osdep.h
83
#define DEBUGOUT6(S,A,B,C,D,E,F) do { } while (0)
sys/dev/netif/ix/ixgbe_osdep.h
84
#define DEBUGOUT7(S,A,B,C,D,E,F,G) do { } while (0)
sys/dev/raid/asr/asr.c
1392
F[sizeof(I2O_SGE_SIMPLE_ELEMENT)*2 - sizeof(I2O_SG_ELEMENT)];
sys/kern/md4c.c
73
(a) += F ((b), (c), (d)) + (x); \
sys/kern/md5c.c
110
(a) += F ((b), (c), (d)) + (x) + (u_int32_t)(ac); \
sys/net/dummynet/ip_dummynet.c
1129
if (DN_KEY_GT(q->S, q->F)) { /* Means timestamps are invalid */
sys/net/dummynet/ip_dummynet.c
1134
q->S = MAX64(q->F, pipe->V);
sys/net/dummynet/ip_dummynet.c
1136
q->F = q->S + (len << MY_M) / (uint64_t)fs->weight;
sys/net/dummynet/ip_dummynet.c
1162
heap_insert(&pipe->scheduler_heap, q->F, q);
sys/net/dummynet/ip_dummynet.c
1167
pipe->pipe_nr, (int)(q->F >> MY_M));
sys/net/dummynet/ip_dummynet.c
1761
ioc_fq->F = q->F;
sys/net/dummynet/ip_dummynet.c
556
q->S = q->F; /* Update start time */
sys/net/dummynet/ip_dummynet.c
560
heap_insert(&p->idle_heap, q->F, q);
sys/net/dummynet/ip_dummynet.c
567
q->F += (len << MY_M) / (uint64_t)fs->weight;
sys/net/dummynet/ip_dummynet.c
571
heap_insert(sch, q->F, q);
sys/net/dummynet/ip_dummynet.c
591
heap_insert(sch, q->F, q);
sys/net/dummynet/ip_dummynet.c
605
q->F = 0;
sys/net/dummynet/ip_dummynet.c
606
q->S = q->F + 1;
sys/net/dummynet/ip_dummynet.c
649
q->S = q->F + 1; /* Mark timestamp as invalid */
sys/net/dummynet/ip_dummynet.c
718
if (!TAILQ_EMPTY(&q->queue) || q->S != q->F + 1)
sys/net/dummynet/ip_dummynet.c
760
q->S = q->F + 1; /* hack - mark timestamp as invalid */
sys/net/dummynet/ip_dummynet.c
817
q->S == q->F + 1) {
sys/net/dummynet/ip_dummynet.h
244
dn_key S, F; /* start time, finish time */
sys/net/dummynet/ip_dummynet.h
386
dn_key F; /* virtual finish time */
sys/net/dummynet3/ip_dummynet3.c
1148
if (DN_KEY_GT(q->S, q->F)) { /* Means timestamps are invalid */
sys/net/dummynet3/ip_dummynet3.c
1153
q->S = MAX64(q->F, pipe->V);
sys/net/dummynet3/ip_dummynet3.c
1155
q->F = q->S + (len << MY_M) / (uint64_t)fs->weight;
sys/net/dummynet3/ip_dummynet3.c
1181
heap_insert(&pipe->scheduler_heap, q->F, q);
sys/net/dummynet3/ip_dummynet3.c
1186
pipe->pipe_nr, (int)(q->F >> MY_M));
sys/net/dummynet3/ip_dummynet3.c
1740
ioc_fq->F = q->F;
sys/net/dummynet3/ip_dummynet3.c
575
q->S = q->F; /* Update start time */
sys/net/dummynet3/ip_dummynet3.c
579
heap_insert(&p->idle_heap, q->F, q);
sys/net/dummynet3/ip_dummynet3.c
586
q->F += (len << MY_M) / (uint64_t)fs->weight;
sys/net/dummynet3/ip_dummynet3.c
590
heap_insert(sch, q->F, q);
sys/net/dummynet3/ip_dummynet3.c
610
heap_insert(sch, q->F, q);
sys/net/dummynet3/ip_dummynet3.c
624
q->F = 0;
sys/net/dummynet3/ip_dummynet3.c
625
q->S = q->F + 1;
sys/net/dummynet3/ip_dummynet3.c
668
q->S = q->F + 1; /* Mark timestamp as invalid */
sys/net/dummynet3/ip_dummynet3.c
737
if (!TAILQ_EMPTY(&q->queue) || q->S != q->F + 1)
sys/net/dummynet3/ip_dummynet3.c
779
q->S = q->F + 1; /* hack - mark timestamp as invalid */
sys/net/dummynet3/ip_dummynet3.c
836
q->S == q->F + 1) {
sys/net/dummynet3/ip_dummynet3.h
259
dn_key S, F; /* start time, finish time */
sys/net/dummynet3/ip_dummynet3.h
401
dn_key F; /* virtual finish time */
sys/vfs/ext2fs/ext2_hash.c
91
(a) += F ((b), (c), (d)) + (x); \
usr.bin/calendar/moon.c
331
double F = moon_node(c);
usr.bin/calendar/moon.c
342
arg->z * F);
usr.bin/calendar/moon.c
348
double flat_earth = sin_deg(L_prime - F) * 1962 / 1e6;
usr.bin/calendar/moon.c
441
double F = moon_node(c);
usr.bin/calendar/moon.c
452
arg->z * F);
usr.bin/calendar/moon.c
456
double venus = (sin_deg(119.75 + 131.849 * c + F) +
usr.bin/calendar/moon.c
457
sin_deg(119.75 + 131.849 * c - F)) * 175 / 1e6;
usr.bin/calendar/moon.c
551
double F = moon_node(c);
usr.bin/calendar/moon.c
562
arg->z * F);
usr.bin/join/join.c
264
slurp(INPUT *F)
usr.bin/join/join.c
275
F->setcnt = 0;
usr.bin/join/join.c
276
for (lastlp = NULL;; ++F->setcnt) {
usr.bin/join/join.c
282
if (F->setcnt == F->setalloc) {
usr.bin/join/join.c
283
cnt = F->setalloc;
usr.bin/join/join.c
284
F->setalloc += 50;
usr.bin/join/join.c
285
if ((F->set = realloc(F->set,
usr.bin/join/join.c
286
F->setalloc * sizeof(LINE))) == NULL)
usr.bin/join/join.c
288
memset(F->set + cnt, 0, 50 * sizeof(LINE));
usr.bin/join/join.c
292
lastlp = &F->set[F->setcnt - 1];
usr.bin/join/join.c
302
lp = &F->set[F->setcnt];
usr.bin/join/join.c
303
if (F->setcnt)
usr.bin/join/join.c
304
lastlp = &F->set[F->setcnt - 1];
usr.bin/join/join.c
305
if (F->pushbool) {
usr.bin/join/join.c
306
tmp = F->set[F->setcnt];
usr.bin/join/join.c
307
F->set[F->setcnt] = F->set[F->pushback];
usr.bin/join/join.c
308
F->set[F->pushback] = tmp;
usr.bin/join/join.c
309
F->pushbool = 0;
usr.bin/join/join.c
312
if ((bp = fgetln(F->fp, &len)) == NULL)
usr.bin/join/join.c
344
if (lastlp != NULL && cmp(lp, F->joinf, lastlp, F->joinf)) {
usr.bin/join/join.c
345
F->pushbool = 1;
usr.bin/join/join.c
346
F->pushback = F->setcnt;
usr.bin/join/join.c
442
outoneline(INPUT *F, LINE *lp)
usr.bin/join/join.c
453
if (olist[cnt].filenum == (unsigned)F->number)
usr.bin/join/join.c
456
outfield(lp, F->joinf, 0);
usr.bin/lam/lam.c
112
ip->format = ((P || F) ? (ip-1)->format : "%s");
usr.bin/lam/lam.c
140
F = (*c == 'F' ? 1 : 0);
usr.bin/lam/lam.c
96
int P, S, F, T;
usr.bin/lam/lam.c
98
P = S = F = T = 0; /* capitalized options */
usr.bin/mail/cmdtab.c
101
{ "if", ifcmd, F|M|RAWLIST, 1, 1 },
usr.bin/mail/cmdtab.c
102
{ "else", elsecmd, F|M|RAWLIST, 0, 0 },
usr.bin/mail/cmdtab.c
103
{ "endif", endifcmd, F|M|RAWLIST, 0, 0 },
usr.bin/mail/lex.c
326
if ((com->c_argtype & F) == 0)
usr.bin/mail/lex.c
356
switch (com->c_argtype & ~(F|P|I|M|T|W|R)) {
usr.sbin/kbdcontrol/kbdcontrol.c
215
if (F(number) > L_FN)
usr.sbin/kbdcontrol/kbdcontrol.c
217
return F(number) | 0x100;