Home
last modified time | relevance | path

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

/xnu-11417.101.15/bsd/vfs/
H A Dvfs_attrlist.c83 char *fixedcursor; member
91 #define _ATTRLIST_BUF_INIT(a) do {(a)->base = (a)->fixedcursor = (a)->varcursor = NULL; (a)->alloc…
160 fit = lmin(count, ab->allocated - (ab->fixedcursor - ab->base)); in attrlist_pack_fixed()
163 bcopy(source, ab->fixedcursor, fit); in attrlist_pack_fixed()
167 ab->fixedcursor += roundup(count, 4); in attrlist_pack_fixed()
191 ar.attr_dataoffset = (int32_t)(ab->varcursor - ab->fixedcursor); in attrlist_pack_variable2()
267 ar.attr_dataoffset = (int32_t)(ab->varcursor - ab->fixedcursor); in attrlist_pack_string()
322 if ((AB.allocated - (AB.fixedcursor - AB.base)) >= 4) { \
323 *(uint32_t *)AB.fixedcursor = V; \
324 AB.fixedcursor += 4; \
[all …]