Searched refs:nbytes (Results 276 - 300 of 354) sorted by relevance

<<1112131415

/illumos-gate/usr/src/cmd/picl/plugins/sun4u/taco/envd/
H A Denvd.h351 int nbytes; member in struct:env_tuneable
/illumos-gate/usr/src/cmd/dc/
H A Ddc.h155 long nbytes; variable
/illumos-gate/usr/src/uts/common/zmod/
H A Dzutil.h100 void *_Cdecl farmalloc( unsigned long nbytes );
/illumos-gate/usr/src/uts/sun4v/sys/
H A Dvdc.h240 size_t nbytes; member in struct:vdc_local_desc
/illumos-gate/usr/src/uts/sun4u/opl/sys/
H A Ddrmach.h246 uint64_t nbytes[NCPU]; member in struct:__anon9901
/illumos-gate/usr/src/lib/smbsrv/libmlsvc/common/
H A Dsamr_clnt.c817 int nbytes; local
833 nbytes = arg.info->n_entry *
836 if ((*groups = malloc(nbytes)) == NULL) {
841 bcopy(arg.info->groups, *groups, nbytes);
/illumos-gate/usr/src/uts/common/fs/smbsrv/
H A Dsmb_mbuf_marshaling.c1078 int nbytes; local
1095 nbytes = smb_mbtowc(&wide_char, mbs, MTS_MB_CHAR_MAX);
1096 if (nbytes == -1)
1104 mbs += nbytes;
/illumos-gate/usr/src/boot/lib/libz/
H A Dzutil.h90 void *_Cdecl farmalloc( unsigned long nbytes );
/illumos-gate/usr/src/uts/common/fs/ufs/
H A Dufs_alloc.c1571 int nbytes, offsetn; local
1638 nbytes = (int)MIN(fs->fs_bsize - offsetn,
1641 berr = bmap_write(ip, uoff, offsetn + nbytes,
1656 if ((uoff + nbytes) > ip->i_size)
1657 ip->i_size = (uoff + nbytes);
1659 done_len += nbytes;
1668 istart = (uoff + nbytes);
/illumos-gate/usr/src/uts/common/avs/ns/sv/
H A Dsv.c2099 size_t tocopy, nbytes; /* byte lengths */ local
2252 nbytes = min(tocopy, (nsc_size_t)v->sv_len);
2255 (void) bcopy(v->sv_addr, buf_addr, nbytes);
2257 (void) bcopy(buf_addr, v->sv_addr, nbytes);
2259 bp->b_resid -= nbytes;
2260 buf_addr += nbytes;
2261 tocopy -= nbytes;
/illumos-gate/usr/src/uts/sun4u/opl/io/
H A Ddr_mem.c1125 uint64_t new_pa, nbytes; local
1190 nbytes = (new_pa - ml0.ml_address);
1191 if (nbytes >= ml0.ml_size) {
1199 ml0.ml_address, nbytes);
1200 ml0.ml_size -= nbytes;
1215 nbytes = (ml0.ml_address + ml0.ml_size - new_pa);
1216 if (nbytes >= ml0.ml_size) {
1224 new_pa, nbytes);
1225 ml0.ml_size -= nbytes;
/illumos-gate/usr/src/cmd/picl/plugins/sun4v/snmp/
H A Dsnmpplugin.c1410 uint_t nbytes; local
1421 nbytes = strlen((const char *)bitstr);
1435 if (ret < 0 || bitstr == NULL || nbytes == 0 || 2 < nbytes) {
1439 } else if (nbytes == 1) {
1450 } else if (nbytes == 2)
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/
H A Drcp.c1782 zwrite(int fd, char *buf, int nbytes) argument
1784 off_t block = zbsize ? zbsize : nbytes;
1787 if (block > nbytes)
1788 block = nbytes;
1789 nbytes -= block;
1806 } while (nbytes > 0);
/illumos-gate/usr/src/lib/libproc/common/
H A Dllib-lproc362 char *buf, size_t nbytes);
364 char *buf, size_t nbytes);
366 char *buf, size_t nbytes);
/illumos-gate/usr/src/uts/common/vm/
H A Dseg_dev.c503 size_t nbytes = vpgtob(npages); local
505 newsdp->vpage = kmem_zalloc(nbytes, KM_SLEEP);
506 bcopy(sdp->vpage, newsdp->vpage, nbytes);
628 register size_t nbytes; local
741 nbytes = vpgtob(npages);
742 sdp->vpage = kmem_alloc(nbytes, KM_SLEEP);
743 bcopy(&ovpage[dpages], sdp->vpage, nbytes);
772 nbytes = vpgtob(npages);
773 sdp->vpage = kmem_alloc(nbytes, KM_SLEEP);
774 bcopy(ovpage, sdp->vpage, nbytes);
[all...]
/illumos-gate/usr/src/lib/libkmf/libkmf/common/
H A Dgeneralop.c1577 int nbytes, index; local
1593 nbytes = 0;
1610 nbytes++;
1616 nbytes++;
1625 oid->Length = nbytes;
1650 nbytes = 0;
1654 nbytes++;
1658 op += nbytes;
/illumos-gate/usr/src/cmd/sendmail/db/db/
H A Ddb_rec.c75 if ((ret = __db_pitem(dbc, pagep, argp->indx, argp->nbytes,
86 pagep, argp->indx, argp->nbytes)) != 0)
/illumos-gate/usr/src/uts/sun4u/starfire/io/
H A Ddrmach.c1471 uint64_t nbytes; local
1475 nbytes = ml->ml_size;
1477 while (nbytes != 0ull) {
1500 nbytes -= (4 * sizeof (uint64_t));
3547 uint64_t nbytes; local
3550 nbytes = ml->ml_size;
3552 while (nbytes != 0ull) {
3561 nbytes -= (4 * sizeof (uint64_t));
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/chicago/envd/
H A Dpiclenvd.c1998 (void) memcpy(buf, tuneablep->value, tuneablep->nbytes);
2019 (void) memcpy(tuneables->value, buf, tuneables->nbytes);
2038 (void) memcpy(buf, tuneablep->value, tuneablep->nbytes);
2059 (void) memcpy(tuneablep->value, buf, tuneablep->nbytes);
/illumos-gate/usr/src/cmd/fs.d/ufs/volcopy/
H A Dvolcopy.c226 * g_read: Read nbytes of data from fdes (of type devtype) and place
233 g_read(int devtype, int fdes, void *buf, size_t nbytes) argument
237 rv = read(fdes, buf, nbytes);
249 * g_write: Write nbytes of data to fdes (of type devtype) from
256 g_write(int devtype, int fdes, void *buf, size_t nbytes) argument
260 rv = write(fdes, buf, nbytes);
/illumos-gate/usr/src/uts/common/io/audio/impl/
H A Daudio_engine.c169 int nbytes; local
172 nbytes = cnt * e->e_framesz;
174 bcopy(e->e_data + (tidx * e->e_framesz), ptr, nbytes);
175 ptr += nbytes;
1023 kstat_named_init(&st->st_nbytes, "nbytes", KSTAT_DATA_UINT32);
H A Daudio_sun.c530 unsigned nbytes = dc->dc_proc->p_info.record.buffer_size; local
531 unsigned count = nbytes / framesz;
542 ((mp = allocb(nbytes, BPRI_MED)) == NULL)) {
561 mp->b_wptr += nbytes;
/illumos-gate/usr/src/uts/sun4v/io/n2rng/
H A Dn2rng_kcf.c59 int fips_random(n2rng_t *n2rng, uint8_t *out, size_t nbytes);
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dzfs_vnops.c428 uint64_t nbytes = MIN(PAGESIZE - off, len); local
434 (void) dmu_read(os, oid, start+off, nbytes, va+off,
439 len -= nbytes;
455 mappedread(vnode_t *vp, int nbytes, uio_t *uio) argument
459 int len = nbytes;
512 ssize_t n, nbytes; local
605 nbytes = MIN(n, zfs_read_chunk_size -
609 error = mappedread(vp, nbytes, uio);
612 uio, nbytes);
621 n -= nbytes;
663 ssize_t n, nbytes; local
[all...]
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dgetutx.c1269 ssize_t nbytes, bufsz = sizeof (struct futmpx) * UTMPNBUF; local
1282 if ((nbytes = read(fd, utmpbuf, bufsz)) < bufsz) {
1287 nidx = nbytes / sizeof (struct futmpx);

Completed in 116 milliseconds

<<1112131415