Searched refs:bigsize (Results 1 - 3 of 3) sorted by path

/freebsd-11-stable/sys/vm/
H A Dvm_pageout.c1594 vm_offset_t size, bigsize; local
1608 bigsize = 0;
1673 if (size > bigsize) {
1677 bigsize = size;
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/ztest/
H A Dztest.c3755 uint64_t packobj, packoff, packsize, bigobj, bigoff, bigsize; local
3821 bigsize = s * chunksize;
3824 bigbuf = umem_alloc(bigsize, UMEM_NOFAIL);
3838 error = dmu_read(os, bigobj, bigoff, bigsize, bigbuf,
3850 dmu_tx_hold_free(tx, bigobj, bigoff, bigsize);
3852 dmu_tx_hold_write(tx, bigobj, bigoff, bigsize);
3860 umem_free(bigbuf, bigsize);
3892 ASSERT((uintptr_t)bigH - (uintptr_t)bigbuf < bigsize);
3893 ASSERT((uintptr_t)bigT - (uintptr_t)bigbuf < bigsize);
3931 (u_longlong_t)bigsize,
3972 compare_and_update_pbbufs(uint64_t s, bufwad_t *packbuf, bufwad_t *bigbuf, uint64_t bigsize, uint64_t n, uint64_t chunksize, uint64_t txg) argument
4030 uint64_t packobj, packoff, packsize, bigobj, bigoff, bigsize; local
[all...]
/freebsd-11-stable/sbin/recoverdisk/
H A Drecoverdisk.c28 static size_t bigsize = 1024 * 1024; variable
138 (void)fprintf(stderr, "usage: recoverdisk [-b bigsize] [-r readlist] "
168 bigsize = strtoul(optarg, NULL, 0);
211 bigsize = rounddown(bigsize, sectorsize);
220 if (bigsize < minsize)
221 bigsize = minsize;
223 for (ch = 0; (bigsize >> ch) > minsize; ch++)
225 medsize = bigsize >> (ch / 2);
229 bigsize, medsiz
[all...]

Completed in 204 milliseconds