Home
last modified time | relevance | path

Searched refs:nmemb (Results 1 – 10 of 10) sorted by relevance

/PHP-8.0/Zend/
H A Dzend_multiply.h159 size_t res = nmemb; in zend_safe_address()
187 size_t res = nmemb; in zend_safe_address()
229 : "r"(nmemb), in zend_safe_address()
251 : "r"(nmemb), in zend_safe_address()
275 : "r"(nmemb), in zend_safe_address()
291 uint64_t res = (uint64_t) nmemb * (uint64_t) size + (uint64_t) offset; in zend_safe_address()
305 size_t res = nmemb * size + offset; in zend_safe_address()
306 double _d = (double)nmemb * (double)size + (double)offset; in zend_safe_address()
318 static zend_always_inline size_t zend_safe_address_guarded(size_t nmemb, size_t size, size_t offset) in zend_safe_address_guarded() argument
321 size_t ret = zend_safe_address(nmemb, size, offset, &overflow); in zend_safe_address_guarded()
[all …]
H A Dzend_alloc.h81 ZEND_API void* ZEND_FASTCALL _safe_realloc(void *ptr, size_t nmemb, size_t size, size_t offset);
160 #define safe_emalloc(nmemb, size, offset) _safe_emalloc((nmemb), (size), (offset) ZEND_FILE_LINE_CC… argument
164 #define ecalloc(nmemb, size) _ecalloc((nmemb), (size) ZEND_FILE_LINE_CC ZEND_FILE_LINE_EMPTY_CC) argument
167 #define safe_erealloc(ptr, nmemb, size, offset) _safe_erealloc((ptr), (nmemb), (size), (offset) ZEN… argument
176 #define safe_emalloc_rel(nmemb, size, offset) _safe_emalloc((nmemb), (size), (offset) ZEND_FILE_LIN… argument
178 #define ecalloc_rel(nmemb, size) _ecalloc((nmemb), (size) ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE… argument
183 #define safe_erealloc_rel(ptr, nmemb, size, offset) _safe_erealloc((ptr), (nmemb), (size), (offset)… argument
194 #define safe_pemalloc(nmemb, size, offset, persistent) ((persistent)?_safe_malloc(nmemb, size, offs… argument
204 #define pecalloc(nmemb, size, persistent) ((persistent)?__zend_calloc((nmemb), (size)):ecalloc((nme… argument
207 …perealloc(ptr, nmemb, size, offset, persistent) ((persistent)?_safe_realloc((ptr), (nmemb), (size)… argument
[all …]
H A Dzend_sort.c84 ZEND_API void zend_insert_sort(void *base, size_t nmemb, size_t siz, compare_func_t cmp, swap_func_… in zend_insert_sort() argument
85 switch (nmemb) { in zend_insert_sort()
111 char *end = start + (nmemb * siz); in zend_insert_sort()
248 ZEND_API void zend_sort(void *base, size_t nmemb, size_t siz, compare_func_t cmp, swap_func_t swp) in zend_sort() argument
251 if (nmemb <= 16) { in zend_sort()
252 zend_insert_sort(base, nmemb, siz, cmp, swp); in zend_sort()
257 char *end = start + (nmemb * siz); in zend_sort()
258 size_t offset = (nmemb >> Z_L(1)); in zend_sort()
261 if ((nmemb >> Z_L(10))) { in zend_sort()
299 nmemb = (end - i)/siz; in zend_sort()
[all …]
H A Dzend_sort.h24 ZEND_API void zend_sort(void *base, size_t nmemb, size_t siz, compare_func_t cmp, swap_func_t swp);
25 ZEND_API void zend_insert_sort(void *base, size_t nmemb, size_t siz, compare_func_t cmp, swap_func_…
H A Dzend_alloc.c2584 ZEND_API void* ZEND_FASTCALL _safe_emalloc(size_t nmemb, size_t size, size_t offset ZEND_FILE_LINE_… argument
2586 …return _emalloc(zend_safe_address_guarded(nmemb, size, offset) ZEND_FILE_LINE_RELAY_CC ZEND_FILE_L…
2589 ZEND_API void* ZEND_FASTCALL _safe_malloc(size_t nmemb, size_t size, size_t offset) argument
2591 return pemalloc(zend_safe_address_guarded(nmemb, size, offset), 1);
2596 …return _erealloc(ptr, zend_safe_address_guarded(nmemb, size, offset) ZEND_FILE_LINE_RELAY_CC ZEND_…
2599 ZEND_API void* ZEND_FASTCALL _safe_realloc(void *ptr, size_t nmemb, size_t size, size_t offset) argument
2601 return perealloc(ptr, zend_safe_address_guarded(nmemb, size, offset), 1);
2604 ZEND_API void* ZEND_FASTCALL _ecalloc(size_t nmemb, size_t size ZEND_FILE_LINE_DC ZEND_FILE_LINE_OR… argument
2608 size = zend_safe_address_guarded(nmemb, size, 0);
3063 ZEND_API void * __zend_calloc(size_t nmemb, size_t len) argument
[all …]
/PHP-8.0/ext/mysqlnd/
H A Dmysqlnd_alloc.h30 void * (*m_ecalloc)(unsigned int nmemb, size_t size MYSQLND_MEM_D);
31 void * (*m_pecalloc)(unsigned int nmemb, size_t size, zend_bool persistent MYSQLND_MEM_D);
37 void * (*m_calloc)(unsigned int nmemb, size_t size MYSQLND_MEM_D);
52 #define mnd_ecalloc(nmemb, size) mysqlnd_allocator.m_ecalloc((nmemb), (size) MYSQLND_MEM_C) argument
53 #define mnd_pecalloc(nmemb, size, p) mysqlnd_allocator.m_pecalloc((nmemb), (size), (p) MYSQLND_MEM_… argument
59 #define mnd_calloc(nmemb, size) mysqlnd_allocator.m_calloc((nmemb), (size) MYSQLND_MEM_C) argument
H A Dmysqlnd_alloc.c152 static void * _mysqlnd_ecalloc(unsigned int nmemb, size_t size MYSQLND_MEM_D) in _mysqlnd_ecalloc() argument
169 ret = ecalloc_rel(nmemb, REAL_SIZE(size)); in _mysqlnd_ecalloc()
175 ret = ecalloc_rel(nmemb, REAL_SIZE(size)); in _mysqlnd_ecalloc()
205 ret = pecalloc_rel(nmemb, REAL_SIZE(size), persistent); in _mysqlnd_pecalloc()
210 ret = pecalloc_rel(nmemb, REAL_SIZE(size), persistent); in _mysqlnd_pecalloc()
405 static void * _mysqlnd_calloc(unsigned int nmemb, size_t size MYSQLND_MEM_D) in _mysqlnd_calloc() argument
421 ret = calloc(nmemb, REAL_SIZE(size)); in _mysqlnd_calloc()
426 ret = calloc(nmemb, REAL_SIZE(size)); in _mysqlnd_calloc()
669 return ecalloc_rel(nmemb, size); in mysqlnd_zend_mm_ecalloc()
677 return pecalloc_rel(nmemb, size, persistent); in mysqlnd_zend_mm_pecalloc()
[all …]
/PHP-8.0/ext/gd/libgd/
H A Dgdhelpers.h15 #define gdCalloc(nmemb, size) ecalloc(nmemb, size) argument
/PHP-8.0/ext/curl/
H A Dinterface.c1344 return size * nmemb; in curl_write_nothing()
1349 static size_t curl_write(char *data, size_t size, size_t nmemb, void *ctx) in curl_write() argument
1353 size_t length = size * nmemb; in curl_write()
1365 return fwrite(data, size, nmemb, t->fp); in curl_write()
1509 static size_t curl_read(char *data, size_t size, size_t nmemb, void *ctx) in curl_read() argument
1518 length = fread(data, size, nmemb, t->fp); in curl_read()
1535 ZVAL_LONG(&argv[2], (int)size * nmemb); in curl_read()
1554 length = MIN((int) (size * nmemb), Z_STRLEN(retval)); in curl_read()
1571 static size_t curl_write_header(char *data, size_t size, size_t nmemb, void *ctx) in curl_write_header() argument
1575 size_t length = size * nmemb; in curl_write_header()
[all …]
/PHP-8.0/ext/sockets/
H A Dconversions.c117 static inline void *accounted_ecalloc(size_t nmemb, size_t alloc_size, ser_context *ctx) in accounted_ecalloc() argument
119 void *ret = ecalloc(nmemb, alloc_size); in accounted_ecalloc()
123 static inline void *accounted_safe_ecalloc(size_t nmemb, size_t alloc_size, size_t offset, ser_cont… in accounted_safe_ecalloc() argument
125 void *ret = safe_emalloc(nmemb, alloc_size, offset); in accounted_safe_ecalloc()
126 memset(ret, '\0', nmemb * alloc_size + offset); in accounted_safe_ecalloc()

Completed in 47 milliseconds