Searched refs:check_non_null (Results 1 – 1 of 1) sorted by relevance
/external/llvm-project/polly/lib/External/isl/ |
D | isl_ctx.c | 57 static void *check_non_null(isl_ctx *ctx, void *p, size_t size) in check_non_null() function 93 return ctx ? check_non_null(ctx, malloc(size), size) : NULL; in isl_malloc_or_die() 103 return ctx ? check_non_null(ctx, calloc(nmemb, size), nmemb) : NULL; in isl_calloc_or_die() 113 return ctx ? check_non_null(ctx, realloc(ptr, size), size) : NULL; in isl_realloc_or_die()
|