Searched refs:b_size (Results 1 - 8 of 8) sorted by relevance

/freebsd-current/usr.sbin/watch/
H A Dwatch.c284 size_t b_size = MIN_SIZE; local
344 if (!(buf = (char *) malloc(b_size)))
417 if (nread < (b_size / 2) && (b_size / 2) > MIN_SIZE) {
419 if (!(buf = (char *) malloc(b_size / 2)))
421 b_size = b_size / 2;
423 if (nread > b_size) {
424 b_size = (nread % 2) ? (nread + 1) : (nread);
426 if (!(buf = (char *) malloc(b_size)))
[all...]
/freebsd-current/sys/dev/sym/
H A Dsym_fw.h145 int b_size; /* Size of script B */ member in struct:sym_fw
H A Dsym_hipd.c8429 np->scriptb_sz = fw->b_size;
/freebsd-current/sbin/fsck_ffs/
H A Dfsutil.c321 if (debug && bp->b_size != size) {
323 pfatal("getdatablk: b_size %d != size %ld\n",
324 bp->b_size, size);
416 bp->b_size = size;
452 (bp->b_errs == bp->b_size / dev_bsize) ? "" : "PARTIALLY ",
485 for (i = 0; i < bp->b_size; dp++, i += sizeof(*dp)) {
504 blwrite(fd, bp->b_un.b_buf, bp->b_bno, bp->b_size);
1404 bp->b_size, bp->b_refcnt, bp->b_flags & B_DIRTY ? "dirty" : "clean",
H A Dfsck.h155 int b_size; /* size of I/O */ member in struct:bufarea
234 (bp)->b_size = 0; \
H A Dsetup.c468 sblk.b_size = SBLOCKSIZE;
H A Dinode.c943 numblks = blkroundup(fs, bp->b_size) / fs->fs_bsize;
1107 bp->b_size);
/freebsd-current/sys/contrib/openzfs/module/zfs/
H A Dvdev_draid.c2153 uint64_t b_size = (logical_end >> ashift) - local
2155 ASSERT3U(b_size, >, 0);
2156 end = start + ((((b_size - 1) /

Completed in 201 milliseconds