Home
last modified time | relevance | path

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

1234567

/PHP-5.5/main/streams/
H A Dphp_streams_int.h24 #define emalloc_rel_orig(size) \ argument
29 #define erealloc_rel_orig(ptr, size) \ argument
34 #define pemalloc_rel_orig(size, persistent) ((persistent) ? malloc((size)) : emalloc_rel_orig((size… argument
35 #define perealloc_rel_orig(ptr, size, persistent) ((persistent) ? realloc((ptr), (size)) : erealloc… argument
37 # define pemalloc_rel_orig(size, persistent) pemalloc((size), (persistent)) argument
38 # define perealloc_rel_orig(ptr, size, persistent) perealloc((ptr), (size), (persistent)) argument
39 # define emalloc_rel_orig(size) emalloc((size)) argument
H A Dcast.c63 static int stream_cookie_reader(void *cookie, char *buffer, int size) in stream_cookie_reader()
72 static int stream_cookie_writer(void *cookie, const char *buffer, int size) in stream_cookie_writer()
96 static ssize_t stream_cookie_reader(void *cookie, char *buffer, size_t size) in stream_cookie_reader()
105 static ssize_t stream_cookie_writer(void *cookie, const char *buffer, size_t size) in stream_cookie_writer()
/PHP-5.5/Zend/
H A Dzend_alloc.h42 #define ZEND_MM_ALIGNED_SIZE(size) (((size) + ZEND_MM_ALIGNMENT - 1) & ZEND_MM_ALIGNMENT_MASK) argument
46 size_t size; member
70 #define emalloc(size) _emalloc((size) ZEND_FILE_LINE_CC ZEND_FILE_LINE_EMPTY_CC) argument
73 #define ecalloc(nmemb, size) _ecalloc((nmemb), (size) ZEND_FILE_LINE_CC ZEND_FILE_LINE_EMPTY_CC) argument
74 #define erealloc(ptr, size) _erealloc((ptr), (size), 0 ZEND_FILE_LINE_CC ZEND_FILE_LINE_EMPTY_C… argument
82 #define emalloc_rel(size) _emalloc((size) ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE_CC) argument
85 #define ecalloc_rel(nmemb, size) _ecalloc((nmemb), (size) ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE… argument
86 #define erealloc_rel(ptr, size) _erealloc((ptr), (size), 0 ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LI… argument
122 #define pemalloc(size, persistent) ((persistent)?__zend_malloc(size):emalloc(size)) argument
132 #define pemalloc_rel(size, persistent) ((persistent)?__zend_malloc(size):emalloc_rel(size)) argument
[all …]
H A Dzend_alloc.c351 size_t size; member
360 size_t size; member
429 size_t size; member
502 #define ZEND_MM_BLOCK(b, type, size) do { \ argument
729 size_t size; in zend_mm_add_to_free_list() local
941 size_t size = ZEND_MM_BLOCK_SIZE(mm_block); in zend_mm_free_cache() local
977 static void zend_mm_random(unsigned char *buf, size_t size) /* {{{ */ in zend_mm_random()
1631 size_t size, true_size, min_size, max_size; in zend_mm_shutdown() local
1750 size_t size) in zend_mm_safe_error()
2064 size_t size; in _zend_mm_free_int() local
[all …]
H A Dzend_static_allocator.c31 inline static char *block_allocate(Block *block, zend_uint size) in block_allocate()
53 char *static_allocator_allocate(StaticAllocator *sa, zend_uint size) in static_allocator_allocate()
/PHP-5.5/ext/pcre/pcrelib/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()
97 static SLJIT_INLINE void* alloc_chunk(sljit_uw size) in alloc_chunk()
114 static SLJIT_INLINE void free_chunk(void* chunk, sljit_uw size) in free_chunk()
128 sljit_uw size; member
136 sljit_uw size; member
144 #define ALIGN_SIZE(size) (((size) + sizeof(struct block_header) + 7) & ~7) argument
150 static SLJIT_INLINE void sljit_insert_free_block(struct free_block *free_block, sljit_uw size) in sljit_insert_free_block()
175 SLJIT_API_FUNC_ATTRIBUTE void* sljit_malloc_exec(sljit_uw size) in sljit_malloc_exec()
H A DsljitNativeX86_32.c70 sljit_si size; in sljit_emit_enter() local
210 sljit_si size; in sljit_emit_return() local
274 static sljit_ub* emit_x86_instruction(struct sljit_compiler *compiler, sljit_si size, in emit_x86_instruction()
/PHP-5.5/ext/mbstring/oniguruma/
H A Dreggnu.c44 re_adjust_startpos(regex_t* reg, const char* string, int size, in re_adjust_startpos()
64 re_match(regex_t* reg, const char* str, int size, int pos, in re_match()
72 re_search(regex_t* bufp, const char* string, int size, int startpos, int range, in re_search()
82 re_compile_pattern(const char* pattern, int size, regex_t* reg, char* ebuf) in re_compile_pattern()
98 re_recompile_pattern(const char* pattern, int size, regex_t* reg, char* ebuf) in re_recompile_pattern()
/PHP-5.5/ext/mysqlnd/
H A Dmysqlnd_alloc.h73 #define mnd_emalloc(size) mysqlnd_allocator.m_emalloc((size) MYSQLND_MEM_C) argument
74 #define mnd_pemalloc(size, pers) mysqlnd_allocator.m_pemalloc((size), (pers) MYSQLND_MEM_C) argument
75 #define mnd_ecalloc(nmemb, size) mysqlnd_allocator.m_ecalloc((nmemb), (size) MYSQLND_MEM_C) argument
76 #define mnd_pecalloc(nmemb, size, p) mysqlnd_allocator.m_pecalloc((nmemb), (size), (p) MYSQLND_MEM_… argument
81 #define mnd_malloc(size) mysqlnd_allocator.m_malloc((size) MYSQLND_MEM_C) argument
82 #define mnd_calloc(nmemb, size) mysqlnd_allocator.m_calloc((nmemb), (size) MYSQLND_MEM_C) argument
85 #define mnd_pestrndup(ptr, size, pers) mysqlnd_allocator.m_pestrndup((ptr), (size), (pers) MYSQLND_… argument
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_shm.c20 void *fpm_shm_alloc(size_t size) /* {{{ */ in fpm_shm_alloc()
44 int fpm_shm_free(void *mem, size_t size) /* {{{ */ in fpm_shm_free()
H A Dfpm_str.h8 static inline char *str_purify_filename(char *dst, char *src, size_t size) /* {{{ */ in str_purify_filename()
/PHP-5.5/ext/gd/libgd/
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_webp.c37 gdImagePtr gdImageCreateFromWebpPtr (int size, void *data) in gdImageCreateFromWebpPtr()
71 size_t size = 0, n; in gdImageCreateFromWebpCtx() local
122 void * gdImageWebpPtr (gdImagePtr im, int *size) in gdImageWebpPtr()
133 void * gdImageWebpPtrEx (gdImagePtr im, int *size, int quantization) in gdImageWebpPtrEx()
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()
H A Dgd_wbmp.c179 gdImagePtr gdImageCreateFromWBMPPtr (int size, void *data) in gdImageCreateFromWBMPPtr()
201 void * gdImageWBMPPtr (gdImagePtr im, int *size, int fg) in gdImageWBMPPtr()
/PHP-5.5/ext/intl/
H A Dintl_common.h31 # define eumalloc(size) (UChar*)safe_emalloc(size, sizeof(UChar), 0) argument
35 # define eurealloc(ptr, size) (UChar*)erealloc((ptr), size * sizeof(UChar)) argument
/PHP-5.5/ext/standard/
H A Dformatted_print.c60 php_sprintf_appendchar(char **buffer, int *pos, int *size, char add TSRMLS_DC) in php_sprintf_appendchar()
74 php_sprintf_appendstring(char **buffer, int *pos, int *size, char *add, in php_sprintf_appendstring()
134 php_sprintf_appendint(char **buffer, int *pos, int *size, long number, in php_sprintf_appendint()
178 php_sprintf_appenduint(char **buffer, int *pos, int *size, in php_sprintf_appenduint()
211 int *size, double number, in php_sprintf_appenddouble()
313 php_sprintf_append2n(char **buffer, int *pos, int *size, long number, in php_sprintf_append2n()
392 int argc, size = 240, inpos = 0, outpos = 0, temppos; in php_formatted_print() local
H A Dcrypt_blowfish.c387 static int BF_decode(BF_word *dst, const char *src, int size) in BF_decode()
414 static void BF_encode(char *dst, const BF_word *src, int size) in BF_encode()
655 char *output, int size, in BF_crypt()
786 static int _crypt_output_magic(const char *setting, char *output, int size) in _crypt_output_magic()
822 char *output, int size) in php_crypt_blowfish_rn()
H A Dpack.c87 static void php_pack(zval **val, int size, int *map, char *output) in php_pack()
499 static long php_unpack(char *data, int size, int issigned, int *map) in php_unpack()
554 int size=0; in PHP_FUNCTION() local
974 int size = sizeof(Z_LVAL(val)); in PHP_MINIT_FUNCTION() local
/PHP-5.5/ext/ftp/
H A Dftp.c127 socklen_t size; in ftp_open() local
619 ftp_alloc(ftpbuf_t *ftp, const long size, char **response) in ftp_alloc()
889 long size; in ftp_put() local
1099 int size; in ftp_putcmd() local
1140 long size, rcvd; in ftp_readline() local
1230 long size, sent; in my_send() local
1373 socklen_t size; in ftp_getdata() local
1492 socklen_t size; in data_accept() local
1613 size_t size, rcvd; in ftp_genlist() local
1881 long size; in ftp_nb_continue_write() local
/PHP-5.5/TSRM/
H A Dtsrm_config_common.h58 # define tsrm_do_alloca_ex(size, limit, use_heap) \ argument
60 # define tsrm_do_alloca(size, use_heap) \ argument
/PHP-5.5/ext/opcache/
H A Dzend_shared_alloc.c107 static void copy_shared_segments(void *to, void *from, int count, int size) in copy_shared_segments()
297 void *zend_shared_alloc(size_t size) in zend_shared_alloc()
326 int zend_shared_memdup_size(void *source, size_t size) in zend_shared_memdup_size()
338 void *_zend_shared_memdup(void *source, size_t size, zend_bool free_source TSRMLS_DC) in _zend_shared_memdup()
/PHP-5.5/ext/dba/libflatfile/
H A Dflatfile.c108 size_t size = key_datum.dsize; in flatfile_delete() local
164 size_t size = key_datum.dsize; in flatfile_findkey() local
/PHP-5.5/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()
265 static void setup(u_char *list1, u_char *list2, size_t n, size_t size, int (*cmp)(const void *, con… in setup()
336 static void insertionsort(u_char *a, size_t n, size_t size, int (*cmp)(const void *, const void * T… in insertionsort()

Completed in 56 milliseconds

1234567