Symbol: overhead
crypto/heimdal/appl/ftp/ftp/security.c
287
len -= (*mech->overhead)(app_data, data_prot, len);
crypto/heimdal/appl/ftp/ftp/security.h
54
int (*overhead)(void *, int, int);
crypto/heimdal/appl/ftp/ftp/security.h
65
int (*overhead)(void *, int, int);
crypto/heimdal/appl/ftp/ftpd/security.c
287
len -= (*mech->overhead)(app_data, data_prot, len);
crypto/krb5/src/lib/gssapi/krb5/wrap_size_limit.c
154
overhead = 7 + ctx->mech_used->length;
crypto/krb5/src/lib/gssapi/krb5/wrap_size_limit.c
162
if (ohlen+overhead < req_output_size)
crypto/krb5/src/lib/gssapi/krb5/wrap_size_limit.c
167
*max_input_size = (req_output_size - ohlen - overhead) & (~(OM_uint32)7);
crypto/krb5/src/lib/gssapi/krb5/wrap_size_limit.c
84
int overhead;
crypto/openssl/ssl/record/methods/tls_common.c
498
size_t overhead, int send)
crypto/openssl/ssl/record/methods/tls_common.c
509
max_early_data += overhead;
crypto/openssl/ssl/record/methods/tls_pad.c
109
size_t overhead = ((block_size == 1) ? 0 : 1) /* padding length byte */
crypto/openssl/ssl/record/methods/tls_pad.c
116
if (overhead > *reclen)
crypto/openssl/ssl/record/methods/tls_pad.c
129
good = constant_time_ge_s(*reclen, overhead + padding_length);
crypto/openssl/ssl/record/methods/tls_pad.c
63
const size_t overhead = 1 /* padding length byte */ + mac_size;
crypto/openssl/ssl/record/methods/tls_pad.c
68
if (overhead > *reclen)
crypto/openssl/ssl/record/methods/tls_pad.c
72
good = constant_time_ge_s(*reclen, padding_length + overhead);
crypto/openssl/ssl/record/rec_layer_s3.c
151
size_t overhead, int send)
crypto/openssl/ssl/record/rec_layer_s3.c
164
max_early_data += overhead;
crypto/openssl/ssl/statem/statem_dtls.c
124
size_t len, frag_off, overhead, used_len;
crypto/openssl/ssl/statem/statem_dtls.c
141
overhead = s->rlayer.wrlmethod->get_max_record_overhead(s->rlayer.wrl);
crypto/openssl/ssl/statem/statem_dtls.c
182
used_len = BIO_wpending(s->wbio) + overhead;
crypto/openssl/ssl/statem/statem_dtls.c
197
if (s->d1->mtu > overhead + DTLS1_HM_HEADER_LENGTH) {
crypto/openssl/ssl/statem/statem_dtls.c
198
curr_mtu = s->d1->mtu - overhead;
libexec/rtld-elf/rtld_malloc.c
110
return (((caddr_t)cp - sizeof(union overhead)));
libexec/rtld-elf/rtld_malloc.c
116
union overhead *op;
libexec/rtld-elf/rtld_malloc.c
174
union overhead ov1;
libexec/rtld-elf/rtld_malloc.c
180
mem = __crt_malloc(size + align + offset + sizeof(union overhead));
libexec/rtld-elf/rtld_malloc.c
183
x = roundup2((uintptr_t)mem + sizeof(union overhead), align);
libexec/rtld-elf/rtld_malloc.c
187
ov1.ov_index = x - (uintptr_t)mem + sizeof(union overhead);
libexec/rtld-elf/rtld_malloc.c
198
union overhead *op;
libexec/rtld-elf/rtld_malloc.c
216
op = (union overhead *)pagepool_start;
libexec/rtld-elf/rtld_malloc.c
225
op->ov_next = (union overhead *)((caddr_t)op + sz);
libexec/rtld-elf/rtld_malloc.c
226
op = (union overhead *)((caddr_t)op + sz);
libexec/rtld-elf/rtld_malloc.c
233
union overhead *op, op1;
libexec/rtld-elf/rtld_malloc.c
255
union overhead *op;
libexec/rtld-elf/rtld_malloc.c
72
union overhead *ov_next; /* when free */
libexec/rtld-elf/rtld_malloc.c
95
static union overhead *nextf[NBUCKETS];
sys/fs/ext2fs/ext2_vfsops.c
1070
uint32_t overhead, overhead_per_group, ngdb;
sys/fs/ext2fs/ext2_vfsops.c
1085
overhead = le32toh(fs->e2fs->e2fs_first_dblock) +
sys/fs/ext2fs/ext2_vfsops.c
1100
overhead += ngroups * (1 /* superblock */ + ngdb);
sys/fs/ext2fs/ext2_vfsops.c
1104
sbp->f_blocks = fs->e2fs_bcount - overhead;
sys/kgssapi/krb5/krb5_mech.c
2104
OM_uint32 overhead;
sys/kgssapi/krb5/krb5_mech.c
2126
overhead = 5 + 2 + krb5_mech_oid.length;
sys/kgssapi/krb5/krb5_mech.c
2127
overhead += 8 + 8 + ec->ec_msgblocklen;
sys/kgssapi/krb5/krb5_mech.c
2128
overhead += ec->ec_checksumlen;
sys/kgssapi/krb5/krb5_mech.c
2140
overhead = 16 + ec->ec_blocklen;
sys/kgssapi/krb5/krb5_mech.c
2141
overhead += ec->ec_msgblocklen - 1;
sys/kgssapi/krb5/krb5_mech.c
2142
overhead += 16;
sys/kgssapi/krb5/krb5_mech.c
2143
overhead += ec->ec_checksumlen;
sys/kgssapi/krb5/krb5_mech.c
2148
overhead = 16 + ec->ec_checksumlen;
sys/kgssapi/krb5/krb5_mech.c
2152
*max_input_size = req_output_size - overhead;
sys/net80211/ieee80211_mesh.c
3298
uint32_t overhead, rate, errrate;
sys/net80211/ieee80211_mesh.c
3303
overhead = ieee80211_compute_duration(ic->ic_rt,
sys/net80211/ieee80211_mesh.c
3310
res = (overhead + (nbits / rate)) *
sys/netgraph/ng_pipe.c
112
+ priv->overhead ) * hinfo->run.fifo_queues * \
sys/netgraph/ng_pipe.c
358
cfg->overhead = priv->overhead;
sys/netgraph/ng_pipe.c
383
priv->overhead = 0;
sys/netgraph/ng_pipe.c
389
priv->overhead = 8+4+12; /* Ethernet */
sys/netgraph/ng_pipe.c
391
priv->overhead = 10; /* HDLC */
sys/netgraph/ng_pipe.c
394
if (cfg->overhead == -1)
sys/netgraph/ng_pipe.c
395
priv->overhead = 0;
sys/netgraph/ng_pipe.c
396
else if (cfg->overhead > 0 &&
sys/netgraph/ng_pipe.c
397
cfg->overhead < MAX_OHSIZE)
sys/netgraph/ng_pipe.c
398
priv->overhead = cfg->overhead;
sys/netgraph/ng_pipe.c
808
((uint64_t) m->m_pkthdr.len + priv->overhead ) *
sys/netgraph/ng_pipe.c
837
hinfo->ber_p[priv->overhead + m->m_pkthdr.len]) {
sys/netgraph/ng_pipe.c
99
u_int32_t overhead;
sys/netgraph/ng_pipe.h
147
u_int32_t overhead;
sys/netinet/sctp_asconf.c
2561
uint32_t p_length, overhead;
sys/netinet/sctp_asconf.c
2576
overhead = SCTP_MIN_OVERHEAD;
sys/netinet/sctp_asconf.c
2578
overhead = SCTP_MIN_V4_OVERHEAD;
sys/netinet/sctp_asconf.c
2581
overhead += sizeof(struct sctp_asconf_chunk);
sys/netinet/sctp_asconf.c
2583
overhead += sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
sys/netinet/sctp_asconf.c
2584
if (stcb->asoc.smallest_mtu <= overhead) {
sys/netinet/sctp_asconf.c
2629
if ((SCTP_BUF_LEN(m_asconf) + p_length > stcb->asoc.smallest_mtu - overhead) ||
sys/netinet/sctp_output.c
6291
uint32_t frag_point, overhead;
sys/netinet/sctp_output.c
6296
overhead = SCTP_MIN_OVERHEAD;
sys/netinet/sctp_output.c
6298
overhead = SCTP_MIN_V4_OVERHEAD;
sys/netinet/sctp_output.c
6302
overhead += sizeof(struct sctp_idata_chunk);
sys/netinet/sctp_output.c
6304
overhead += sctp_get_auth_chunk_len(asoc->peer_hmac_id);
sys/netinet/sctp_output.c
6307
overhead += sizeof(struct sctp_data_chunk);
sys/netinet/sctp_output.c
6309
overhead += sctp_get_auth_chunk_len(asoc->peer_hmac_id);
sys/netinet/sctp_output.c
6312
KASSERT(overhead % 4 == 0,
sys/netinet/sctp_output.c
6313
("overhead (%u) not a multiple of 4", overhead));
sys/netinet/sctp_output.c
6316
overhead += (asoc->smallest_mtu % 4);
sys/netinet/sctp_output.c
6318
KASSERT(asoc->smallest_mtu > overhead,
sys/netinet/sctp_output.c
6320
asoc->smallest_mtu, overhead));
sys/netinet/sctp_output.c
6321
frag_point = asoc->smallest_mtu - overhead;
sys/netinet/sctp_uio.h
826
uint32_t overhead;
sys/netinet/sctp_usrreq.c
110
uint32_t overhead;
sys/netinet/sctp_usrreq.c
118
overhead = SCTP_MIN_OVERHEAD;
sys/netinet/sctp_usrreq.c
120
overhead = SCTP_MIN_V4_OVERHEAD;
sys/netinet/sctp_usrreq.c
124
overhead += sctp_get_auth_chunk_len(asoc->peer_hmac_id);
sys/netinet/sctp_usrreq.c
128
overhead += sctp_get_auth_chunk_len(asoc->peer_hmac_id);
sys/netinet/sctp_usrreq.c
131
KASSERT(overhead % 4 == 0,
sys/netinet/sctp_usrreq.c
132
("overhead (%u) not a multiple of 4", overhead));
sys/netinet/sctp_usrreq.c
134
if (((uint32_t)chk->send_size + overhead) > mtu) {
sys/netinet/sctp_usrreq.c
139
if (((uint32_t)chk->send_size + overhead) > mtu) {
sys/netinet/sctputil.c
424
sctp_log_rwnd(uint8_t from, uint32_t peers_rwnd, uint32_t snd_size, uint32_t overhead)
sys/netinet/sctputil.c
431
sctp_clog.x.rwnd.overhead = overhead;
sys/netinet/sctputil.c
444
sctp_log_rwnd_set(uint8_t from, uint32_t peers_rwnd, uint32_t flight_size, uint32_t overhead, uint32_t a_rwndval)
sys/netinet/sctputil.c
451
sctp_clog.x.rwnd.overhead = overhead;
sys/x86/x86/tsc.c
259
int64_t overhead;
sys/x86/x86/tsc.c
262
overhead = 0;
sys/x86/x86/tsc.c
268
overhead += tsc2 - tsc1;
sys/x86/x86/tsc.c
270
overhead /= count;
sys/x86/x86/tsc.c
275
tsc_freq = (tsc2 - tsc1 - overhead) * 10;
usr.bin/mkimg/vmdk.c
181
le64enc(&hdr.overhead, sec);
usr.bin/mkimg/vmdk.c
63
uint64_t overhead;
usr.sbin/makefs/ffs.c
598
size_t blocks, fs_nindir, overhead;
usr.sbin/makefs/ffs.c
607
overhead = howmany(file_len -
usr.sbin/makefs/ffs.c
614
switch (overhead) {
usr.sbin/makefs/ffs.c
640
indir_level = overhead = 0;
usr.sbin/makefs/ffs.c
645
overhead += blocks + 1;
usr.sbin/makefs/ffs.c
654
indir_level, (uintmax_t)overhead);
usr.sbin/ppp/bundle.c
1881
int sp, overhead, maxoverhead;
usr.sbin/ppp/bundle.c
1888
overhead = ccp_MTUOverhead(&dl->physical->link.ccp);
usr.sbin/ppp/bundle.c
1889
if (maxoverhead < overhead)
usr.sbin/ppp/bundle.c
1890
maxoverhead = overhead;
usr.sbin/ppp/bundle.c
1910
overhead = ccp_MTUOverhead(&bundle->ncp.mp.link.ccp);
usr.sbin/ppp/bundle.c
1911
if (maxoverhead < overhead)
usr.sbin/ppp/bundle.c
1912
maxoverhead = overhead;