Home
last modified time | relevance | path

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

/xnu-12377.41.6/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…
166 fit = lmin(count, ab->allocated - (ab->fixedcursor - ab->base)); in attrlist_pack_fixed()
169 bcopy(source, ab->fixedcursor, fit); in attrlist_pack_fixed()
173 ab->fixedcursor += roundup(count, 4); in attrlist_pack_fixed()
197 ar.attr_dataoffset = (int32_t)(ab->varcursor - ab->fixedcursor); in attrlist_pack_variable2()
273 ar.attr_dataoffset = (int32_t)(ab->varcursor - ab->fixedcursor); in attrlist_pack_string()
328 if ((AB.allocated - (AB.fixedcursor - AB.base)) >= 4) { \
329 *(uint32_t *)AB.fixedcursor = V; \
330 AB.fixedcursor += 4; \
[all …]