Home
last modified time | relevance | path

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

/xnu-8792.41.9/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…
120 fit = lmin(count, ab->allocated - (ab->fixedcursor - ab->base)); in attrlist_pack_fixed()
123 bcopy(source, ab->fixedcursor, fit); in attrlist_pack_fixed()
127 ab->fixedcursor += roundup(count, 4); in attrlist_pack_fixed()
151 ar.attr_dataoffset = (int32_t)(ab->varcursor - ab->fixedcursor); in attrlist_pack_variable2()
227 ar.attr_dataoffset = (int32_t)(ab->varcursor - ab->fixedcursor); in attrlist_pack_string()
282 if ((AB.allocated - (AB.fixedcursor - AB.base)) >= 4) { \
283 *(uint32_t *)AB.fixedcursor = V; \
284 AB.fixedcursor += 4; \
[all …]