Home
last modified time | relevance | path

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

/PHP-7.4/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.h24 ZEND_API void zend_qsort(void *base, size_t nmemb, size_t siz, compare_func_t cmp, swap_func_t swp);
25 ZEND_API void zend_sort(void *base, size_t nmemb, size_t siz, compare_func_t cmp, swap_func_t swp);
26 ZEND_API void zend_insert_sort(void *base, size_t nmemb, size_t siz, compare_func_t cmp, swap_func_…
H A Dzend_sort.c39 end_stack[0] = (char *) base + ((nmemb - 1) * siz); in zend_qsort()
152 switch (nmemb) { in zend_insert_sort()
178 char *end = start + (nmemb * siz); in zend_insert_sort()
315 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
318 if (nmemb <= 16) { in zend_sort()
319 zend_insert_sort(base, nmemb, siz, cmp, swp); in zend_sort()
324 char *end = start + (nmemb * siz); in zend_sort()
325 size_t offset = (nmemb >> Z_L(1)); in zend_sort()
328 if ((nmemb >> Z_L(10))) { in zend_sort()
366 nmemb = (end - i)/siz; in zend_sort()
[all …]
H A Dzend_alloc.c2583 ZEND_API void* ZEND_FASTCALL _safe_emalloc(size_t nmemb, size_t size, size_t offset ZEND_FILE_LINE_… argument
2585 …return _emalloc(zend_safe_address_guarded(nmemb, size, offset) ZEND_FILE_LINE_RELAY_CC ZEND_FILE_L…
2588 ZEND_API void* ZEND_FASTCALL _safe_malloc(size_t nmemb, size_t size, size_t offset) argument
2590 return pemalloc(zend_safe_address_guarded(nmemb, size, offset), 1);
2595 …return _erealloc(ptr, zend_safe_address_guarded(nmemb, size, offset) ZEND_FILE_LINE_RELAY_CC ZEND_…
2598 ZEND_API void* ZEND_FASTCALL _safe_realloc(void *ptr, size_t nmemb, size_t size, size_t offset) argument
2600 return perealloc(ptr, zend_safe_address_guarded(nmemb, size, offset), 1);
2603 ZEND_API void* ZEND_FASTCALL _ecalloc(size_t nmemb, size_t size ZEND_FILE_LINE_DC ZEND_FILE_LINE_OR… argument
2607 size = zend_safe_address_guarded(nmemb, size, 0);
2989 ZEND_API void * __zend_calloc(size_t nmemb, size_t len) argument
[all …]
/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd_alloc.h32 void * (*m_ecalloc)(unsigned int nmemb, size_t size MYSQLND_MEM_D);
33 void * (*m_pecalloc)(unsigned int nmemb, size_t size, zend_bool persistent MYSQLND_MEM_D);
39 void * (*m_calloc)(unsigned int nmemb, size_t size MYSQLND_MEM_D);
54 #define mnd_ecalloc(nmemb, size) mysqlnd_allocator.m_ecalloc((nmemb), (size) MYSQLND_MEM_C) argument
55 #define mnd_pecalloc(nmemb, size, p) mysqlnd_allocator.m_pecalloc((nmemb), (size), (p) MYSQLND_MEM_… argument
61 #define mnd_calloc(nmemb, size) mysqlnd_allocator.m_calloc((nmemb), (size) MYSQLND_MEM_C) argument
H A Dmysqlnd_alloc.c154 static void * _mysqlnd_ecalloc(unsigned int nmemb, size_t size MYSQLND_MEM_D) in _mysqlnd_ecalloc() argument
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()
407 static void * _mysqlnd_calloc(unsigned int nmemb, size_t size MYSQLND_MEM_D) in _mysqlnd_calloc() argument
423 ret = calloc(nmemb, REAL_SIZE(size)); in _mysqlnd_calloc()
428 ret = calloc(nmemb, REAL_SIZE(size)); in _mysqlnd_calloc()
671 return ecalloc_rel(nmemb, size); in mysqlnd_zend_mm_ecalloc()
679 return pecalloc_rel(nmemb, size, persistent); in mysqlnd_zend_mm_pecalloc()
[all …]
/PHP-7.4/ext/gd/libgd/
H A Dgdhelpers.h15 #define gdCalloc(nmemb, size) ecalloc(nmemb, size) argument
/PHP-7.4/main/
H A Dmergesort.c103 PHPAPI int php_mergesort(void *base, size_t nmemb, size_t size, int (*cmp)(const void *, const void… in php_mergesort() argument
116 if (nmemb == 0) in php_mergesort()
127 if ((list2 = malloc(nmemb * size + PSIZE)) == NULL) in php_mergesort()
131 setup(list1, list2, nmemb, size, cmp); in php_mergesort()
132 last = list2 + nmemb * size; in php_mergesort()
227 last = list2 + nmemb*size; in php_mergesort()
230 memmove(list2, list1, nmemb*size); in php_mergesort()
H A Dphp.h367 PHPAPI int php_mergesort(void *base, size_t nmemb, size_t size, int (*cmp)(const void *, const void…
/PHP-7.4/ext/curl/
H A Dinterface.c1465 return size * nmemb; in curl_write_nothing()
1471 static size_t curl_write(char *data, size_t size, size_t nmemb, void *ctx) in curl_write() argument
1475 size_t length = size * nmemb; in curl_write()
1487 return fwrite(data, size, nmemb, t->fp); in curl_write()
1636 static size_t curl_read(char *data, size_t size, size_t nmemb, void *ctx) in curl_read() argument
1645 length = fread(data, size, nmemb, t->fp); in curl_read()
1662 ZVAL_LONG(&argv[2], (int)size * nmemb); in curl_read()
1681 length = MIN((int) (size * nmemb), Z_STRLEN(retval)); in curl_read()
1699 static size_t curl_write_header(char *data, size_t size, size_t nmemb, void *ctx) in curl_write_header() argument
1703 size_t length = size * nmemb; in curl_write_header()
[all …]
/PHP-7.4/ext/sockets/
H A Dconversions.c124 static inline void *accounted_ecalloc(size_t nmemb, size_t alloc_size, ser_context *ctx) in accounted_ecalloc() argument
126 void *ret = ecalloc(nmemb, alloc_size); in accounted_ecalloc()
130 static inline void *accounted_safe_ecalloc(size_t nmemb, size_t alloc_size, size_t offset, ser_cont… in accounted_safe_ecalloc() argument
132 void *ret = safe_emalloc(nmemb, alloc_size, offset); in accounted_safe_ecalloc()
133 memset(ret, '\0', nmemb * alloc_size + offset); in accounted_safe_ecalloc()

Completed in 45 milliseconds