Searched defs:overhead (Results 1 - 7 of 7) sorted by relevance

/illumos-gate/usr/src/cmd/fs.d/pcfs/fsck/
H A Dbpb.c63 int32_t overhead; local
80 overhead = TheBIOSParameterBlock.bpb.resv_sectors;
84 overhead += RootDirSize / TheBIOSParameterBlock.bpb.bytes_per_sector;
90 overhead += TheBIOSParameterBlock.bpb.num_fats *
111 overhead += TheBIOSParameterBlock.bpb.num_fats *
125 dataSectors -= overhead;
133 FirstClusterOffset = overhead *
159 gettext("File system overhead of %d sectors.\n"), overhead);
/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/mech/
H A Dwrap_size_limit.c113 int overhead; local
146 /* No pseudo-ASN.1 wrapper overhead, so no sequence length and
180 overhead = 7 + ctx->mech_used->length;
188 if (ohlen+overhead < req_output_size)
193 *max_input_size = (req_output_size - ohlen - overhead) & (~(OM_uint32)7);
/illumos-gate/usr/src/lib/libumem/common/
H A Dmalloc.c157 size_t overhead; local
172 overhead = 2 * sizeof (malloc_data_t);
174 overhead = sizeof (malloc_data_t);
177 ASSERT(overhead <= align);
179 size = size_arg + overhead;
180 phase = align - overhead;
223 ASSERT((void *)((uintptr_t)ret - overhead) == buf);
313 size_t overhead = sizeof (malloc_data_t); local
318 overhead += sizeof (malloc_data_t);
338 data_size = size - overhead;
[all...]
/illumos-gate/usr/src/lib/libbsdmalloc/common/
H A Dmalloc.bsd43.c46 * The overhead on a block is at least 4 bytes. When free, this space
54 union overhead { union
55 union overhead *ov_next; /* when free */
60 uchar_t ovu_pad[sizeof (union overhead *) - 2];
62 uchar_t ovu_pad[sizeof (union overhead *) - 2];
79 * The overhead information precedes the data area returned to the user.
88 static union overhead *nextf[NBUCKETS];
94 static int findbucket(union overhead *, int);
99 union overhead *op;
119 * sbrk(0) + sizeof (union overhead)
[all...]
/illumos-gate/usr/src/cmd/lvm/metassist/layout/
H A Dlayout_validate.c457 * RETURNS: the requested volume size with an overhead factor applied
460 * to account for some of the expected overhead required for
467 double overhead = 1.15; local
469 uint64_t result = (uint64_t)(d_size * overhead);
/illumos-gate/usr/src/uts/common/inet/ip/
H A Dspd.c3076 int32_t overhead = 0; local
3082 overhead += IPSEC_MAX_AH_HDR_SIZE;
3084 overhead += IPSEC_MAX_ESP_HDR_SIZE;
3085 overhead += sizeof (struct udphdr);
3088 overhead += IP_SIMPLE_HDR_LENGTH;
3090 return (overhead);
3168 int32_t overhead, maxovhd = 0; local
3213 overhead = ipsec_act_ovhd(&a[i]);
3214 if (maxovhd < overhead)
3215 maxovhd = overhead;
[all...]
/illumos-gate/usr/src/cmd/mdb/common/modules/libumem/
H A Dumem.c3940 * cache_bufsize. If there is debugging or alignment overhead in
3972 size_t overhead = sizeof (md); local
3979 m_addr += overhead;
3980 overhead += sizeof (md);
3994 mallocsz = md.malloc_size - overhead;
3998 ump->um_malloc_overhead += overhead;
4000 /* include round-off and debug overhead */
4148 size_t overhead; local
4227 overhead = mi.um_malloc_overhead;
4237 * include per-slab overhead
[all...]

Completed in 109 milliseconds