Searched refs:bigsize (Results 1 – 3 of 3) sorted by relevance
| /freebsd-14-stable/sbin/recoverdisk/ |
| HD | recoverdisk.c | 56 static size_t bigsize = 1024 * 1024; variable 439 bigsize = strtoul(optarg, NULL, 0); in main() 489 bigsize = rounddown(bigsize, sectorsize); in main() 498 if (bigsize < minsize) in main() 499 bigsize = minsize; in main() 501 for (ch = 0; (bigsize >> ch) > minsize; ch++) in main() 503 medsize = bigsize >> (ch / 2); in main() 507 bigsize, medsize, minsize); in main() 509 buf = malloc(bigsize); in main() 511 err(1, "Cannot allocate %zu bytes buffer", bigsize); in main() [all …]
|
| /freebsd-14-stable/sys/contrib/openzfs/cmd/ |
| HD | ztest.c | 4699 uint64_t packobj, packoff, packsize, bigobj, bigoff, bigsize; in ztest_dmu_read_write() local 4768 bigsize = s * chunksize; in ztest_dmu_read_write() 4771 bigbuf = umem_alloc(bigsize, UMEM_NOFAIL); in ztest_dmu_read_write() 4785 error = dmu_read(os, bigobj, bigoff, bigsize, bigbuf, in ztest_dmu_read_write() 4797 dmu_tx_hold_free(tx, bigobj, bigoff, bigsize); in ztest_dmu_read_write() 4799 dmu_tx_hold_write(tx, bigobj, bigoff, bigsize); in ztest_dmu_read_write() 4807 umem_free(bigbuf, bigsize); in ztest_dmu_read_write() 4840 ASSERT3U((uintptr_t)bigH - (uintptr_t)bigbuf, <, bigsize); in ztest_dmu_read_write() 4841 ASSERT3U((uintptr_t)bigT - (uintptr_t)bigbuf, <, bigsize); in ztest_dmu_read_write() 4882 bigoff, bigsize, txg); in ztest_dmu_read_write() [all …]
|
| /freebsd-14-stable/sys/vm/ |
| HD | vm_pageout.c | 1918 vm_offset_t size, bigsize; in vm_pageout_oom() local 1954 bigsize = 0; in vm_pageout_oom() 2019 if (size > bigsize) { in vm_pageout_oom() 2023 bigsize = size; in vm_pageout_oom()
|