Searched refs:iblk (Results 1 - 9 of 9) sorted by relevance

/freebsd-current/usr.bin/mkuzip/
H A Dmkuz_conveyor.c59 struct mkuz_blk *oblk, *iblk; local
69 iblk = mkuz_fqueue_deq(cvp->wrk_queue);
70 if (iblk == MKUZ_BLK_EOF) {
72 mkuz_fqueue_enq(cvp->wrk_queue, iblk);
76 mkuz_memvcmp(iblk->data, '\0', iblk->info.len) != 0) {
81 cfp->handler->f_compress(c_ctx, iblk, oblk);
86 oblk->info.blkno = iblk->info.blkno;
88 free(iblk);
H A Dmkuz_zlib.c66 mkuz_zlib_compress(void *p, const struct mkuz_blk *iblk, struct mkuz_blk *oblk) argument
74 if (compress2(oblk->data, &destlen_z, iblk->data, iblk->info.len,
H A Dmkuz_lzma.c77 mkuz_lzma_compress(void *p, const struct mkuz_blk *iblk, struct mkuz_blk *oblk) argument
92 ulp->strm.next_in = iblk->data;
93 ulp->strm.avail_in = iblk->info.len;
101 "out=%zd)", ret, (iblk->info.len - ulp->strm.avail_in),
H A Dmkuz_zstd.c79 mkuz_zstd_compress(void *p, const struct mkuz_blk *iblk, struct mkuz_blk *oblk) argument
86 rc = ZSTD_compress2(cctx, oblk->data, oblk->alen, iblk->data,
87 iblk->info.len);
H A Dmkuzip.c154 struct mkuz_blk *iblk, *oblk; local
327 iblk = oblk = NULL;
328 for(i = io = 0; iblk != MKUZ_BLK_EOF; i++) {
329 iblk = readblock(cfs.fdr, cfs.blksz);
330 mkuz_fqueue_enq(cvp->wrk_queue, iblk);
331 if (iblk != MKUZ_BLK_EOF &&
378 if (iblk == MKUZ_BLK_EOF) {
/freebsd-current/sys/fs/ext2fs/
H A Dext2_extents.c1394 ext4_ext_get_blocks(struct inode *ip, e4fs_daddr_t iblk, argument
1412 if ((bpref = ext4_ext_in_cache(ip, iblk, &newex))) {
1415 newblk = iblk - le32toh(newex.e_blk) +
1417 allocated = le16toh(newex.e_len) - (iblk - le32toh(newex.e_blk));
1425 error = ext4_ext_find_extent(ip, iblk, &path);
1445 if (iblk >= lblk && iblk < lblk + e_len) {
1446 newblk = iblk - lblk + e_start;
1447 allocated = e_len - (iblk - lblk);
1459 bpref = ext4_ext_blkpref(ip, path, iblk);
[all...]
/freebsd-current/sys/contrib/openzfs/module/zfs/
H A Ddmu_zfetch.c725 for (int64_t iblk = ipf_start; iblk < ipf_end; iblk++) {
726 issued += dbuf_prefetch_impl(zf->zf_dnode, 1, iblk,
/freebsd-current/sbin/fsck_ffs/
H A Dinode.c431 ufs2_daddr_t iblk; local
450 iblk = ino_to_fsba(&sblock, inumber);
454 icachebp = getdatablk(iblk, sblock.fs_bsize, BT_INODES);
/freebsd-current/sys/contrib/openzfs/cmd/zdb/
H A Dzdb.c3580 char iblk[32], dblk[32], lsize[32], asize[32], fill[32], dnsize[32]; local
3586 _Static_assert(sizeof (iblk) >= NN_NUMBUF_SZ, "iblk truncated");
3595 "Object", "lvl", "iblk", "dblk", "dsize", "dnsize",
3640 zdb_nicenum(doi.doi_metadata_block_size, iblk, sizeof (iblk));
3681 (u_longlong_t)object, doi.doi_indirection, iblk, dblk,

Completed in 177 milliseconds