Home | History | Annotate | Download | only in include

Lines Matching refs:__len

90      unsigned long __len = (l);						\
91 if (__len == 0) \
92 __len = 1; \
93 __len = (__len + OBJALLOC_ALIGN - 1) &~ (OBJALLOC_ALIGN - 1); \
94 (__len != 0 && __len <= __o->current_space \
95 ? (__o->current_ptr += __len, \
96 __o->current_space -= __len, \
97 (void *) (__o->current_ptr - __len)) \
98 : _objalloc_alloc (__o, __len)); })