| /freebsd-13-stable/contrib/tcsh/ |
| HD | tc.alloc.c | 109 union overhead { union 110 union overhead *ov_next; /* when free */ 146 static union overhead *nextf[NBUCKETS] IZERO_STRUCT; 155 static int findbucket (union overhead *, int); 180 union overhead *p; in malloc() 201 nbytes = MEMALIGN(MEMALIGN(sizeof(union overhead)) + nbytes + RSLOP); in malloc() 238 return ((memalign_t) (((caddr_t) p) + MEMALIGN(sizeof(union overhead)))); in malloc() 254 union overhead *op; in morecore() 265 op = (union overhead *) sbrk(0); in morecore() 278 op = (union overhead *) memtop; in morecore() [all …]
|
| /freebsd-13-stable/libexec/rtld-elf/ |
| HD | rtld_malloc.c | 74 union overhead { union 75 union overhead *ov_next; /* when free */ 98 static union overhead *nextf[NBUCKETS]; 113 return (((caddr_t)cp - sizeof(union overhead))); in cp2op() 119 union overhead *op; in __crt_malloc() 177 union overhead ov1; in __crt_aligned_alloc_offset() 183 mem = __crt_malloc(size + align + offset + sizeof(union overhead)); in __crt_aligned_alloc_offset() 186 x = roundup2((uintptr_t)mem + sizeof(union overhead), align); in __crt_aligned_alloc_offset() 190 ov1.ov_index = x - (uintptr_t)mem + sizeof(union overhead); in __crt_aligned_alloc_offset() 201 union overhead *op; in morecore() [all …]
|
| /freebsd-13-stable/sys/netgraph/ |
| HD | ng_pipe.c | 98 u_int32_t overhead; member 111 + priv->overhead ) * hinfo->run.fifo_queues * \ 357 cfg->overhead = priv->overhead; in ngp_rcvmsg() 382 priv->overhead = 0; in ngp_rcvmsg() 388 priv->overhead = 8+4+12; /* Ethernet */ in ngp_rcvmsg() 390 priv->overhead = 10; /* HDLC */ in ngp_rcvmsg() 393 if (cfg->overhead == -1) in ngp_rcvmsg() 394 priv->overhead = 0; in ngp_rcvmsg() 395 else if (cfg->overhead > 0 && in ngp_rcvmsg() 396 cfg->overhead < MAX_OHSIZE) in ngp_rcvmsg() [all …]
|
| HD | ng_pipe.h | 147 u_int32_t overhead; member
|
| /freebsd-13-stable/crypto/heimdal/appl/ftp/ftp/ |
| HD | security.h | 54 int (*overhead)(void *, int, int); member 65 int (*overhead)(void *, int, int); member
|
| /freebsd-13-stable/contrib/xz/src/liblzma/common/ |
| HD | block_buffer_encoder.c | 42 const uint64_t overhead = ((uncompressed_size + LZMA2_CHUNK_MAX - 1) in lzma2_bound() local 47 if (COMPRESSED_SIZE_MAX - overhead < uncompressed_size) in lzma2_bound() 50 return uncompressed_size + overhead; in lzma2_bound()
|
| /freebsd-13-stable/sys/x86/x86/ |
| HD | tsc.c | 244 int64_t overhead; in tsc_freq_tc() local 247 overhead = 0; in tsc_freq_tc() 253 overhead += tsc2 - tsc1; in tsc_freq_tc() 255 overhead /= count; in tsc_freq_tc() 260 tsc_freq = (tsc2 - tsc1 - overhead) * 10; in tsc_freq_tc()
|
| /freebsd-13-stable/share/examples/hwpmc/ |
| HD | Makefile | 4 PROG= overhead
|
| /freebsd-13-stable/usr.bin/mkimg/ |
| HD | vmdk.c | 61 uint64_t overhead; member 179 le64enc(&hdr.overhead, sec); in vmdk_write()
|
| /freebsd-13-stable/sys/kgssapi/krb5/ |
| HD | krb5_mech.c | 2026 OM_uint32 overhead; in krb5_wrap_size_limit() local 2048 overhead = 5 + 2 + krb5_mech_oid.length; in krb5_wrap_size_limit() 2049 overhead += 8 + 8 + ec->ec_msgblocklen; in krb5_wrap_size_limit() 2050 overhead += ec->ec_checksumlen; in krb5_wrap_size_limit() 2062 overhead = 16 + ec->ec_blocklen; in krb5_wrap_size_limit() 2063 overhead += ec->ec_msgblocklen - 1; in krb5_wrap_size_limit() 2064 overhead += 16; in krb5_wrap_size_limit() 2065 overhead += ec->ec_checksumlen; in krb5_wrap_size_limit() 2070 overhead = 16 + ec->ec_checksumlen; in krb5_wrap_size_limit() 2074 *max_input_size = req_output_size - overhead; in krb5_wrap_size_limit()
|
| /freebsd-13-stable/crypto/openssl/ssl/record/ |
| HD | ssl3_record.c | 104 int early_data_count_ok(SSL *s, size_t length, size_t overhead, int send) in early_data_count_ok() argument 139 max_early_data += overhead; in early_data_count_ok() 1483 const size_t overhead = 1 /* padding length byte */ + mac_size; in ssl3_cbc_remove_padding() local 1488 if (overhead > rec->length) in ssl3_cbc_remove_padding() 1492 good = constant_time_ge_s(rec->length, padding_length + overhead); in ssl3_cbc_remove_padding() 1518 const size_t overhead = 1 /* padding length byte */ + mac_size; in tls1_cbc_remove_padding() local 1525 if (overhead + block_size > rec->length) in tls1_cbc_remove_padding() 1532 } else if (overhead > rec->length) in tls1_cbc_remove_padding() 1544 good = constant_time_ge_s(rec->length, overhead + padding_length); in tls1_cbc_remove_padding()
|
| HD | record_local.h | 119 int early_data_count_ok(SSL *s, size_t length, size_t overhead, int send);
|
| /freebsd-13-stable/tests/sys/capsicum/ |
| HD | Makefile | 34 overhead.cc \
|
| /freebsd-13-stable/crypto/openssl/doc/man3/ |
| HD | DTLS_get_data_mtu.pod | 16 DTLS connection B<ssl>, based on the DTLS record MTU and the overhead
|
| HD | BN_CTX_start.pod | 21 in order to save the overhead of repeatedly creating and
|
| HD | DSA_sign.pod | 30 cause overhead, and does not affect the actual signature
|
| /freebsd-13-stable/sys/mips/conf/ |
| HD | TP-WN1043ND | 50 # We bite the performance overhead for now; the kernel won't
|
| HD | PICOSTATION_M2HP | 26 # We bite the performance overhead for now; the kernel won't
|
| HD | ROCKET_M2HP | 26 # We bite the performance overhead for now; the kernel won't
|
| HD | AP91 | 26 # We bite the performance overhead for now; the kernel won't
|
| /freebsd-13-stable/contrib/capsicum-test/ |
| HD | makefile | 2 …penat.o sysctl.o select.o mqueue.o socket.o sctp.o capability-fd-pair.o linux.o overhead.o rename.o
|
| /freebsd-13-stable/contrib/tcp_wrappers/ |
| HD | BLURB | 11 client or server applications, and impose no overhead on the actual
|
| /freebsd-13-stable/usr.sbin/ppp/ |
| HD | bundle.c | 1881 int sp, overhead, maxoverhead; in bundle_CalculateBandwidth() local 1888 overhead = ccp_MTUOverhead(&dl->physical->link.ccp); in bundle_CalculateBandwidth() 1889 if (maxoverhead < overhead) in bundle_CalculateBandwidth() 1890 maxoverhead = overhead; in bundle_CalculateBandwidth() 1910 overhead = ccp_MTUOverhead(&bundle->ncp.mp.link.ccp); in bundle_CalculateBandwidth() 1911 if (maxoverhead < overhead) in bundle_CalculateBandwidth() 1912 maxoverhead = overhead; in bundle_CalculateBandwidth()
|
| /freebsd-13-stable/sys/fs/ext2fs/ |
| HD | ext2_vfsops.c | 1081 uint32_t overhead, overhead_per_group, ngdb; in ext2_statfs() local 1096 overhead = le32toh(fs->e2fs->e2fs_first_dblock) + in ext2_statfs() 1111 overhead += ngroups * (1 /* superblock */ + ngdb); in ext2_statfs() 1115 sbp->f_blocks = fs->e2fs_bcount - overhead; in ext2_statfs()
|
| /freebsd-13-stable/sys/netinet/ |
| HD | sctp_asconf.c | 2561 uint32_t p_length, overhead; in sctp_compose_asconf() local 2576 overhead = SCTP_MIN_OVERHEAD; in sctp_compose_asconf() 2578 overhead = SCTP_MIN_V4_OVERHEAD; in sctp_compose_asconf() 2581 overhead += sizeof(struct sctp_asconf_chunk); in sctp_compose_asconf() 2583 overhead += sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id); in sctp_compose_asconf() 2584 if (stcb->asoc.smallest_mtu <= overhead) { in sctp_compose_asconf() 2629 if ((SCTP_BUF_LEN(m_asconf) + p_length > stcb->asoc.smallest_mtu - overhead) || in sctp_compose_asconf()
|