Lines Matching defs:rounded
1953 size_t rounded = (size_t)zio_roundup_alloc_size(spa,
1955 if (rounded >= lsize) {
1960 abd_zero_off(cabd, psize, rounded - psize);
1961 psize = rounded;
1997 size_t rounded = MIN((size_t)zio_roundup_alloc_size(spa, psize),
2000 if (rounded != psize) {
2001 abd_t *cdata = abd_alloc_linear(rounded, B_TRUE);
2002 abd_zero_off(cdata, psize, rounded - psize);
2004 psize = rounded;
2006 psize, rounded, NULL);