Searched refs:boff (Results 1 - 22 of 22) sorted by relevance

/illumos-gate/usr/src/lib/libtecla/common/
H A Dchrqueue.c186 int boff = cq->ntotal % GL_CQ_SIZE; local
189 * character to write into it, if boff is 0 at this point, it means
200 if(boff == 0 && _idle_FreeListNodes(cq->bufmem) == 0) {
210 boff = cq->ntotal % GL_CQ_SIZE;
214 * character to write into it, if boff is 0 at this point, it means
218 if(boff == 0) {
244 nleft = GL_CQ_SIZE - boff;
256 memcpy(cq->buffers.tail->bytes + boff, chars + ndone, nnew);
/illumos-gate/usr/src/uts/common/fs/pcfs/
H A Dpc_dir.c139 int boff; local
223 boff = pc_blkoff(fsp, offset);
232 *pcpp = pc_getnode(fsp, blkno, boff, ep);
279 int boff; local
352 boff = pc_blkoff(fsp, offset);
353 if (boff == 0 || bp == NULL || boff >= bp->b_bcount) {
491 int boff; local
507 boff = pc_blkoff(VFSTOPCFS(vp->v_vfsp), offset);
508 if (boff
699 int boff; local
905 int boff; local
1155 int boff = pc_blkoff(fsp, *offset); local
1207 int boff; local
1268 int boff; local
1625 int boff; local
[all...]
H A Dpc_vnops.c1310 int boff; local
1382 boff = pc_blkoff(fsp, offset);
1383 if (boff == 0 || bp == NULL || boff >= bp->b_bcount) {
2175 int boff; local
2197 boff = pc_blkoff(fsp, *offset);
2198 if (boff == 0 || *bp == NULL || boff >= (*bp)->b_bcount) {
2233 boff = pc_blkoff(fsp, *offset);
2235 if (boff
2361 int boff = pc_blkoff(fsp, *offset); local
[all...]
/illumos-gate/usr/src/uts/common/io/hxge/
H A Dhxge_send.c133 uint32_t boff = 0; local
268 pkt_len = pack_len = boff = TX_PKT_HEADER_SIZE;
324 boff = 0;
372 boff = pack_len - len;
377 boff = 0;
388 if ((boff == TX_PKT_HEADER_SIZE) && (nmblks == 1)) {
397 kaddr += boff;
402 "bcopy clen %d bcopy boff %d",
405 clen, boff));
413 b_rptr, kaddr, len, boff));
[all...]
/illumos-gate/usr/src/boot/lib/libstand/
H A Dcd9660.c280 daddr_t bno, boff; local
318 boff = 0;
325 cdb2devb(bno + boff),
334 boff++;
339 off = boff * ISO_DEFAULT_BLOCK_SIZE;
359 off = boff * ISO_DEFAULT_BLOCK_SIZE;
/illumos-gate/usr/src/uts/common/fs/ufs/
H A Dufs_inode.c1163 int boff; local
1238 boff = (int)blkoff(fs, length);
1247 if (boff == 0)
1250 err = BMAPALLOC(oip, length - 1, boff, cr);
1267 if ((boff = (int)blkoff(fs, osize)) != 0) {
1269 fs->fs_bsize : fragroundup(fs, boff);
1271 (size_t)(bsize - boff));
1303 if (boff == 0) {
1314 err = BMAPALLOC(oip, length - 1, boff, cr);
1371 fs->fs_bsize : fragroundup(fs, boff);
[all...]
H A Dufs_bmap.c104 * boff indicates that we want a page in the middle
108 * boff always == 0
112 #define DOEXTENT(fs, lbn, boff, bnp, lenp, size, tblp, n, chkfrag, maxtrans) {\
130 len -= (boff); \
134 *(bnp) = fsbtodb(fs, *dp) + btodb(boff); \
211 int i, j, boff; local
219 boff = (int)blkoff(fs, off);
227 DOEXTENT(fs, lbn, boff, bnp, lenp,
287 DOEXTENT(fs, lbn, boff, bnp, lenp, ip->i_size, &bap[i],
/illumos-gate/usr/src/lib/libproc/common/
H A DPgcore.c1045 off64_t poff, soff, doff, boff; local
1153 doff = boff = ehdr.e_ehsize +
1211 doff = boff = ehdr.e_ehsize +
1284 phdr.p_offset = (Elf32_Off)boff;
1285 phdr.p_filesz = doff - boff;
1286 boff = doff;
1298 phdr.p_offset = boff;
1299 phdr.p_filesz = doff - boff;
1300 boff = doff;
1472 phdr.p_offset = (Elf32_Off)boff;
[all...]
/illumos-gate/usr/src/uts/common/sys/fs/
H A Dhsfs_node.h343 #define BYTE_TO_LBN(boff, vfsp) ((boff)>>((struct hsfs *)((vfsp)->vfs_data))-> \
/illumos-gate/usr/src/uts/common/vm/
H A Dvm_swap.c221 size_t aoff, boff, poff, slotnumber; local
267 * boff is the page number offset of the free page
272 for (boff = (sip->si_hint % NBBW); boff < NBBW; boff++) {
273 if (!TESTBIT(sip->si_swapslots, aoff + boff))
278 for (boff = 0; boff < (sip->si_hint % NBBW); boff++) {
279 if (!TESTBIT(sip->si_swapslots, aoff + boff))
[all...]
/illumos-gate/usr/src/uts/common/io/nxge/
H A Dnxge_send.c182 uint32_t boff = 0; local
428 pkt_len = pack_len = boff = TX_PKT_HEADER_SIZE;
496 boff = 0;
547 boff = pack_len - len;
552 boff = 0;
564 if ((boff == TX_PKT_HEADER_SIZE) && (nmblks == 1)) {
573 kaddr += boff;
581 "bcopy boff %d",
587 boff));
595 b_rptr, kaddr, len, boff));
[all...]
/illumos-gate/usr/src/uts/common/fs/udfs/
H A Dudf_inode.c1558 int32_t error, boff; local
1591 boff = blkoff(udf_vfsp, length);
1599 if (boff == 0) {
1603 error = ud_bmap_write(oip, length - 1, boff, 0, cr);
1615 if ((boff = blkoff(udf_vfsp, osize)) != 0) {
1617 (uint32_t)(bsize - boff));
1634 if (boff == 0) {
1644 error = ud_bmap_write(oip, length - 1, boff, 0, cr);
1649 pvn_vpzero(ITOV(oip), length, (uint32_t)(bsize - boff));
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dzvol.c1351 uint64_t boff; local
1361 boff = ldbtob(blkno);
1364 VERIFY3U(boff + resid, <=, zv->zv_volsize);
1367 size = MIN(resid, P2END(boff, zv->zv_volblocksize) - boff);
1368 error = zvol_dumpio(zv, addr, boff, size, B_FALSE, B_TRUE);
1371 boff += size;
/illumos-gate/usr/src/uts/sun4u/starcat/io/
H A Diosram.c662 int boff; local
732 if ((boff = ((uintptr_t)iosramp & (UINT32SZ - 1))) != 0) {
733 int cnt = UINT32SZ - boff;
860 int boff; local
940 if ((boff = ((uintptr_t)iosramp & (UINT32SZ - 1))) != 0) {
941 int cnt = UINT32SZ - boff;
/illumos-gate/usr/src/cmd/sgs/elfdump/common/
H A Dgen_struct_layout.c700 print_row(int boff, int eltlen, int nelts, int issigned, char *comment) argument
703 boff, eltlen, nelts, issigned, comment);
/illumos-gate/usr/src/cmd/mdb/intel/modules/mdb_kb/
H A Dmdb_kb.c392 size_t boff = xc->xc_hdr.xch_index_offset; local
396 off = PAGE_MASK(boff);
409 PAGE_OFFSET(boff));
/illumos-gate/usr/src/cmd/fs.d/ufs/fsck/
H A Dutilities.c2047 cg_constants(int cgno, daddr32_t *btotoff, daddr32_t *boff, argument
2065 *boff = *btotoff + sblock.fs_cpg * sizeof (daddr32_t);
2066 *iusedoff = *boff + sblock.fs_cpg * sblock.fs_nrpos * sizeof (int16_t);
2129 * For btotoff and boff, if they're misaligned they won't
/illumos-gate/usr/src/cmd/mdb/common/mdb/
H A Dmdb_ctf.c1137 ulong_t boff; local
1143 if (mdb_ctf_member_info(b, name, &boff, &bmem) != 0)
1149 if (aoff != boff)
/illumos-gate/usr/src/boot/sys/boot/zfs/
H A Dzfsimpl.c1263 int boff = offset % bsize; local
1308 i = bsize - boff;
1310 memcpy(buf, &dnode_cache_buf[boff], i);
/illumos-gate/usr/src/uts/common/io/fibre-channel/fca/qlc/
H A Dql_xioctl.c3015 uint32_t bsize, boff, types, cpsize, hsize; local
3044 boff = 0;
3059 (void *)(uintptr_t)(cmd->ResponseAdr + boff),
3067 boff += 100;
3131 uint32_t boff = 0; local
3160 boff = 0;
3165 (void *)(uintptr_t)(cmd->ResponseAdr + boff),
3169 EL(ha, "failed, ddicopy at %xh, done\n", boff);
3174 boff += FBUFSIZE;
/illumos-gate/usr/src/uts/common/avs/ns/sdbc/
H A Dsd_tdaemon.c638 int offset, boff; member in struct:io_type
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/mdnsd/
H A DDNSCommon.c1660 int boff = (type & 0xff ) >> 3; local
1661 if (wlen <= boff)
1665 return (bmap[boff] & (0x80 >> (type & 7)));

Completed in 224 milliseconds