Symbol: overhead
crypto/libressl/crypto/evp/e_aes.c
2389
.overhead = EVP_AEAD_AES_GCM_TAG_LEN,
crypto/libressl/crypto/evp/e_aes.c
2401
.overhead = EVP_AEAD_AES_GCM_TAG_LEN,
crypto/libressl/crypto/evp/e_chacha20poly1305.c
337
.overhead = POLY1305_TAG_LEN,
crypto/libressl/crypto/evp/e_chacha20poly1305.c
355
.overhead = POLY1305_TAG_LEN,
crypto/libressl/crypto/evp/evp_aead.c
111
size_t possible_out_len = in_len + ctx->aead->overhead;
crypto/libressl/crypto/evp/evp_aead.c
41
return aead->overhead;
crypto/libressl/crypto/evp/evp_locl.h
277
unsigned char overhead;
crypto/libressl/ssl/d1_both.c
216
size_t overhead;
crypto/libressl/ssl/d1_both.c
244
if (!tls12_record_layer_write_overhead(s->internal->rl, &overhead))
crypto/libressl/ssl/d1_both.c
250
DTLS1_RT_HEADER_LENGTH - overhead;
crypto/libressl/ssl/d1_both.c
258
overhead;
crypto/libressl/ssl/s3_cbc.c
120
const unsigned int overhead = 1 /* padding length byte */ + mac_size;
crypto/libressl/ssl/s3_cbc.c
126
if (overhead + eiv_len > rec->length)
crypto/libressl/ssl/s3_cbc.c
136
good = constant_time_ge(rec->length, overhead + padding_length);
crypto/libressl/ssl/ssl_locl.h
681
size_t *overhead);
crypto/libressl/ssl/tls12_record_layer.c
228
size_t *overhead)
crypto/libressl/ssl/tls12_record_layer.c
232
*overhead = 0;
crypto/libressl/ssl/tls12_record_layer.c
235
*overhead = rl->write->aead_tag_len;
crypto/libressl/ssl/tls12_record_layer.c
247
*overhead = eiv_len + block_size + mac_len;
libexec/rtld-elf/malloc.c
103
static union overhead *nextf[NBUCKETS];
libexec/rtld-elf/malloc.c
137
union overhead *op;
libexec/rtld-elf/malloc.c
150
op = (union overhead *)(pagepool_start);
libexec/rtld-elf/malloc.c
238
union overhead *op;
libexec/rtld-elf/malloc.c
264
op = (union overhead *)pagepool_start;
libexec/rtld-elf/malloc.c
273
op->ov_next = (union overhead *)((caddr_t)op + sz);
libexec/rtld-elf/malloc.c
274
op = (union overhead *)((caddr_t)op + sz);
libexec/rtld-elf/malloc.c
282
union overhead *op;
libexec/rtld-elf/malloc.c
286
op = (union overhead *)((caddr_t)cp - sizeof (union overhead));
libexec/rtld-elf/malloc.c
324
union overhead *op;
libexec/rtld-elf/malloc.c
330
op = (union overhead *)((caddr_t)cp - sizeof (union overhead));
libexec/rtld-elf/malloc.c
389
findbucket(union overhead *freep, int srchlen)
libexec/rtld-elf/malloc.c
391
union overhead *p;
libexec/rtld-elf/malloc.c
417
union overhead *p;
libexec/rtld-elf/malloc.c
73
union overhead *ov_next; /* when free */
sys/netproto/802_11/wlan/ieee80211_mesh.c
3362
uint32_t overhead, rate, errrate;
sys/netproto/802_11/wlan/ieee80211_mesh.c
3367
overhead = ieee80211_compute_duration(ic->ic_rt,
sys/netproto/802_11/wlan/ieee80211_mesh.c
3383
res = (overhead + (nbits / rate)) *
sys/vfs/ext2fs/ext2_vfsops.c
1092
uint32_t overhead, overhead_per_group, ngdb;
sys/vfs/ext2fs/ext2_vfsops.c
1107
overhead = le32toh(fs->e2fs->e2fs_first_dblock) +
sys/vfs/ext2fs/ext2_vfsops.c
1122
overhead += ngroups * (1 /* superblock */ + ngdb);
sys/vfs/ext2fs/ext2_vfsops.c
1127
sbp->f_blocks = fs->e2fs_bcount - overhead;
sys/vfs/ext2fs/ext2_vfsops.c
1144
uint32_t overhead, overhead_per_group, ngdb;
sys/vfs/ext2fs/ext2_vfsops.c
1159
overhead = le32toh(fs->e2fs->e2fs_first_dblock) +
sys/vfs/ext2fs/ext2_vfsops.c
1174
overhead += ngroups * (1 /* superblock */ + ngdb);
sys/vfs/ext2fs/ext2_vfsops.c
1179
sbp->f_blocks = fs->e2fs_bcount - overhead;
usr.sbin/ppp/bundle.c
1875
int sp, overhead, maxoverhead;
usr.sbin/ppp/bundle.c
1882
overhead = ccp_MTUOverhead(&dl->physical->link.ccp);
usr.sbin/ppp/bundle.c
1883
if (maxoverhead < overhead)
usr.sbin/ppp/bundle.c
1884
maxoverhead = overhead;
usr.sbin/ppp/bundle.c
1904
overhead = ccp_MTUOverhead(&bundle->ncp.mp.link.ccp);
usr.sbin/ppp/bundle.c
1905
if (maxoverhead < overhead)
usr.sbin/ppp/bundle.c
1906
maxoverhead = overhead;