Lines Matching refs:packsize

5063 	uint64_t packobj, packoff, packsize, bigobj, bigoff, bigsize;  in ztest_dmu_read_write()  local
5136 packsize = s * sizeof (bufwad_t); in ztest_dmu_read_write()
5141 packbuf = umem_alloc(packsize, UMEM_NOFAIL); in ztest_dmu_read_write()
5153 error = dmu_read(os, packobj, packoff, packsize, packbuf, in ztest_dmu_read_write()
5165 dmu_tx_hold_write(tx, packobj, packoff, packsize); in ztest_dmu_read_write()
5177 umem_free(packbuf, packsize); in ztest_dmu_read_write()
5247 dmu_write(os, packobj, packoff, packsize, packbuf, tx); in ztest_dmu_read_write()
5271 void *packcheck = umem_alloc(packsize, UMEM_NOFAIL); in ztest_dmu_read_write()
5275 packsize, packcheck, dmu_read_flags)); in ztest_dmu_read_write()
5279 ASSERT0(memcmp(packbuf, packcheck, packsize)); in ztest_dmu_read_write()
5282 umem_free(packcheck, packsize); in ztest_dmu_read_write()
5286 umem_free(packbuf, packsize); in ztest_dmu_read_write()
5358 uint64_t packobj, packoff, packsize, bigobj, bigoff, bigsize; in ztest_dmu_read_write_zcopy() local
5425 packsize = s * sizeof (bufwad_t); in ztest_dmu_read_write_zcopy()
5430 packbuf = umem_zalloc(packsize, UMEM_NOFAIL); in ztest_dmu_read_write_zcopy()
5473 dmu_tx_hold_write(tx, packobj, packoff, packsize); in ztest_dmu_read_write_zcopy()
5478 umem_free(packbuf, packsize); in ztest_dmu_read_write_zcopy()
5504 packsize, packbuf, dmu_read_flags); in ztest_dmu_read_write_zcopy()
5517 dmu_write(os, packobj, packoff, packsize, packbuf, tx); in ztest_dmu_read_write_zcopy()
5563 void *packcheck = umem_alloc(packsize, UMEM_NOFAIL); in ztest_dmu_read_write_zcopy()
5567 packsize, packcheck, dmu_read_flags)); in ztest_dmu_read_write_zcopy()
5571 ASSERT0(memcmp(packbuf, packcheck, packsize)); in ztest_dmu_read_write_zcopy()
5574 umem_free(packcheck, packsize); in ztest_dmu_read_write_zcopy()
5585 umem_free(packbuf, packsize); in ztest_dmu_read_write_zcopy()