Home
last modified time | relevance | path

Searched refs:zsize (Results 1 – 8 of 8) sorted by relevance

/freebsd/sys/dev/random/
H A Dunit_test.c176 size_t tid, zsize; in ReadCSPRNG() local
203 zsize = block_deflate(buf, zbuf, i); in ReadCSPRNG()
204 if (zsize < i) in ReadCSPRNG()
214 for (j = 0; j < zsize; j++) { in ReadCSPRNG()
216 if (j % 32 == 31 || j == zsize - 1) in ReadCSPRNG()
/freebsd/lib/libc/resolv/
H A Dres_findzonecut.c155 char *zname, size_t zsize, struct in_addr *addrs, int naddrs) in res_findzonecut() argument
168 result = res_findzonecut2(statp, dname, class, opts, zname, zsize, in res_findzonecut()
181 char *zname, size_t zsize, union res_sockaddr_union *addrs, in res_findzonecut2() argument
190 dname, p_class(class), (long)zsize, naddrs)); in res_findzonecut2()
198 if ((n = get_soa(statp, dname, class, opts, zname, zsize, in res_findzonecut2()
271 char *zname, size_t zsize, char *mname, size_t msize, in get_soa() argument
363 if (strlen(t) + 1 > zsize) { in get_soa()
365 (unsigned long)zsize, in get_soa()
/freebsd/sys/geom/uzip/
H A Dg_uzip.c228 size_t i, start_blk, end_blk, zsize; in g_uzip_request() local
247 zsize = MIN(sc->blksz - start_blk_ofs, bp->bio_resid); in g_uzip_request()
250 (uintmax_t)bp->bio_completed, (uintmax_t)zsize)); in g_uzip_request()
251 bzero(bp->bio_data + bp->bio_completed, zsize); in g_uzip_request()
252 bp->bio_completed += zsize; in g_uzip_request()
253 bp->bio_resid -= zsize; in g_uzip_request()
254 ofs += zsize; in g_uzip_request()
/freebsd/sys/fs/tarfs/
H A Dtarfs_io.c328 off_t zsize; in tarfs_zread_zstd() local
407 error = vn_getsize_locked(tmp->vp, &zsize, td->td_ucred); in tarfs_zread_zstd()
411 if (zio->ipos >= zsize) { in tarfs_zread_zstd()
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dvdev_raidz_math_impl.h1450 const size_t zsize = rr->rr_col[z].rc_size; in raidz_reconstruct_pqr_impl() local
1476 if (zsize < xsize) { in raidz_reconstruct_pqr_impl()
1515 if (zsize < xsize) in raidz_reconstruct_pqr_impl()
1516 raidz_copy(rr->rr_col[z].rc_abd, zabd, 0, zsize); in raidz_reconstruct_pqr_impl()
1522 if (zsize < xsize) in raidz_reconstruct_pqr_impl()
/freebsd/usr.sbin/newsyslog/
H A Dnewsyslog.c2334 int zsize, const char *zipfname) in save_zipwork() argument
2341 if (zsize < 0) in save_zipwork()
2342 zsize = sizefile(zipfname); in save_zipwork()
2350 if (zsize > ztmp->zw_fsize) in save_zipwork()
2360 ztmp->zw_fsize = zsize; in save_zipwork()
/freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_aggregate.c1687 size_t nentries = 0, nbundles = 0, start, zsize = 0, bundlesize; local
1885 zsize = zaggdata[i].dtahe_size;
1886 assert(zsize != 0);
1888 if ((zdata = dt_zalloc(dtp, zsize)) == NULL) {
/freebsd/sys/vm/
H A Duma_core.c3086 size_t ksize, zsize, size; in uma_startup1() local
3100 zsize = sizeof(struct uma_zone) + in uma_startup1()
3103 zsize = roundup(zsize, UMA_SUPER_ALIGN); in uma_startup1()
3106 size = (zsize * 2) + ksize; in uma_startup1()
3114 m += zsize; in uma_startup1()
3116 m += zsize; in uma_startup1()
3130 zone_ctor(kegs, zsize, &args, M_WAITOK); in uma_startup1()
3133 args.size = zsize; in uma_startup1()
3141 zone_ctor(zones, zsize, &args, M_WAITOK); in uma_startup1()