Symbol: L
crypto/libressl/crypto/bn/bn_lib.c
1112
BN_security_bits(int L, int N)
crypto/libressl/crypto/bn/bn_lib.c
1116
if (L >= 15360)
crypto/libressl/crypto/bn/bn_lib.c
1118
else if (L >= 7680)
crypto/libressl/crypto/bn/bn_lib.c
1120
else if (L >= 3072)
crypto/libressl/crypto/bn/bn_lib.c
1122
else if (L >= 2048)
crypto/libressl/crypto/bn/bn_lib.c
1124
else if (L >= 1024)
crypto/libressl/crypto/cast/cast_lcl.h
158
#define E_CAST(n,key,L,R,OP1,OP2,OP3) \
crypto/libressl/crypto/cast/cast_lcl.h
164
L^= (((((*(CAST_LONG *)((unsigned char *) \
crypto/libressl/crypto/cast/cast_lcl.h
174
#define E_CAST(n,key,L,R,OP1,OP2,OP3) \
crypto/libressl/crypto/cast/cast_lcl.h
193
L^=(t&0xffffffff); \
crypto/libressl/crypto/cast/cast_lcl.h
196
#define E_CAST(n,key,L,R,OP1,OP2,OP3) \
crypto/libressl/crypto/cast/cast_lcl.h
205
L^=(((((a OP2 b)&0xffffffffL) OP3 c)&0xffffffffL) OP1 d)&0xffffffffL; \
crypto/libressl/crypto/evp/e_aes.c
102
int L, M; /* L and M parameters from RFC3610 */
crypto/libressl/crypto/evp/e_aes.c
1963
cctx->L = 8;
crypto/libressl/crypto/evp/e_aes.c
1975
cctx->L = arg;
crypto/libressl/crypto/evp/e_aes.c
2030
CRYPTO_ccm128_init(&cctx->ccm, cctx->M, cctx->L,
crypto/libressl/crypto/evp/e_aes.c
2038
CRYPTO_ccm128_init(&cctx->ccm, cctx->M, cctx->L,
crypto/libressl/crypto/evp/e_aes.c
2044
memcpy(ctx->iv, iv, 15 - cctx->L);
crypto/libressl/crypto/evp/e_aes.c
2065
if (CRYPTO_ccm128_setiv(ccm, ctx->iv, 15 - cctx->L,
crypto/libressl/crypto/evp/e_aes.c
2082
if (CRYPTO_ccm128_setiv(ccm, ctx->iv, 15 - cctx->L, len))
crypto/libressl/crypto/evp/e_aes.c
343
CRYPTO_ccm128_init(&cctx->ccm, cctx->M, cctx->L,
crypto/libressl/crypto/evp/e_aes.c
350
memcpy(ctx->iv, iv, 15 - cctx->L);
crypto/libressl/crypto/modes/ccm128.c
175
unsigned int i,L;
crypto/libressl/crypto/modes/ccm128.c
185
ctx->nonce.c[0] = L = flags0&7;
crypto/libressl/crypto/modes/ccm128.c
186
for (n=0,i=15-L;i<15;++i) {
crypto/libressl/crypto/modes/ccm128.c
233
for (i=15-L;i<16;++i)
crypto/libressl/crypto/modes/ccm128.c
250
unsigned int i,L;
crypto/libressl/crypto/modes/ccm128.c
259
ctx->nonce.c[0] = L = flags0&7;
crypto/libressl/crypto/modes/ccm128.c
260
for (n=0,i=15-L;i<15;++i) {
crypto/libressl/crypto/modes/ccm128.c
299
for (i=15-L;i<16;++i)
crypto/libressl/crypto/modes/ccm128.c
329
unsigned int i,L;
crypto/libressl/crypto/modes/ccm128.c
339
ctx->nonce.c[0] = L = flags0&7;
crypto/libressl/crypto/modes/ccm128.c
340
for (n=0,i=15-L;i<15;++i) {
crypto/libressl/crypto/modes/ccm128.c
369
for (i=15-L;i<16;++i)
crypto/libressl/crypto/modes/ccm128.c
386
unsigned int i,L;
crypto/libressl/crypto/modes/ccm128.c
395
ctx->nonce.c[0] = L = flags0&7;
crypto/libressl/crypto/modes/ccm128.c
396
for (n=0,i=15-L;i<15;++i) {
crypto/libressl/crypto/modes/ccm128.c
422
for (i=15-L;i<16;++i)
crypto/libressl/crypto/modes/ccm128.c
64
unsigned int M,unsigned int L,void *key,block128_f block)
crypto/libressl/crypto/modes/ccm128.c
67
ctx->nonce.c[0] = ((u8)(L-1)&7) | (u8)(((M-2)/2)&7)<<3;
crypto/libressl/crypto/modes/ccm128.c
79
unsigned int L = ctx->nonce.c[0]&7; /* the L parameter */
crypto/libressl/crypto/modes/ccm128.c
81
if (nlen<(14-L)) return -1; /* nonce is too short */
crypto/libressl/crypto/modes/ccm128.c
83
if (sizeof(mlen)==8 && L>=3) {
crypto/libressl/crypto/modes/ccm128.c
98
memcpy(&ctx->nonce.c[1],nonce,14-L);
crypto/libressl/crypto/o_time.c
230
long L = jd + 68569;
crypto/libressl/crypto/o_time.c
231
long n = (4 * L) / 146097;
crypto/libressl/crypto/o_time.c
234
L = L - (146097 * n + 3) / 4;
crypto/libressl/crypto/o_time.c
235
i = (4000 * (L + 1)) / 1461001;
crypto/libressl/crypto/o_time.c
236
L = L - (1461 * i) / 4 + 31;
crypto/libressl/crypto/o_time.c
237
j = (80 * L) / 2447;
crypto/libressl/crypto/o_time.c
238
*d = L - (2447 * j) / 80;
crypto/libressl/crypto/o_time.c
239
L = j / 11;
crypto/libressl/crypto/o_time.c
240
*m = j + 2 - (12 * L);
crypto/libressl/crypto/o_time.c
241
*y = 100 * (n - 49) + i + L;
crypto/libressl/crypto/whrlpool/wp_block.c
452
u64 L[8];
crypto/libressl/crypto/whrlpool/wp_block.c
460
L[i] = i ? 0 : RC[r];
crypto/libressl/crypto/whrlpool/wp_block.c
461
L[i] ^= C0(K,i) ^ C1(K,(i-1)&7) ^
crypto/libressl/crypto/whrlpool/wp_block.c
466
memcpy (K.q,L,64);
crypto/libressl/crypto/whrlpool/wp_block.c
469
L[i] ^= C0(S,i) ^ C1(S,(i-1)&7) ^
crypto/libressl/crypto/whrlpool/wp_block.c
474
memcpy (S.q,L,64);
crypto/libressl/include/openssl/bn.h
474
int BN_security_bits(int L, int N);
crypto/libressl/include/openssl/modes.h
120
unsigned int M, unsigned int L, void *key,block128_f block);
crypto/openssh/sntrup761.c
672
uint32 L[p];
crypto/openssh/sntrup761.c
675
for (i = 0;i < w;++i) L[i] = in[i]&(uint32)-2;
crypto/openssh/sntrup761.c
676
for (i = w;i < p;++i) L[i] = (in[i]&(uint32)-3)|1;
crypto/openssh/sntrup761.c
677
crypto_sort_uint32(L,p);
crypto/openssh/sntrup761.c
678
for (i = 0;i < p;++i) out[i] = (L[i]&3)-1;
crypto/openssh/sntrup761.c
715
uint32 L[p];
crypto/openssh/sntrup761.c
718
for (i = 0;i < p;++i) L[i] = urandom32();
crypto/openssh/sntrup761.c
719
Short_fromlist(out,L);
crypto/openssh/sntrup761.c
845
static void Expand(uint32 *L,const unsigned char *k)
crypto/openssh/sntrup761.c
848
crypto_stream_aes256ctr((unsigned char *) L,4*p,aes_nonce,k);
crypto/openssh/sntrup761.c
850
uint32 L0 = ((unsigned char *) L)[4*i];
crypto/openssh/sntrup761.c
851
uint32 L1 = ((unsigned char *) L)[4*i+1];
crypto/openssh/sntrup761.c
852
uint32 L2 = ((unsigned char *) L)[4*i+2];
crypto/openssh/sntrup761.c
853
uint32 L3 = ((unsigned char *) L)[4*i+3];
crypto/openssh/sntrup761.c
854
L[i] = L0+(L1<<8)+(L2<<16)+(L3<<24);
crypto/openssh/sntrup761.c
880
uint32 L[p];
crypto/openssh/sntrup761.c
883
Expand(L,k);
crypto/openssh/sntrup761.c
884
for (i = 0;i < p;++i) G[i] = uint32_mod_uint14(L[i],q)-q12;
crypto/openssh/sntrup761.c
892
uint32 L[p];
crypto/openssh/sntrup761.c
896
Expand(L,h);
crypto/openssh/sntrup761.c
897
Short_fromlist(out,L);
libexec/ftpd/ftpcmd.y
116
L N P R S T
libexec/ftpd/ftpcmd.y
1482
return (L);
libexec/ftpd/ftpcmd.y
929
| L
libexec/ftpd/ftpcmd.y
934
| L SP byte_size
libexec/ftpd/ftpcmd.y
940
| L byte_size
sbin/growfs/debug.h
119
#define DBG_DUMP_IBLK(F,C,M,L)
sbin/growfs/debug.h
71
#define DBG_DUMP_IBLK(F,C,M,L) dbg_dump_iblk((F),(C),(M),(L))
stand/lib/qdivrem.c
102
tmp.ul[H] = tmp.ul[L] = 1 / zero;
stand/lib/qdivrem.c
133
u[3] = HHALF(tmp.ul[L]);
stand/lib/qdivrem.c
134
u[4] = LHALF(tmp.ul[L]);
stand/lib/qdivrem.c
138
v[3] = HHALF(tmp.ul[L]);
stand/lib/qdivrem.c
139
v[4] = LHALF(tmp.ul[L]);
stand/lib/qdivrem.c
164
tmp.ul[L] = COMBINE(q3, q4);
stand/lib/qdivrem.c
272
tmp.ul[L] = COMBINE(uspace[3], uspace[4]);
stand/lib/qdivrem.c
277
tmp.ul[L] = COMBINE(qspace[3], qspace[4]);
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
201
{ 0x04, L, "FORMAT" },
sys/bus/cam/scsi/scsi_all.c
223
{ 0x0A, L, "PRINT" },
sys/bus/cam/scsi/scsi_all.c
229
{ 0x0B, L, "SLEW AND PRINT" },
sys/bus/cam/scsi/scsi_all.c
238
{ 0x10, L, "SYNCHRONIZE BUFFER" },
sys/bus/cam/scsi/scsi_all.c
247
{ 0x14, T | L, "RECOVER BUFFERED DATA" },
sys/bus/cam/scsi/scsi_all.c
259
{ 0x18, D | T | L | P | W | R | O | K | S, "COPY" },
sys/bus/cam/scsi/scsi_all.c
271
{ 0x1B, L, "STOP PRINT" },
sys/bus/cam/scsi/scsi_all.c
353
{ 0x39, D | T | L | P | W | R | O | K | S, "COMPARE" },
sys/bus/cam/scsi/scsi_all.c
355
{ 0x3A, D | T | L | P | W | R | O | K | S, "COPY AND VERIFY" },
sys/bus/cam/scsi/scsi_all.c
367
{ 0x40, D | T | L | P | W | R | O | M | S | C, "CHANGE DEFINITION" },
sys/bus/cam/scsi/scsi_all.c
450
{ 0x83, D | T | L | P | W | O | K | V, "EXTENDED COPY" },
sys/bus/cam/scsi/scsi_all.c
452
{ 0x84, D | T | L | P | W | O | K | V, "RECEIVE COPY RESULTS" },
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/cpu/x86_64/include/int_const.h
45
#define INT64_C(c) (c ## L)
sys/cpu/x86_64/include/int_const.h
52
#define INTMAX_C(c) (c ## L)
sys/dev/netif/bwn/bwn/if_bwnvar.h
140
#define BWN_LPD(L, P, D) (((L) << 2) | ((P) << 1) | ((D) << 0))
sys/dev/raid/vinum/vinumio.h
116
#define VINUM_CREATE _IOC(IOC_IN | IOC_OUT, L, 64, BUFSIZE)
sys/dev/raid/vinum/vinumio.h
119
#define VINUM_GETCONFIG _IOR(L, 65, struct _vinum_conf)
sys/dev/raid/vinum/vinumio.h
122
#define VINUM_DRIVECONFIG _IOWR(L, 66, struct drive)
sys/dev/raid/vinum/vinumio.h
125
#define VINUM_SDCONFIG _IOWR(L, 67, struct sd)
sys/dev/raid/vinum/vinumio.h
128
#define VINUM_PLEXCONFIG _IOWR(L, 68, struct plex)
sys/dev/raid/vinum/vinumio.h
131
#define VINUM_VOLCONFIG _IOWR(L, 69, struct volume)
sys/dev/raid/vinum/vinumio.h
134
#define VINUM_PLEXSDCONFIG _IOWR(L, 70, struct sd)
sys/dev/raid/vinum/vinumio.h
137
#define VINUM_GETFREELIST _IOWR(L, 71, struct drive_freelist)
sys/dev/raid/vinum/vinumio.h
140
#define VINUM_SAVECONFIG _IOW(L, 72, int)
sys/dev/raid/vinum/vinumio.h
143
#define VINUM_RESETCONFIG _IOC(0, L, 73, 0)
sys/dev/raid/vinum/vinumio.h
146
#define VINUM_INIT _IOC(0, L, 74, 0)
sys/dev/raid/vinum/vinumio.h
151
#define VINUM_DEBUG _IOWR(L, 75, struct debuginfo)
sys/dev/raid/vinum/vinumio.h
163
#define VINUM_SETSTATE _IOC(IOC_IN | IOC_OUT, L, 76, MAX_IOCTL_REPLY)
sys/dev/raid/vinum/vinumio.h
166
#define VINUM_RELEASECONFIG _IOC(0, L, 77, 0)
sys/dev/raid/vinum/vinumio.h
169
#define VINUM_STARTCONFIG _IOW(L, 78, int)
sys/dev/raid/vinum/vinumio.h
172
#define VINUM_MEMINFO _IOR(L, 79, struct meminfo)
sys/dev/raid/vinum/vinumio.h
175
#define VINUM_MALLOCINFO _IOWR(L, 80, struct mc)
sys/dev/raid/vinum/vinumio.h
178
#define VINUM_LABEL _IOC(IOC_IN | IOC_OUT, L, 81, MAX_IOCTL_REPLY)
sys/dev/raid/vinum/vinumio.h
181
#define VINUM_INITSD _IOW(L, 82, int)
sys/dev/raid/vinum/vinumio.h
184
#define VINUM_REMOVE _IOWR(L, 83, struct _ioctl_reply)
sys/dev/raid/vinum/vinumio.h
187
#define VINUM_READPOL _IOWR(L, 84, struct _ioctl_reply)
sys/dev/raid/vinum/vinumio.h
190
#define VINUM_SETSTATE_FORCE _IOC(IOC_IN | IOC_OUT, L, 85, MAX_IOCTL_REPLY)
sys/dev/raid/vinum/vinumio.h
193
#define VINUM_RESETSTATS _IOWR(L, 86, struct _ioctl_reply)
sys/dev/raid/vinum/vinumio.h
196
#define VINUM_ATTACH _IOWR(L, 87, struct _ioctl_reply)
sys/dev/raid/vinum/vinumio.h
199
#define VINUM_DETACH _IOWR(L, 88, struct _ioctl_reply)
sys/dev/raid/vinum/vinumio.h
202
#define VINUM_RENAME _IOWR(L, 89, struct _ioctl_reply)
sys/dev/raid/vinum/vinumio.h
205
#define VINUM_REPLACE _IOWR(L, 90, struct _ioctl_reply)
sys/dev/raid/vinum/vinumio.h
210
#define VINUM_RQINFO _IOWR(L, 91, struct rqinfo)
sys/dev/raid/vinum/vinumio.h
215
#define VINUM_DAEMON _IOC(0, L, 92, 0)
sys/dev/raid/vinum/vinumio.h
218
#define VINUM_FINDDAEMON _IOC(0, L, 93, 0)
sys/dev/raid/vinum/vinumio.h
221
#define VINUM_SETDAEMON _IOW(L, 94, int)
sys/dev/raid/vinum/vinumio.h
224
#define VINUM_GETDAEMON _IOR(L, 95, int)
sys/dev/raid/vinum/vinumio.h
227
#define VINUM_PARITYOP _IOWR(L, 96, struct _ioctl_reply)
sys/dev/raid/vinum/vinumio.h
230
#define VINUM_MOVE _IOWR(L, 98, struct _ioctl_reply)
usr.bin/systat/icmp.c
102
L(1, "ICMP Input"); R(1, "ICMP Output");
usr.bin/systat/icmp.c
103
L(2, "total messages"); R(2, "total messages");
usr.bin/systat/icmp.c
104
L(3, "with bad code"); R(3, "errors generated");
usr.bin/systat/icmp.c
105
L(4, "with bad length"); R(4, "suppressed - original too short");
usr.bin/systat/icmp.c
106
L(5, "with bad checksum"); R(5, "suppressed - original was ICMP");
usr.bin/systat/icmp.c
107
L(6, "with insufficient data"); R(6, "responses sent");
usr.bin/systat/icmp.c
110
L(10, "Input Histogram"); R(10, "Output Histogram");
usr.bin/systat/icmp.c
111
#define B(row, str) L(row, str); R(row, str)
usr.bin/systat/icmp.c
118
L(17, "router advertisement"); R(17, "router solicitation");
usr.bin/systat/icmp6.c
100
L(2, "total messages"); R(2, "total messages");
usr.bin/systat/icmp6.c
101
L(3, "with bad code"); R(3, "errors generated");
usr.bin/systat/icmp6.c
102
L(4, "with bad length"); R(4, "suppressed - original too short");
usr.bin/systat/icmp6.c
103
L(5, "with bad checksum"); R(5, "suppressed - original was ICMP");
usr.bin/systat/icmp6.c
104
L(6, "with insufficient data"); R(6, "responses sent");
usr.bin/systat/icmp6.c
106
L(8, "Input Histogram"); R(8, "Output Histogram");
usr.bin/systat/icmp6.c
107
#define B(row, str) L(row, str); R(row, str)
usr.bin/systat/icmp6.c
116
L(17, "router advertisement"); R(17, "router solicitation");
usr.bin/systat/icmp6.c
99
L(1, "ICMPv6 Input"); R(1, "ICMPv6 Output");
usr.bin/systat/ip.c
108
L(1, "IP Input"); R(1, "IP Output");
usr.bin/systat/ip.c
109
L(2, "total packets received"); R(2, "total packets sent");
usr.bin/systat/ip.c
110
L(3, "- with bad checksums"); R(3, "- generated locally");
usr.bin/systat/ip.c
111
L(4, "- too short for header"); R(4, "- output drops");
usr.bin/systat/ip.c
112
L(5, "- too short for data"); R(5, "output fragments generated");
usr.bin/systat/ip.c
113
L(6, "- with invalid hlen"); R(6, "- fragmentation failed");
usr.bin/systat/ip.c
114
L(7, "- with invalid length"); R(7, "destinations unreachable");
usr.bin/systat/ip.c
115
L(8, "- with invalid version"); R(8, "packets output via raw IP");
usr.bin/systat/ip.c
116
L(9, "- jumbograms");
usr.bin/systat/ip.c
117
L(10, "total fragments received"); R(10, "UDP Statistics");
usr.bin/systat/ip.c
118
L(11, "- fragments dropped"); R(11, "total input packets");
usr.bin/systat/ip.c
119
L(12, "- fragments timed out"); R(12, "- too short for header");
usr.bin/systat/ip.c
120
L(13, "- packets reassembled ok"); R(13, "- invalid checksum");
usr.bin/systat/ip.c
121
L(14, "packets forwarded"); R(14, "- no checksum");
usr.bin/systat/ip.c
122
L(15, "- unreachable dests"); R(15, "- invalid length");
usr.bin/systat/ip.c
123
L(16, "- redirects generated"); R(16, "- no socket for dest port");
usr.bin/systat/ip.c
124
L(17, "option errors"); R(17, "- no socket for broadcast");
usr.bin/systat/ip.c
125
L(18, "unwanted multicasts"); R(18, "- socket buffer full");
usr.bin/systat/ip.c
126
L(19, "delivered to upper layer"); R(19, "total output packets");
usr.bin/systat/ip6.c
103
L(1, "IPv6 Input"); R(1, "IPv6 Output");
usr.bin/systat/ip6.c
104
L(2, "total packets received"); R(2, "total packets sent");
usr.bin/systat/ip6.c
105
L(3, "- too short for header"); R(3, "- generated locally");
usr.bin/systat/ip6.c
106
L(4, "- too short for data"); R(4, "- output drops");
usr.bin/systat/ip6.c
107
L(5, "- with invalid version"); R(5, "output fragments generated");
usr.bin/systat/ip6.c
108
L(6, "total fragments received"); R(6, "- fragmentation failed");
usr.bin/systat/ip6.c
109
L(7, "- fragments dropped"); R(7, "destinations unreachable");
usr.bin/systat/ip6.c
110
L(8, "- fragments timed out"); R(8, "packets output via raw IP");
usr.bin/systat/ip6.c
111
L(9, "- fragments overflown");
usr.bin/systat/ip6.c
112
L(10, "- packets reassembled ok"); R(10, "Input next-header histogram");
usr.bin/systat/ip6.c
113
L(11, "packets forwarded"); R(11, " - destination options");
usr.bin/systat/ip6.c
114
L(12, "- unreachable dests"); R(12, " - hop-by-hop options");
usr.bin/systat/ip6.c
115
L(13, "- redirects generated"); R(13, " - IPv4");
usr.bin/systat/ip6.c
116
L(14, "option errors"); R(14, " - TCP");
usr.bin/systat/ip6.c
117
L(15, "unwanted multicasts"); R(15, " - UDP");
usr.bin/systat/ip6.c
118
L(16, "delivered to upper layer"); R(16, " - IPv6");
usr.bin/systat/ip6.c
119
L(17, "bad scope packets"); R(17, " - routing header");
usr.bin/systat/ip6.c
120
L(18, "address selection failed"); R(18, " - fragmentation header");
usr.bin/systat/tcp.c
105
L(1, "TCP Connections"); R(1, "TCP Packets");
usr.bin/systat/tcp.c
106
L(2, "connections initiated"); R(2, "total packets sent");
usr.bin/systat/tcp.c
107
L(3, "connections accepted"); R(3, "- data");
usr.bin/systat/tcp.c
108
L(4, "connections established"); R(4, "- data (retransmit)");
usr.bin/systat/tcp.c
109
L(5, "connections dropped"); R(5, "- ack-only");
usr.bin/systat/tcp.c
110
L(6, "- in embryonic state"); R(6, "- window probes");
usr.bin/systat/tcp.c
111
L(7, "- on retransmit timeout"); R(7, "- window updates");
usr.bin/systat/tcp.c
112
L(8, "- by keepalive"); R(8, "- urgent data only");
usr.bin/systat/tcp.c
113
L(9, "- from listen queue"); R(9, "- control");
usr.bin/systat/tcp.c
115
L(11, "TCP Timers"); R(11, "total packets received");
usr.bin/systat/tcp.c
116
L(12, "potential rtt updates"); R(12, "- in sequence");
usr.bin/systat/tcp.c
117
L(13, "- successful"); R(13, "- completely duplicate");
usr.bin/systat/tcp.c
118
L(14, "delayed acks sent"); R(14, "- with some duplicate data");
usr.bin/systat/tcp.c
119
L(15, "retransmit timeouts"); R(15, "- out-of-order");
usr.bin/systat/tcp.c
120
L(16, "persist timeouts"); R(16, "- duplicate acks");
usr.bin/systat/tcp.c
121
L(17, "keepalive probes"); R(17, "- acks");
usr.bin/systat/tcp.c
122
L(18, "- timeouts"); R(18, "- window probes");
usr.bin/systat/tcp.c
227
L(2, tcps_connattempt); R(2, tcps_sndtotal);
usr.bin/systat/tcp.c
228
L(3, tcps_accepts); R(3, tcps_sndpack);
usr.bin/systat/tcp.c
229
L(4, tcps_connects); R(4, tcps_sndrexmitpack);
usr.bin/systat/tcp.c
230
L(5, tcps_drops); R(5, tcps_sndacks);
usr.bin/systat/tcp.c
231
L(6, tcps_conndrops); R(6, tcps_sndprobe);
usr.bin/systat/tcp.c
232
L(7, tcps_timeoutdrop); R(7, tcps_sndwinup);
usr.bin/systat/tcp.c
233
L(8, tcps_keepdrops); R(8, tcps_sndurg);
usr.bin/systat/tcp.c
234
L(9, tcps_listendrop); R(9, tcps_sndctrl);
usr.bin/systat/tcp.c
237
L(12, tcps_segstimed); R(12, tcps_rcvpack);
usr.bin/systat/tcp.c
238
L(13, tcps_rttupdated); R(13, tcps_rcvduppack);
usr.bin/systat/tcp.c
239
L(14, tcps_delack); R(14, tcps_rcvpartduppack);
usr.bin/systat/tcp.c
240
L(15, tcps_rexmttimeo); R(15, tcps_rcvoopack);
usr.bin/systat/tcp.c
241
L(16, tcps_persisttimeo); R(16, tcps_rcvdupack);
usr.bin/systat/tcp.c
242
L(17, tcps_keepprobe); R(17, tcps_rcvackpack);
usr.bin/systat/tcp.c
243
L(18, tcps_keeptimeo); R(18, tcps_rcvwinprobe);