Home
last modified time | relevance | path

Searched refs:nvb (Results 1 – 1 of 1) sorted by relevance

/f-stack/freebsd/contrib/openzfs/module/nvpair/
H A Dnvpair_alloc_fixed.c63 if (base == 0 || (uintptr_t)&nvb[1] > lim) in nv_fixed_init()
66 nvb->nvb_buf = (uintptr_t)&nvb[0]; in nv_fixed_init()
67 nvb->nvb_cur = (uintptr_t)&nvb[1]; in nv_fixed_init()
68 nvb->nvb_lim = lim; in nv_fixed_init()
69 nva->nva_arg = nvb; in nv_fixed_init()
77 nvbuf_t *nvb = nva->nva_arg; in nv_fixed_alloc() local
78 uintptr_t new = nvb->nvb_cur; in nv_fixed_alloc()
80 if (size == 0 || new + size > nvb->nvb_lim) in nv_fixed_alloc()
83 nvb->nvb_cur = P2ROUNDUP(new + size, sizeof (uintptr_t)); in nv_fixed_alloc()
98 nvbuf_t *nvb = nva->nva_arg; in nv_fixed_reset() local
[all …]