HomeSort by relevance Sort by last modified time
    Searched defs:asize (Results 1 - 25 of 31) sorted by null

1 2

  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/
reentr.c 311 size_t asize; local
337 asize = va_arg(ap, size_t);
339 retptr = gethostbyaddr(p0, asize, anint); break;
  /onnv/onnv-gate/usr/src/lib/libkvm/common/
kvm_getcmd.c 86 size_t asize, esize; local
142 asize = aptrcount * sizeof (uintptr_t) + RoundUp(strpoolsz, uintptr_t);
143 if (arg && (argv = calloc(1, asize + sizeof (uintptr_t))) == NULL) {
209 char *argv_null = (char *)argv + asize;
218 str >= (char *)argv + asize)
263 size_t asize; local
302 asize = (size_t)proc->p_usrstack - (size_t)u->u_argv;
303 if ((argv = malloc(asize + sizeof (uintptr_t))) == NULL)
305 argv_null = (char *)argv + asize;
329 (uintptr_t)u->u_argv, argv, asize) != asize)
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/tnf/
trace_funcs.c 107 size_t size, asize; local
133 asize = size + sizeof (tnf_ref32_t); /* one fwd ptr */
141 asize += sizeof (tnf_ref32_t);
148 TNFW_B_ALLOC(wcb, asize, buffer, probe_event_prototype_t *);
  /onnv/onnv-gate/usr/src/lib/libtnfprobe/
trace_funcs.c 113 ulong_t size, asize; local
169 asize = size + sizeof (tnf_ref32_t); /* one fwd ptr */
176 asize += sizeof (tnf_ref32_t);
189 buffer = ops->alloc(wcb, asize, ops->mode);
  /onnv/onnv-gate/usr/src/cmd/lms/tools/
ATNetworkTool.h 130 static const void *saInAddr(const struct sockaddr *ip, size_t &asize)
134 asize = sizeof(in6_addr);
139 asize = sizeof(in_addr);
144 asize = 0;
155 size_t asize; local
156 const void *src = ATAddress::saInAddr(ip, asize);
182 const void *inAddr(size_t &asize) const
184 return ATAddress::saInAddr((const struct sockaddr *)&(this->ip), asize);
213 size_t asize = 0; local
214 const void *a = this->inAddr(asize);
    [all...]
  /onnv/onnv-gate/usr/src/cmd/ntfsprogs/
ntfslabel.c 339 int asize = (24 + label_len + 7) & ~7; local
341 if (biu + asize > le32_to_cpu(ctx->mrec->bytes_allocated)) {
347 memmove((u8*)a + asize, a, biu - ((u8*)a - (u8*)ctx->mrec));
348 ctx->mrec->bytes_in_use = cpu_to_le32(biu + asize);
350 a->length = cpu_to_le32(asize);
mkntfs.c 1121 int asize, mpa_size, err, i; local
1304 int asize, mpa_size, err, i; local
1492 int asize, err; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/sgs/libld/common/
util.c 108 size_t asize = size + HEAPALIGN; local
115 (((size_t)chp->lh_end - (size_t)chp->lh_free) <= asize)) {
118 size_t tsize = (size_t)S_ROUND((asize + hsize), HEAPALIGN);
147 chp->lh_free = (void *)S_ROUND((size_t)chp->lh_free + asize,
  /onnv/onnv-gate/usr/src/cmd/lvm/metassist/layout/
layout_hsp.c 704 uint64_t asize = 0; local
706 error = slice_get_size(aslice, &asize);
707 if (asize >= usize) {
  /onnv/onnv-gate/usr/src/lib/libnsl/rpc/
clnt_bcast.c 125 uint_t asize; /* Size of the addr buf */ member in struct:__anon3824
215 fdlist[fdlistno].asize = addrlen;
  /onnv/onnv-gate/usr/src/lib/libnsl/nis/cache/
mapped_cache.cc 1372 size_t asize; local
1374 asize = (sizeof (int) - 1);
1375 return ((intptr_t) ((n + asize) & ~asize));
  /onnv/onnv-gate/usr/src/uts/common/fs/zfs/
dmu_tx.c 864 uint64_t memory, asize, fsize, usize; local
942 asize = spa_get_asize(tx->tx_pool->dp_spa, towrite + tooverwrite);
956 tx->tx_space_towrite = asize +
963 if (tx->tx_dir && asize != 0) {
965 asize, fsize, usize, &tx->tx_tempreserve_cookie, tx);
metaslab.c 1248 uint64_t asize; local
    [all...]
spa_misc.c 1334 uint64_t asize = DVA_GET_ASIZE(dva); local
    [all...]
vdev.c 80 * Default asize function: return the MAX of psize with the asize of
86 uint64_t asize = P2ROUNDUP(psize, 1ULL << vd->vdev_top->vdev_ashift); local
91 asize = MAX(asize, csize);
94 return (asize);
99 * the vdev's asize rounded to the nearest metaslab. This allows us to
110 * just return our own asize.
124 * so each child must provide at least 1/Nth of its asize.
1098 uint64_t asize, psize local
    [all...]
vdev_raidz.c 443 uint64_t q, r, c, bc, col, acols, scols, coff, devidx, asize, tot; local
474 asize = 0;
498 asize += rm->rm_col[c].rc_size;
501 ASSERT3U(asize, ==, tot << unit_shift);
502 rm->rm_asize = roundup(asize, (nparity + 1) << unit_shift);
504 ASSERT3U(rm->rm_asize - asize, ==, rm->rm_nskip << unit_shift);
1498 uint64_t asize; local
    [all...]
dsl_dataset.c 1816 uint64_t asize; local
    [all...]
zio.c 1607 uint64_t asize; local
2223 uint64_t asize = P2ROUNDUP(zio->io_size, align); local
2649 uint64_t asize = P2ROUNDUP(psize, align); local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libnsl/nsl/
_utility.c 507 unsigned int csize, dsize, asize, osize; local
528 asize = _t_setsize(tsap->ADDR_size, B_FALSE);
547 + asize + (unsigned int)sizeof (t_scalar_t) +
549 asize + (unsigned int)sizeof (t_scalar_t) +
    [all...]
  /onnv/onnv-gate/usr/src/lib/libumem/common/
vmem.c 936 size_t asize = P2ROUNDUP(size + phase, local
938 if (asize < size) { /* overflow */
952 resv = (size == asize) ?
959 vaddr = vmp->vm_source_alloc(vmp->vm_source, asize,
964 vbest = vmem_span_create(vmp, vaddr, asize, 1);
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/os/
vmem.c 1051 size_t aneeded, asize; local
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/vm/
seg_kmem.c 1248 size_t asize = P2ROUNDUP(size, kmemlp_qnt); local
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/inet/sctp/
sctp_asconf.c 387 size_t asize = 0; local
480 asize = sizeof (in6_addr_t) * acount;
481 alist = kmem_alloc(asize, KM_NOSLEEP);
493 kmem_free(alist, asize);
534 kmem_free(alist, asize);
575 alist, asize,
    [all...]
sctp_common.c 1436 size_t asize; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/backup/dump/
dumptape.c 2028 long asize = 0; \/* number of 0.1" units... *\/ local
    [all...]

Completed in 3980 milliseconds

1 2