Home
last modified time | relevance | path

Searched defs:size (Results 1 – 25 of 204) sorted by relevance

123456789

/PHP-7.3/Zend/
H A Dzend_alloc.h43 #define ZEND_MM_ALIGNED_SIZE_EX(size, alignment) \ argument
48 size_t size; member
57 size_t size; member
104 # define ZEND_ALLOCATOR(size) \ argument
109 # define _emalloc(size) \ argument
127 # define ZEND_DEALLOCATOR(ptr, size) \ argument
132 # define efree_size(ptr, size) do { \ argument
139 # define efree_size_rel(ptr, size) \ argument
144 # define efree_size(ptr, size) \ argument
146 # define efree_size_rel(ptr, size) \ argument
[all …]
H A Dzend_range_check.h54 #define ZEND_SIZE_T_INT_OVFL(size) UNEXPECTED((size) > (size_t)INT_MAX) argument
56 # define ZEND_SIZE_T_UINT_OVFL(size) UNEXPECTED((size) > (size_t)UINT_MAX) argument
58 # define ZEND_SIZE_T_UINT_OVFL(size) (0) argument
62 #define ZEND_SIZE_T_GT_ZEND_LONG(size, zlong) ((zlong) < 0 || (size) > (size_t)(zlong)) argument
63 #define ZEND_SIZE_T_GTE_ZEND_LONG(size, zlong) ((zlong) < 0 || (size) >= (size_t)(zlong)) argument
64 #define ZEND_SIZE_T_LT_ZEND_LONG(size, zlong) ((zlong) >= 0 && (size) < (size_t)(zlong)) argument
65 #define ZEND_SIZE_T_LTE_ZEND_LONG(size, zlong) ((zlong) >= 0 && (size) <= (size_t)(zlong)) argument
H A Dzend_alloc.c147 #define ZEND_MM_ALIGNED_OFFSET(size, alignment) \ argument
149 #define ZEND_MM_ALIGNED_BASE(size, alignment) \ argument
151 #define ZEND_MM_SIZE_TO_NUM(size, alignment) \ argument
308 size_t size; member
371 size_t size) in zend_mm_safe_error()
448 static void *zend_mm_mmap(size_t size) in zend_mm_mmap()
1734 size_t size; local
1844 size_t size = heap->real_size + new_size; local
1850 size_t size = heap->size + new_size; local
1863 size_t size; local
[all …]
H A Dzend_multiply.h157 static zend_always_inline size_t zend_safe_address(size_t nmemb, size_t size, size_t offset, int *o… in zend_safe_address()
185 static zend_always_inline size_t zend_safe_address(size_t nmemb, size_t size, size_t offset, int *o… in zend_safe_address()
222 static zend_always_inline size_t zend_safe_address(size_t nmemb, size_t size, size_t offset, int *o… in zend_safe_address()
244 static zend_always_inline size_t zend_safe_address(size_t nmemb, size_t size, size_t offset, int *o… in zend_safe_address()
265 static zend_always_inline size_t zend_safe_address(size_t nmemb, size_t size, size_t offset, int *o… in zend_safe_address()
289 static zend_always_inline size_t zend_safe_address(size_t nmemb, size_t size, size_t offset, int *o… in zend_safe_address()
303 static zend_always_inline size_t zend_safe_address(size_t nmemb, size_t size, size_t offset, int *o… 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()
331 static zend_always_inline size_t zend_safe_addmult(size_t nmemb, size_t size, size_t offset, const … in zend_safe_addmult()
H A Dzend_arena.h32 static zend_always_inline zend_arena* zend_arena_create(size_t size) in zend_arena_create()
53 static zend_always_inline void* zend_arena_alloc(zend_arena **arena_ptr, size_t size) in zend_arena_alloc()
82 size_t size; in zend_arena_calloc() local
/PHP-7.3/main/streams/
H A Dphp_streams_int.h21 #define emalloc_rel_orig(size) \ argument
26 #define erealloc_rel_orig(ptr, size) \ argument
31 #define pemalloc_rel_orig(size, persistent) ((persistent) ? malloc((size)) : emalloc_rel_orig((size… argument
32 #define perealloc_rel_orig(ptr, size, persistent) ((persistent) ? realloc((ptr), (size)) : erealloc… argument
34 # define pemalloc_rel_orig(size, persistent) pemalloc((size), (persistent)) argument
35 # define perealloc_rel_orig(ptr, size, persistent) perealloc((ptr), (size), (persistent)) argument
36 # define emalloc_rel_orig(size) emalloc((size)) argument
H A Dcast.c61 static int stream_cookie_reader(void *cookie, char *buffer, int size) in stream_cookie_reader()
69 static int stream_cookie_writer(void *cookie, const char *buffer, int size) in stream_cookie_writer()
90 static ssize_t stream_cookie_reader(void *cookie, char *buffer, size_t size) in stream_cookie_reader()
98 static ssize_t stream_cookie_writer(void *cookie, const char *buffer, size_t size) in stream_cookie_writer()
/PHP-7.3/ext/pcre/pcre2lib/sljit/
H A DsljitExecAllocator.c84 static SLJIT_INLINE void* alloc_chunk(sljit_uw size) in alloc_chunk()
89 static SLJIT_INLINE void free_chunk(void *chunk, sljit_uw size) in free_chunk()
150 static SLJIT_INLINE void* alloc_chunk(sljit_uw size) in alloc_chunk()
174 static SLJIT_INLINE void free_chunk(void *chunk, sljit_uw size) in free_chunk()
188 sljit_uw size; member
196 sljit_uw size; member
204 #define ALIGN_SIZE(size) (((size) + sizeof(struct block_header) + 7) & ~7) argument
210 static SLJIT_INLINE void sljit_insert_free_block(struct free_block *free_block, sljit_uw size) in sljit_insert_free_block()
235 SLJIT_API_FUNC_ATTRIBUTE void* sljit_malloc_exec(sljit_uw size) in sljit_malloc_exec()
H A DsljitProtExecAllocator.c168 static SLJIT_INLINE struct chunk_header* alloc_chunk(sljit_uw size) in alloc_chunk()
201 static SLJIT_INLINE void free_chunk(void *chunk, sljit_uw size) in free_chunk()
218 sljit_uw size; member
227 sljit_uw size; member
235 #define ALIGN_SIZE(size) (((size) + sizeof(struct block_header) + 7) & ~7) argument
241 static SLJIT_INLINE void sljit_insert_free_block(struct free_block *free_block, sljit_uw size) in sljit_insert_free_block()
266 SLJIT_API_FUNC_ATTRIBUTE void* sljit_malloc_exec(sljit_uw size) in sljit_malloc_exec()
/PHP-7.3/ext/mysqlnd/
H A Dmysqlnd_alloc.h52 #define mnd_emalloc(size) mysqlnd_allocator.m_emalloc((size) MYSQLND_MEM_C) argument
53 #define mnd_pemalloc(size, pers) mysqlnd_allocator.m_pemalloc((size), (pers) MYSQLND_MEM_C) argument
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
60 #define mnd_malloc(size) mysqlnd_allocator.m_malloc((size) MYSQLND_MEM_C) argument
61 #define mnd_calloc(nmemb, size) mysqlnd_allocator.m_calloc((nmemb), (size) MYSQLND_MEM_C) argument
64 #define mnd_pememdup(ptr, size, pers) mysqlnd_allocator.m_pememdup((ptr), (size), (pers) MYSQLND_ME… argument
65 #define mnd_pestrndup(ptr, size, pers) mysqlnd_allocator.m_pestrndup((ptr), (size), (pers) MYSQLND_… argument
H A Dmysqlnd_block_alloc.c29 static zend_always_inline zend_arena* mysqlnd_arena_create(size_t size) in mysqlnd_arena_create()
52 static zend_always_inline void* mysqlnd_arena_alloc(zend_arena **arena_ptr, size_t size) in mysqlnd_arena_alloc()
119 mysqlnd_mempool_resize_chunk(MYSQLND_MEMORY_POOL * pool, void * ptr, size_t old_size, size_t size) in mysqlnd_mempool_resize_chunk()
143 mysqlnd_mempool_get_chunk(MYSQLND_MEMORY_POOL * pool, size_t size) in mysqlnd_mempool_get_chunk()
/PHP-7.3/ext/mbstring/oniguruma/src/
H A Dreggnu.c41 re_adjust_startpos(regex_t* reg, const char* string, int size, in re_adjust_startpos()
61 re_match(regex_t* reg, const char* str, int size, int pos, in re_match()
69 re_search(regex_t* bufp, const char* string, int size, int startpos, int range, in re_search()
79 re_compile_pattern(const char* pattern, int size, regex_t* reg, char* ebuf) in re_compile_pattern()
H A Dregposerr.c50 #define xstrncpy(dest,src,size) strncpy_s(dest,size,src,_TRUNCATE) argument
83 size_t size) in regerror()
/PHP-7.3/sapi/fpm/fpm/
H A Dfpm_shm.c18 void *fpm_shm_alloc(size_t size) /* {{{ */ in fpm_shm_alloc()
41 int fpm_shm_free(void *mem, size_t size) /* {{{ */ in fpm_shm_free()
/PHP-7.3/ext/gd/libgd/
H A Dgd_webp.c26 gdImagePtr gdImageCreateFromWebpPtr (int size, void *data) in gdImageCreateFromWebpPtr()
42 size_t size = 0, n; in gdImageCreateFromWebpCtx() local
179 void * gdImageWebpPtr (gdImagePtr im, int *size) in gdImageWebpPtr()
190 void * gdImageWebpPtrEx (gdImagePtr im, int *size, int quantization) in gdImageWebpPtrEx()
H A Dgdhelpers.h15 #define gdCalloc(nmemb, size) ecalloc(nmemb, size) argument
16 #define gdMalloc(size) emalloc(size) argument
17 #define gdRealloc(ptr, size) erealloc(ptr, size) argument
H A Dgd_io_ss.c79 static int sourceGetbuf (gdIOCtx * ctx, void *buf, int size) in sourceGetbuf()
116 static int sinkPutbuf (gdIOCtx * ctx, const void *buf, int size) in sinkPutbuf()
H A Dgd_io_file.c77 static int filePutbuf (gdIOCtx * ctx, const void *buf, int size) in filePutbuf()
86 static int fileGetbuf (gdIOCtx * ctx, void *buf, int size) in fileGetbuf()
/PHP-7.3/ext/intl/
H A Dintl_common.h33 # define eumalloc(size) (UChar*)safe_emalloc(size, sizeof(UChar), 0) argument
37 # define eurealloc(ptr, size) (UChar*)erealloc((ptr), size * sizeof(UChar)) argument
/PHP-7.3/ext/opcache/
H A Dzend_accelerator_util_funcs.c631 static zend_always_inline void fast_memcpy(void *dest, const void *src, size_t size) in fast_memcpy()
652 static zend_always_inline void fast_memcpy(void *dest, const void *src, size_t size) in fast_memcpy()
673 static zend_always_inline void fast_memcpy(void *dest, const void *src, size_t size) in fast_memcpy()
698 static zend_always_inline void fast_memcpy(void *dest, const void *src, size_t size) in fast_memcpy()
723 static zend_always_inline void fast_memcpy(void *dest, const void *src, size_t size) in fast_memcpy()
748 static zend_always_inline void fast_memcpy(void *dest, const void *src, size_t size) in fast_memcpy()
929 size_t size = persistent_script->size; in zend_accel_script_checksum() local
/PHP-7.3/ext/ftp/
H A Dftp.c120 socklen_t size; in ftp_open() local
652 ftp_alloc(ftpbuf_t *ftp, const zend_long size, zend_string **response) in ftp_alloc()
987 zend_long size; in ftp_put() local
1070 zend_long size; in ftp_append() local
1272 int size; in ftp_putcmd() local
1313 long size, rcvd; in ftp_readline() local
1403 zend_long size, sent; in my_send() local
1656 socklen_t size; in ftp_getdata() local
1784 socklen_t size; in data_accept() local
1994 size_t size, rcvd; in ftp_genlist() local
[all …]
/PHP-7.3/TSRM/
H A Dtsrm_config_common.h59 # define tsrm_do_alloca_ex(size, limit, use_heap) \ argument
61 # define tsrm_do_alloca(size, use_heap) \ argument
/PHP-7.3/ext/standard/
H A Drandom.c85 PHPAPI int php_random_bytes(void *bytes, size_t size, zend_bool should_throw) in php_random_bytes()
194 zend_long size; in PHP_FUNCTION() local
H A Dcrypt_blowfish.c386 static int BF_decode(BF_word *dst, const char *src, int size) in BF_decode()
417 static void BF_encode(char *dst, const BF_word *src, int size) in BF_encode()
658 char *output, int size, in BF_crypt()
789 static int _crypt_output_magic(const char *setting, char *output, int size) in _crypt_output_magic()
825 char *output, int size) in php_crypt_blowfish_rn()
/PHP-7.3/ext/opcache/Optimizer/
H A Descape_analysis.c35 static zend_always_inline void union_find_init(int *parent, int *size, int count) /* {{{ */ in union_find_init()
60 static zend_always_inline void union_find_unite(int *parent, int *size, int i, int j) /* {{{ */ in union_find_unite()
83 int *size; in zend_build_equi_escape_sets() local

Completed in 88 milliseconds

123456789