/PHP-5.3/main/streams/ |
H A D | php_streams_int.h | 24 #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 D | cast.c | 63 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.3/Zend/ |
H A D | zend_alloc.h | 42 #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 D | zend_alloc.c | 351 size_t size; member 360 size_t size; member 429 size_t size; member 497 #define ZEND_MM_BLOCK(b, type, size) do { \ argument 737 size_t size; in zend_mm_add_to_free_list() local 915 size_t size = ZEND_MM_BLOCK_SIZE(mm_block); in zend_mm_free_cache() local 951 static void zend_mm_random(unsigned char *buf, size_t size) /* {{{ */ in zend_mm_random() 1597 size_t size, true_size, min_size, max_size; in zend_mm_shutdown() local 1680 size_t size) in zend_mm_safe_error() 1991 size_t size; in _zend_mm_free_int() local [all …]
|
H A D | zend_static_allocator.c | 31 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.3/ext/mbstring/oniguruma/ |
H A D | reggnu.c | 44 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.3/sapi/fpm/fpm/ |
H A D | fpm_shm.c | 20 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 D | fpm_str.h | 8 static inline char *str_purify_filename(char *dst, char *src, size_t size) /* {{{ */ in str_purify_filename()
|
/PHP-5.3/ext/gd/libgd/ |
H A D | gdhelpers.h | 15 #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 D | gd_io_ss.c | 79 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 D | gd_io_file.c | 77 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 D | gd_wbmp.c | 179 gdImagePtr gdImageCreateFromWBMPPtr (int size, void *data) in gdImageCreateFromWBMPPtr() 201 void * gdImageWBMPPtr (gdImagePtr im, int *size, int fg) in gdImageWBMPPtr()
|
H A D | gd_io.c | 122 int gdPutBuf (const void *buf, int size, gdIOCtx * ctx) in gdPutBuf() 129 int gdGetBuf (void *buf, int size, gdIOCtx * ctx) in gdGetBuf()
|
/PHP-5.3/ext/intl/ |
H A D | intl_common.h | 31 # 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.3/ext/sqlite/libsqlite/src/ |
H A D | pragma.c | 213 int size = atoi(zRight); in sqlitePragma() local 248 int size = db->cache_size;; in sqlitePragma() local 253 int size = atoi(zRight); in sqlitePragma() local 300 int size = db->cache_size; in sqlitePragma() local 342 int size = db->cache_size; in sqlitePragma() local
|
/PHP-5.3/ext/standard/ |
H A D | formatted_print.c | 58 php_sprintf_appendchar(char **buffer, int *pos, int *size, char add TSRMLS_DC) in php_sprintf_appendchar() 72 php_sprintf_appendstring(char **buffer, int *pos, int *size, char *add, in php_sprintf_appendstring() 132 php_sprintf_appendint(char **buffer, int *pos, int *size, long number, in php_sprintf_appendint() 176 php_sprintf_appenduint(char **buffer, int *pos, int *size, in php_sprintf_appenduint() 209 int *size, double number, in php_sprintf_appenddouble() 299 php_sprintf_append2n(char **buffer, int *pos, int *size, long number, in php_sprintf_append2n() 378 int argc, size = 240, inpos = 0, outpos = 0, temppos; in php_formatted_print() local
|
H A D | crypt_blowfish.c | 387 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() 650 char *output, int size, in BF_crypt() 784 static int _crypt_output_magic(const char *setting, char *output, int size) in _crypt_output_magic() 820 char *output, int size) in php_crypt_blowfish_rn()
|
H A D | pack.c | 88 static void php_pack(zval **val, int size, int *map, char *output) in php_pack() 489 static long php_unpack(char *data, int size, int issigned, int *map) in php_unpack() 544 int size=0; in PHP_FUNCTION() local 912 int size = sizeof(Z_LVAL(val)); in PHP_MINIT_FUNCTION() local
|
/PHP-5.3/ext/ftp/ |
H A D | ftp.c | 127 socklen_t size; in ftp_open() local 609 ftp_alloc(ftpbuf_t *ftp, const int size, char **response) in ftp_alloc() 885 int size; in ftp_put() local 1099 int size; in ftp_putcmd() local 1140 int size, rcvd; in ftp_readline() local 1233 int n, size, sent; in my_send() local 1375 socklen_t size; in ftp_getdata() local 1494 socklen_t size; in data_accept() local 1598 int size, rcvd; in ftp_genlist() local 1879 int size; in ftp_nb_continue_write() local
|
/PHP-5.3/TSRM/ |
H A D | tsrm_config_common.h | 58 # define tsrm_do_alloca_ex(size, limit, use_heap) \ argument 60 # define tsrm_do_alloca(size, use_heap) \ argument
|
/PHP-5.3/main/ |
H A D | php_logos.c | 31 int size; member 36 …hp_register_info_logo(char *logo_string, const char *mimetype, const unsigned char *data, int size) in php_register_info_logo()
|
H A D | mergesort.c | 105 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()
|
/PHP-5.3/ext/mysqlnd/ |
H A D | mysqlnd_debug.h | 216 #define mnd_emalloc(size) mysqlnd_allocator.m_emalloc((size) MYSQLND_MEM_C) argument 217 #define mnd_pemalloc(size, pers) mysqlnd_allocator.m_pemalloc((size), (pers) MYSQLND_MEM_C) argument 218 #define mnd_ecalloc(nmemb, size) mysqlnd_allocator.m_ecalloc((nmemb), (size) MYSQLND_MEM_C) argument 219 #define mnd_pecalloc(nmemb, size, p) mysqlnd_allocator.m_pecalloc((nmemb), (size), (p) MYSQLND_MEM_… argument 224 #define mnd_malloc(size) mysqlnd_allocator.m_malloc((size) MYSQLND_MEM_C) argument 225 #define mnd_calloc(nmemb, size) mysqlnd_allocator.m_calloc((nmemb), (size) MYSQLND_MEM_C) argument 228 #define mnd_pestrndup(ptr, size, pers) mysqlnd_allocator.m_pestrndup((ptr), (size), (pers) MYSQLND_… argument
|
/PHP-5.3/ext/dba/libflatfile/ |
H A D | flatfile.c | 109 size_t size = key_datum.dsize; in flatfile_delete() local 171 size_t size = key_datum.dsize; in flatfile_findkey() local
|
/PHP-5.3/win32/ |
H A D | sockets.c | 35 int size = sizeof(address); in socketpair() local
|