Lines Matching refs:REAL_SIZE
74 #define REAL_SIZE(s) (collect_memory_statistics? (s) + sizeof(size_t) : (s)) macro
95 ret = emalloc_rel(REAL_SIZE(size)); in _mysqlnd_emalloc()
100 ret = emalloc_rel(REAL_SIZE(size)); in _mysqlnd_emalloc()
131 ret = pemalloc_rel(REAL_SIZE(size), persistent); in _mysqlnd_pemalloc()
136 ret = pemalloc_rel(REAL_SIZE(size), persistent); in _mysqlnd_pemalloc()
171 ret = ecalloc_rel(nmemb, REAL_SIZE(size)); in _mysqlnd_ecalloc()
177 ret = ecalloc_rel(nmemb, REAL_SIZE(size)); in _mysqlnd_ecalloc()
207 ret = pecalloc_rel(nmemb, REAL_SIZE(size), persistent); in _mysqlnd_pecalloc()
212 ret = pecalloc_rel(nmemb, REAL_SIZE(size), persistent); in _mysqlnd_pecalloc()
248 ret = erealloc_rel(REAL_PTR(ptr), REAL_SIZE(new_size)); in _mysqlnd_erealloc()
254 ret = erealloc_rel(REAL_PTR(ptr), REAL_SIZE(new_size)); in _mysqlnd_erealloc()
286 ret = perealloc_rel(REAL_PTR(ptr), REAL_SIZE(new_size), persistent); in _mysqlnd_perealloc()
292 ret = perealloc_rel(REAL_PTR(ptr), REAL_SIZE(new_size), persistent); in _mysqlnd_perealloc()
388 ret = malloc(REAL_SIZE(size)); in _mysqlnd_malloc()
393 ret = malloc(REAL_SIZE(size)); in _mysqlnd_malloc()
423 ret = calloc(nmemb, REAL_SIZE(size)); in _mysqlnd_calloc()
428 ret = calloc(nmemb, REAL_SIZE(size)); in _mysqlnd_calloc()
460 ret = realloc(REAL_PTR(ptr), REAL_SIZE(new_size)); in _mysqlnd_realloc()
467 ret = realloc(REAL_PTR(ptr), REAL_SIZE(new_size)); in _mysqlnd_realloc()
527 ret = pemalloc_rel(REAL_SIZE(length + 1), persistent); in _mysqlnd_pememdup()
558 ret = pemalloc_rel(REAL_SIZE(length + 1), persistent); in _mysqlnd_pestrndup()