Searched refs:alloc_size (Results 1 – 2 of 2) sorted by relevance
30 extern void* malloc(size_t byte_count) __mallocfunc __wur __attribute__((alloc_size(1)));31 …d* calloc(size_t item_count, size_t item_size) __mallocfunc __wur __attribute__((alloc_size(1,2)));32 extern void* realloc(void* p, size_t byte_count) __wur __attribute__((alloc_size(2)));35 …d* memalign(size_t alignment, size_t byte_count) __mallocfunc __wur __attribute__((alloc_size(2)));
53 size_t alloc_size; member