Lines Matching refs:type
272 #define alloc_buffer_alloc(buf, type) \ argument
273 ((type *) __alloc_buffer_alloc \
274 (buf, __alloc_buffer_assert_size (sizeof (type)), \
275 __alloc_buffer_assert_align (__alignof__ (type))))
327 #define alloc_buffer_next(buf, type) \ argument
328 ((type *) __alloc_buffer_next \
329 (buf, __alloc_buffer_assert_align (__alignof__ (type))))
342 #define alloc_buffer_alloc_array(buf, type, count) \ argument
343 ((type *) __libc_alloc_buffer_alloc_array \
344 (buf, __alloc_buffer_assert_size (sizeof (type)), \
345 __alloc_buffer_assert_align (__alignof__ (type)), \