| /PHP_TRUNK/ext/xmlrpc/libxmlrpc/ |
| H A D | queue.h | 39 int size, sorted, item_deleted; member in struct:__anon495
|
| H A D | simplestring.h | 54 int size; /* size of allocated buffer */ member in struct:_simplestring
|
| /PHP_TRUNK/ext/zip/lib/ |
| H A D | zip_source_crc.c | 2 zip_source_crc.c -- pass-through source that calculates CRC32 and size 46 zip_uint64_t size; 92 ctx->size = 0; 117 if ((st.valid & ZIP_STAT_SIZE) && st.size != ctx->size) { 126 ctx->size += n; 143 st->size = ctx->size; 45 zip_uint64_t size; member in struct:crc
|
| H A D | zip_source_deflate.c | 47 zip_uint64_t size; 150 ctx->size = ctx->zstr.total_in; 298 st->comp_size = ctx->size; 368 if (st->comp_size > 0 && st->size > 0) 369 st->comp_size = st->size; 46 zip_uint64_t size; member in struct:deflate
|
| /PHP_TRUNK/sapi/fpm/fpm/ |
| H A D | fpm_shm.c | 20 void *fpm_shm_alloc(size_t size) /* {{{ */ argument 24 mem = mmap(0, size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_SHARED, -1, 0); 28 zlog(ZLOG_SYSERROR, "unable to allocate %zu bytes in shared memory: %s", size, strerror(errno)); 34 zlog(ZLOG_SYSERROR, "unable to allocate %zu bytes in shared memory", size); 38 memset(mem, 0, size); 39 fpm_shm_size += size; 44 int fpm_shm_free(void *mem, size_t size) /* {{{ */ argument 51 if (munmap(mem, size) == -1) { 56 if (fpm_shm_size - size > 0) { 57 fpm_shm_size -= size; [all...] |
| H A D | fpm_str.h | 8 static inline char *str_purify_filename(char *dst, char *src, size_t size) /* {{{ */ argument 13 end = dst + size - 1;
|
| /PHP_TRUNK/ext/fileinfo/libmagic/ |
| H A D | tar.h | 58 char size[12]; member in struct:record::header
|
| /PHP_TRUNK/ext/gd/ |
| H A D | gdcache.h | 6 * reached a given size. 28 * a specified maximum size. After the maximum size is reached then 68 int size; member in struct:gdCache_head_s 78 int size,
|
| /PHP_TRUNK/ext/gd/libgd/ |
| H A D | gd_io.c | 122 int gdPutBuf (const void *buf, int size, gdIOCtx * ctx) argument 125 return (ctx->putBuf) (ctx, buf, size); 129 int gdGetBuf (void *buf, int size, gdIOCtx * ctx) argument 131 return (ctx->getBuf) (ctx, buf, size);
|
| H A D | gd_io_file.c | 77 static int filePutbuf (gdIOCtx * ctx, const void *buf, int size) argument 82 return fwrite(buf, 1, size, fctx->f); 86 static int fileGetbuf (gdIOCtx * ctx, void *buf, int size) argument 91 return fread(buf, 1, size, fctx->f);
|
| H A D | gd_io_ss.c | 45 static int sinkPutbuf (gdIOCtx * ctx, const void *buf, int size); 79 static int sourceGetbuf (gdIOCtx * ctx, void *buf, int size) argument 86 res = ((lctx->src->source) (lctx->src->context, buf, size)); 116 static int sinkPutbuf (gdIOCtx * ctx, const void *buf, int size) argument 123 res = (lctx->snk->sink) (lctx->snk->context, buf, size);
|
| H A D | gd_wbmp.c | 179 gdImagePtr gdImageCreateFromWBMPPtr (int size, void *data) argument 182 gdIOCtx *in = gdNewDynamicCtxEx(size, data, 0); 201 void * gdImageWBMPPtr (gdImagePtr im, int *size, int fg) argument 206 rv = gdDPExtractData(out, size);
|
| H A D | gdcache.c | 15 * reached a given size. 37 * a specified maximum size. After the maximum size is reached then 58 int size, 67 head->size = size; 122 if (i < head->size) 57 gdCacheCreate( int size, gdCacheTestFn_t gdCacheTest, gdCacheFetchFn_t gdCacheFetch, gdCacheReleaseFn_t gdCacheRelease) argument
|
| H A D | gdcache.h | 6 * reached a given size. 28 * a specified maximum size. After the maximum size is reached then 67 int size; member in struct:gdCache_head_s 77 int size,
|
| /PHP_TRUNK/ext/mbstring/oniguruma/ |
| H A D | regposerr.c | 73 size_t size) 93 if (buf != NULL && size > 0) { 94 strncpy(buf, s, size - 1); 95 buf[size - 1] = '\0'; 72 regerror(int posix_ecode, const regex_t* reg ARG_UNUSED, char* buf, size_t size) argument
|
| /PHP_TRUNK/Zend/ |
| H A D | zend_dynamic_array.c | 31 ZEND_API int zend_dynamic_array_init(dynamic_array *da, unsigned int element_size, unsigned int size) argument 34 da->allocated = size; 36 da->array = (char *) emalloc(size*element_size);
|
| H A D | zend_stack.c | 33 ZEND_API int zend_stack_push(zend_stack *stack, const void *element, int size) argument 42 stack->elements[stack->top] = (void *) emalloc(size); 43 memcpy(stack->elements[stack->top], element, size);
|
| H A D | zend_static_allocator.c | 31 inline static char *block_allocate(Block *block, zend_uint size) argument 34 if ((block->pos += size) >= block->end) { 53 char *static_allocator_allocate(StaticAllocator *sa, zend_uint size) argument 57 retval = block_allocate(&sa->Blocks[sa->current_block], size); 63 block_init(&sa->Blocks[sa->current_block], (size > ALLOCATOR_BLOCK_SIZE) ? size : ALLOCATOR_BLOCK_SIZE); 64 retval = block_allocate(&sa->Blocks[sa->current_block], size);
|
| H A D | zend_string.c | 43 size_t size = 1024 * 1024; local 46 CG(interned_strings_start) = valloc(size); 48 CG(interned_strings_start) = malloc(size); 53 CG(interned_strings_end) = CG(interned_strings_start) + size; 156 if ((CG(interned_strings).nTableSize << 1) > 0) { /* Let's double the table size */
|
| /PHP_TRUNK/ext/dba/libflatfile/ |
| H A D | flatfile.c | 108 size_t size = key_datum.dsize; local 133 if (size == num && !memcmp(buf, key, size)) { 170 size_t size = key_datum.dsize; local 186 if (size == num) { 187 if (!memcmp(buf, key, size)) {
|
| /PHP_TRUNK/ext/shmop/ |
| H A D | php_shmop.h | 48 int size; member in struct:php_shmop
|
| /PHP_TRUNK/win32/ |
| H A D | winutil.c | 80 PHPAPI int php_win32_get_random_bytes(unsigned char *buf, size_t size) { /* {{{ */ argument 118 ret = CryptGenRandom(hCryptProv, size, buf);
|
| H A D | sockets.c | 35 int size = sizeof(address); local 58 if(getsockname(sock[0], (struct sockaddr *)&address, &size) != 0) { 76 redirect = accept(sock[0],(struct sockaddr*)&address, &size);
|
| /PHP_TRUNK/ext/sockets/ |
| H A D | sendrecvmsg.h | 27 socklen_t size; /* size of native structure */ member in struct:__anon5 28 socklen_t var_el_size; /* size of repeatable component */
|
| /PHP_TRUNK/ext/opcache/ |
| H A D | zend_accelerator_blacklist.h | 35 int size; member in struct:_zend_blacklist
|