Home
last modified time | relevance | path

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

/PHP-7.1/Zend/
H A Dzend_multiply.h124 size_t res = nmemb; in zend_safe_address()
145 size_t res = nmemb; in zend_safe_address()
180 : "r"(nmemb), in zend_safe_address()
202 : "r"(nmemb), in zend_safe_address()
226 : "r"(nmemb), in zend_safe_address()
242 uint64_t res = (uint64_t) nmemb * (uint64_t) size + (uint64_t) offset; in zend_safe_address()
256 size_t res = nmemb * size + offset; in zend_safe_address()
257 double _d = (double)nmemb * (double)size + (double)offset; in zend_safe_address()
269 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
272 size_t ret = zend_safe_address(nmemb, size, offset, &overflow); in zend_safe_address_guarded()
[all …]
H A Dzend_alloc.h83 ZEND_API void* ZEND_FASTCALL _safe_realloc(void *ptr, size_t nmemb, size_t size, size_t offset);
162 #define safe_emalloc(nmemb, size, offset) _safe_emalloc((nmemb), (size), (offset) ZEND_FILE_LINE_CC… argument
166 #define ecalloc(nmemb, size) _ecalloc((nmemb), (size) ZEND_FILE_LINE_CC ZEND_FILE_LINE_EMPTY_CC) argument
169 #define safe_erealloc(ptr, nmemb, size, offset) _safe_erealloc((ptr), (nmemb), (size), (offset) ZEN… argument
178 #define safe_emalloc_rel(nmemb, size, offset) _safe_emalloc((nmemb), (size), (offset) ZEND_FILE_LIN… argument
180 #define ecalloc_rel(nmemb, size) _ecalloc((nmemb), (size) ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE… argument
185 #define safe_erealloc_rel(ptr, nmemb, size, offset) _safe_erealloc((ptr), (nmemb), (size), (offset)… argument
196 #define safe_pemalloc(nmemb, size, offset, persistent) ((persistent)?_safe_malloc(nmemb, size, offs… argument
206 #define pecalloc(nmemb, size, persistent) ((persistent)?__zend_calloc((nmemb), (size)):ecalloc((nme… argument
209 …perealloc(ptr, nmemb, size, offset, persistent) ((persistent)?_safe_realloc((ptr), (nmemb), (size)… argument
[all …]
H A Dzend_sort.h26 ZEND_API void zend_qsort(void *base, size_t nmemb, size_t siz, compare_func_t cmp, swap_func_t swp);
27 ZEND_API void zend_sort(void *base, size_t nmemb, size_t siz, compare_func_t cmp, swap_func_t swp);
28 ZEND_API void zend_insert_sort(void *base, size_t nmemb, size_t siz, compare_func_t cmp, swap_func_…
H A Dzend_sort.c41 end_stack[0] = (char *) base + ((nmemb - 1) * siz); in zend_qsort()
154 switch (nmemb) { in zend_insert_sort()
180 char *end = start + (nmemb * siz); in zend_insert_sort()
317 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
320 if (nmemb <= 16) { in zend_sort()
321 zend_insert_sort(base, nmemb, siz, cmp, swp); in zend_sort()
326 char *end = start + (nmemb * siz); in zend_sort()
327 size_t offset = (nmemb >> Z_L(1)); in zend_sort()
330 if ((nmemb >> Z_L(10))) { in zend_sort()
368 nmemb = (end - i)/siz; in zend_sort()
[all …]
H A Dzend_alloc.c2488 return emalloc_rel(zend_safe_address_guarded(nmemb, size, offset));
2491 ZEND_API void* ZEND_FASTCALL _safe_malloc(size_t nmemb, size_t size, size_t offset) argument
2493 return pemalloc(zend_safe_address_guarded(nmemb, size, offset), 1);
2498 return erealloc_rel(ptr, zend_safe_address_guarded(nmemb, size, offset));
2501 ZEND_API void* ZEND_FASTCALL _safe_realloc(void *ptr, size_t nmemb, size_t size, size_t offset) argument
2503 return perealloc(ptr, zend_safe_address_guarded(nmemb, size, offset), 1);
2511 p = _safe_emalloc(nmemb, size, 0 ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE_ORIG_RELAY_CC);
2515 memset(p, 0, size * nmemb);
2845 ZEND_API void * __zend_calloc(size_t nmemb, size_t len) argument
2847 void *tmp = _safe_malloc(nmemb, len, 0);
[all …]
/PHP-7.1/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.c162 static void * _mysqlnd_ecalloc(unsigned int nmemb, size_t size MYSQLND_MEM_D) in _mysqlnd_ecalloc() argument
183 ret = ecalloc_rel(nmemb, REAL_SIZE(size)); in _mysqlnd_ecalloc()
203 static void * _mysqlnd_pecalloc(unsigned int nmemb, size_t size, zend_bool persistent MYSQLND_MEM_D) in _mysqlnd_pecalloc() argument
222 ret = pecalloc_rel(nmemb, REAL_SIZE(size), persistent); in _mysqlnd_pecalloc()
432 static void * _mysqlnd_calloc(unsigned int nmemb, size_t size MYSQLND_MEM_D) in _mysqlnd_calloc() argument
452 ret = calloc(nmemb, REAL_SIZE(size)); in _mysqlnd_calloc()
700 static void * mysqlnd_zend_mm_ecalloc(unsigned int nmemb, size_t size MYSQLND_MEM_D) in mysqlnd_zend_mm_ecalloc() argument
702 return ecalloc_rel(nmemb, size); in mysqlnd_zend_mm_ecalloc()
710 return pecalloc_rel(nmemb, size, persistent); in mysqlnd_zend_mm_pecalloc()
756 static void * mysqlnd_zend_mm_calloc(unsigned int nmemb, size_t size MYSQLND_MEM_D) in mysqlnd_zend_mm_calloc() argument
[all …]
/PHP-7.1/ext/gd/libgd/
H A Dgdhelpers.h15 #define gdCalloc(nmemb, size) ecalloc(nmemb, size) argument
/PHP-7.1/main/
H A Dmergesort.c105 PHPAPI int php_mergesort(void *base, size_t nmemb, size_t size, int (*cmp)(const void *, const void… in php_mergesort() argument
118 if (nmemb == 0) in php_mergesort()
129 if ((list2 = malloc(nmemb * size + PSIZE)) == NULL) in php_mergesort()
133 setup(list1, list2, nmemb, size, cmp); in php_mergesort()
134 last = list2 + nmemb * size; in php_mergesort()
229 last = list2 + nmemb*size; in php_mergesort()
232 memmove(list2, list1, nmemb*size); in php_mergesort()
H A Dphp.h344 PHPAPI int php_mergesort(void *base, size_t nmemb, size_t size, int (*cmp)(const void *, const void…
/PHP-7.1/ext/curl/
H A Dinterface.c1445 return size * nmemb; in curl_write_nothing()
1451 static size_t curl_write(char *data, size_t size, size_t nmemb, void *ctx) in curl_write() argument
1455 size_t length = size * nmemb; in curl_write()
1467 return fwrite(data, size, nmemb, t->fp); in curl_write()
1620 static size_t curl_read(char *data, size_t size, size_t nmemb, void *ctx) in curl_read() argument
1629 length = fread(data, size, nmemb, t->fp); in curl_read()
1646 ZVAL_LONG(&argv[2], (int)size * nmemb); in curl_read()
1667 length = MIN((int) (size * nmemb), Z_STRLEN(retval)); in curl_read()
1686 static size_t curl_write_header(char *data, size_t size, size_t nmemb, void *ctx) in curl_write_header() argument
1690 size_t length = size * nmemb; in curl_write_header()
[all …]
/PHP-7.1/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 59 milliseconds