Lines Matching refs:psize
128 if (b.psize &&
129 (b.psize < MINPSIZE || b.psize > MAX_PAGE_OFFSET + 1 ||
130 b.psize & (sizeof(indx_t) - 1)))
156 b.psize = 0;
236 M_32_SWAP(m.psize);
243 if (m.psize < MINPSIZE || m.psize > MAX_PAGE_OFFSET + 1 ||
244 m.psize & (sizeof(indx_t) - 1))
248 b.psize = m.psize;
257 if (b.psize == 0) {
258 b.psize = sb.st_blksize;
259 if (b.psize < MINPSIZE)
260 b.psize = MINPSIZE;
261 if (b.psize > MAX_PAGE_OFFSET + 1)
262 b.psize = MAX_PAGE_OFFSET + 1;
274 t->bt_psize = b.psize;
277 if (b.cachesize && b.cachesize & (b.psize - 1))
278 b.cachesize += (~b.cachesize & (b.psize - 1)) + 1;
279 if (b.cachesize < b.psize * MINCACHE)
280 b.cachesize = b.psize * MINCACHE;