Home
last modified time | relevance | path

Searched refs:size (Results 176 – 200 of 760) sorted by relevance

12345678910>>...31

/php-src/Zend/tests/stack_limit/
H A Dstack_limit_003.phpt64 Maximum call stack size of %d bytes (zend.max_allowed_stack_size - zend.reserved_stack_size) reache…
65 Maximum call stack size of %d bytes (zend.max_allowed_stack_size - zend.reserved_stack_size) reache…
66 Maximum call stack size of %d bytes (zend.max_allowed_stack_size - zend.reserved_stack_size) reache…
/php-src/ext/phar/
H A Dtar.c208 uint32_t sum1, sum2, size, old; in phar_parse_tarfile() local
273 phar_tar_number(hdr->size, sizeof(hdr->size)); in phar_parse_tarfile()
277 size = (size+511)&~511; in phar_parse_tarfile()
285 if (size > 511) { in phar_parse_tarfile()
390 size = ((size+511)&~511) - size; in phar_parse_tarfile()
531 if (size > 511) { in phar_parse_tarfile()
542 if (read == size) { in phar_parse_tarfile()
543 buf[size] = '\0'; in phar_parse_tarfile()
545 if (size > 50) { in phar_parse_tarfile()
563 myphar->alias_len = size; in phar_parse_tarfile()
[all …]
/php-src/ext/dom/lexbor/lexbor/core/
H A Dbst_map.c18 lexbor_bst_map_init(lexbor_bst_map_t *bst_map, size_t size) in lexbor_bst_map_init() argument
26 if (size == 0) { in lexbor_bst_map_init()
32 status = lexbor_bst_init(bst_map->bst, size); in lexbor_bst_map_init()
39 status = lexbor_dobject_init(bst_map->entries, size, in lexbor_bst_map_init()
47 status = lexbor_mraw_init(bst_map->mraw, (size * 6)); in lexbor_bst_map_init()
H A Darray_obj.h19 size_t size; member
31 size_t size, size_t struct_size);
88 return array->size; in lexbor_array_obj_size()
/php-src/ext/gd/libgd/
H A Dgd.h361 gdImagePtr gdImageCreateFromJpegPtr (int size, void *data);
365 gdImagePtr gdImageCreateFromWebpPtr (int size, void *data);
368 gdImagePtr gdImageCreateFromAvifPtr(int size, void *data);
373 gdImagePtr gdImageCreateFromTgaPtr(int size, void *data);
376 gdImagePtr gdImageCreateFromBmpPtr (int size, void *data);
615 void *gdImageWBMPPtr(gdImagePtr im, int *size, int fg);
638 void *gdImageJpegPtr(gdImagePtr im, int *size, int quality);
646 void *gdImageAvifPtr(gdImagePtr im, int *size);
666 void* gdImagePngPtr(gdImagePtr im, int *size);
669 void* gdImageGdPtr(gdImagePtr im, int *size);
[all …]
H A Dgd_io.c181 int gdPutBuf (const void *buf, int size, gdIOCtx * ctx) in gdPutBuf() argument
184 return (ctx->putBuf) (ctx, buf, size); in gdPutBuf()
188 int gdGetBuf (void *buf, int size, gdIOCtx * ctx) in gdGetBuf() argument
190 return (ctx->getBuf) (ctx, buf, size); in gdGetBuf()
/php-src/ext/standard/tests/file/
H A Dfilesize_basic.phpt5 echo "*** Testing size of files and directories with filesize() ***\n";
27 *** Testing size of files and directories with filesize() ***
H A Dlstat_stat_variation21.phpt25 echo "*** Testing stat() on file by truncating it to given size ***\n";
40 $affected_members = array(7, 9, 10, 'size', 'mtime', 'ctime');
51 *** Testing stat() on file by truncating it to given size ***
/php-src/tests/basic/
H A Drfc1867_empty_upload.phpt54 ["size"]=>
69 ["size"]=>
84 ["size"]=>
H A Drfc1867_max_file_size.phpt54 ["size"]=>
69 ["size"]=>
84 ["size"]=>
H A Drfc1867_anonymous_upload.phpt39 ["size"]=>
54 ["size"]=>
/php-src/ext/dom/lexbor/lexbor/css/syntax/
H A Dtokenizer.h38 size_t size; member
126 const lxb_char_t *data, size_t size) in lxb_css_syntax_tokenizer_buffer_set() argument
129 tkz->in_end = data + size; in lxb_css_syntax_tokenizer_buffer_set()
/php-src/Zend/
H A Dzend_stack.h26 int size, top, max; member
39 ZEND_API void zend_stack_init(zend_stack *stack, int size);
/php-src/ext/opcache/jit/ir/
H A Dir.c1355 IR_ASSERT(size > a->size);
1357 a->size = size;
1410 size |= (size >> 1);
1411 size |= (size >> 2);
1412 size |= (size >> 4);
1413 size |= (size >> 8);
1414 size |= (size >> 16);
1431 tab->size = size;
1456 tab->size = size;
1560 tab->size = size;
[all …]
/php-src/ext/standard/
H A Dmd5.c186 static const void *body(PHP_MD5_CTX *ctx, const void *data, size_t size) in body() argument
283 } while (size -= 64); in body()
310 if ((ctx->lo = (saved_lo + size) & 0x1fffffff) < saved_lo) { in PHP_MD5Update()
313 ctx->hi += size >> 29; in PHP_MD5Update()
320 if (size < free) { in PHP_MD5Update()
321 memcpy(&ctx->buffer[used], data, size); in PHP_MD5Update()
327 size -= free; in PHP_MD5Update()
331 if (size >= 64) { in PHP_MD5Update()
332 data = body(ctx, data, size & ~(size_t)0x3f); in PHP_MD5Update()
333 size &= 0x3f; in PHP_MD5Update()
[all …]
/php-src/ext/dba/
H A Ddba_db4.c154 gkey.size = ZSTR_LEN(key);
161 fetched_value = zend_string_init(gval.data, gval.size, /* persistent */ false);
177 gkey.size = ZSTR_LEN(key);
181 gval.size = ZSTR_LEN(val);
198 gkey.size = ZSTR_LEN(key);
222 gkey.size = ZSTR_LEN(key);
258 key = zend_string_init(gkey.data, gkey.size, /* persistent */ false);
/php-src/ext/zlib/tests/
H A Dgztell_basic2.phpt13 foreach ($sizes as $size) {
14 echo "bytes written=".gzwrite($h, str_repeat('1', $size))."\n";
H A Dbug_34821.phpt20 foreach ($b as $size) {
23 } while (++$i < $size);
H A Dzlib_wrapper_level.phpt24 $size = filesize($filename);
26 return $size;
/php-src/ext/opcache/
H A Dzend_persist_calc.c32 #define ADD_SIZE(m) ZCG(current_persistent_script)->size += ZEND_ALIGNED_SIZE(m)
102 uint32_t size; in zend_persist_zval_calc() local
116 size = zend_shared_memdup_size(Z_ARR_P(z), sizeof(zend_array)); in zend_persist_zval_calc()
117 if (size) { in zend_persist_zval_calc()
120 ADD_SIZE(size); in zend_persist_zval_calc()
143 size = zend_shared_memdup_size(Z_AST_P(z), sizeof(zend_ast_ref)); in zend_persist_zval_calc()
144 if (size) { in zend_persist_zval_calc()
145 ADD_SIZE(size); in zend_persist_zval_calc()
602 new_persistent_script->size = 0; in zend_accel_script_persist_calc()
616 new_persistent_script->size = (new_persistent_script->size + 63) & ~63; in zend_accel_script_persist_calc()
[all …]
/php-src/ext/mysqlnd/
H A Dmysqlnd_block_alloc.c27 mysqlnd_mempool_get_chunk(MYSQLND_MEMORY_POOL * pool, size_t size) in mysqlnd_mempool_get_chunk() argument
30 DBG_RETURN(zend_arena_alloc(&pool->arena, size)); in mysqlnd_mempool_get_chunk()
/php-src/main/
H A Doutput.c798 context->in.size = size; in php_output_context_feed()
812 context->in.size = context->out.size; in php_output_context_swap()
816 context->out.size = 0; in php_output_context_swap()
826 context->out.size = context->in.size; in php_output_context_pass()
831 context->in.size = 0; in php_output_context_pass()
858 handler->size = chunk_size; in php_output_handler_init()
861 handler->buffer.data = emalloc(handler->buffer.size); in php_output_handler_init()
880 handler->buffer.size += grow_max; in php_output_handler_append()
886 if (handler->size && (handler->buffer.used >= handler->size)) { in php_output_handler_append()
918 handler->buffer.size, in php_output_handler_op()
[all …]
/php-src/ext/sockets/
H A Dmulticast.c622 ULONG size; in php_if_index_to_addr4() local
633 size = 4 * (sizeof *addr_table); in php_if_index_to_addr4()
634 addr_table = emalloc(size); in php_if_index_to_addr4()
638 erealloc(addr_table, size); in php_if_index_to_addr4()
664 ULONG size; in php_add4_to_if_index() local
675 size = 4 * (sizeof *addr_table); in php_add4_to_if_index()
676 addr_table = emalloc(size); in php_add4_to_if_index()
680 erealloc(addr_table, size); in php_add4_to_if_index()
752 int size = 0, local
763 buf = ecalloc(size, 1);
[all …]
/php-src/ext/gd/tests/
H A Dimagegd_truecolor.phpt28 printf("size: %d\n", strlen($buffer));
35 size: 411
/php-src/Zend/asm/
H A Dmake_ppc64_sysv_elf_gas.S92 .size make_fcontext,24
167 .size make_fcontext, .-make_fcontext
170 .size .make_fcontext, .-.L.make_fcontext
172 .size .make_fcontext, .-.make_fcontext

Completed in 70 milliseconds

12345678910>>...31