Lines Matching refs:REAL_SIZE
72 #define REAL_SIZE(s) (collect_memory_statistics? (s) + sizeof(size_t) : (s)) macro
97 ret = _emalloc(REAL_SIZE(size) ZEND_FILE_LINE_CC ZEND_FILE_LINE_ORIG_RELAY_CC); in _mysqlnd_emalloc()
137 …ret = (persistent) ? __zend_malloc(REAL_SIZE(size)) : _emalloc(REAL_SIZE(size) ZEND_FILE_LINE_CC Z… in _mysqlnd_pemalloc()
181 ret = _ecalloc(nmemb, REAL_SIZE(size) ZEND_FILE_LINE_CC ZEND_FILE_LINE_ORIG_RELAY_CC); in _mysqlnd_ecalloc()
220 …ret = (persistent) ? __zend_calloc(nmemb, REAL_SIZE(size)) : _ecalloc(nmemb, REAL_SIZE(size) ZEND_… in _mysqlnd_pecalloc()
265 …ret = _erealloc(REAL_PTR(ptr), REAL_SIZE(new_size) ZEND_FILE_LINE_CC ZEND_FILE_LINE_ORIG_RELAY_CC); in _mysqlnd_erealloc()
306 ret = perealloc(REAL_PTR(ptr), REAL_SIZE(new_size), persistent); in _mysqlnd_perealloc()
411 ret = malloc(REAL_SIZE(size)); in _mysqlnd_malloc()
450 ret = calloc(nmemb, REAL_SIZE(size)); in _mysqlnd_calloc()
491 ret = realloc(REAL_PTR(ptr), REAL_SIZE(new_size)); in _mysqlnd_realloc()
560 …ret = (persistent) ? __zend_malloc(REAL_SIZE(length + 1)) : _emalloc(REAL_SIZE(length + 1) ZEND_FI… in _mysqlnd_pestrndup()
600 …ret = (persistent) ? __zend_malloc(ZSTR_LEN(tmp_str.s) + sizeof(size_t)) : _emalloc(REAL_SIZE(ZSTR… in _mysqlnd_pestrdup()