D | ralloc.h | 68 #define ralloc(ctx, type) ((type *) ralloc_size(ctx, sizeof(type))) argument 79 #define rzalloc(ctx, type) ((type *) rzalloc_size(ctx, sizeof(type))) argument 157 #define ralloc_array(ctx, type, count) \ argument 174 #define rzalloc_array(ctx, type, count) \ argument 194 #define reralloc(ctx, ptr, type, count) \ argument 216 #define rerzalloc(ctx, ptr, type, old_count, new_count) \ argument 493 #define gc_alloc(ctx, type, count) gc_alloc_size(ctx, sizeof(type) * (count), alignof(type)) argument 494 #define gc_zalloc(ctx, type, count) gc_zalloc_size(ctx, sizeof(type) * (count), alignof(type)) argument 496 #define gc_alloc_zla(ctx, type, type2, count) \ argument 498 #define gc_zalloc_zla(ctx, type, type2, count) \ argument [all …]
|