Lines Matching refs:nmemb
160 void * _mysqlnd_ecalloc(unsigned int nmemb, size_t size MYSQLND_MEM_D) in _mysqlnd_ecalloc() argument
181 ret = _ecalloc(nmemb, REAL_SIZE(size) ZEND_FILE_LINE_CC ZEND_FILE_LINE_ORIG_RELAY_CC); in _mysqlnd_ecalloc()
201 void * _mysqlnd_pecalloc(unsigned int nmemb, size_t size, zend_bool persistent MYSQLND_MEM_D) in _mysqlnd_pecalloc() argument
220 …ret = (persistent) ? __zend_calloc(nmemb, REAL_SIZE(size)) : _ecalloc(nmemb, REAL_SIZE(size) ZEND_… in _mysqlnd_pecalloc()
430 void * _mysqlnd_calloc(unsigned int nmemb, size_t size MYSQLND_MEM_D) in _mysqlnd_calloc() argument
450 ret = calloc(nmemb, REAL_SIZE(size)); in _mysqlnd_calloc()
663 static void * mysqlnd_zend_mm_ecalloc(unsigned int nmemb, size_t size MYSQLND_MEM_D) in mysqlnd_zend_mm_ecalloc() argument
665 return ecalloc(nmemb, size); in mysqlnd_zend_mm_ecalloc()
671 static void * mysqlnd_zend_mm_pecalloc(unsigned int nmemb, size_t size, zend_bool persistent MYSQLN… in mysqlnd_zend_mm_pecalloc() argument
673 return pecalloc(nmemb, size, persistent); in mysqlnd_zend_mm_pecalloc()
719 static void * mysqlnd_zend_mm_calloc(unsigned int nmemb, size_t size MYSQLND_MEM_D) in mysqlnd_zend_mm_calloc() argument
721 return calloc(nmemb, size); in mysqlnd_zend_mm_calloc()