Home
last modified time | relevance | path

Searched refs:size (Results 251 – 275 of 753) sorted by relevance

1...<<11121314151617181920>>...31

/php-src/Zend/
H A Dzend_fibers.c82 size_t size; member
173 extern void *make_fcontext(void *sp, size_t size, void (*fn)(boost_context_data));
203 static zend_fiber_stack *zend_fiber_stack_allocate(size_t size) in zend_fiber_stack_allocate() argument
209 if (size < minimum_stack_size) { in zend_fiber_stack_allocate()
214 const size_t stack_size = (size + page_size - 1) / page_size * page_size; in zend_fiber_stack_allocate()
268 stack->size = stack_size; in zend_fiber_stack_allocate()
289 stack->valgrind_stack_id = VALGRIND_STACK_REGISTER(base, base + stack->size); in zend_fiber_stack_allocate()
294 stack->asan_size = stack->size; in zend_fiber_stack_allocate()
319 munmap(pointer, stack->size + ZEND_FIBER_GUARD_PAGES * page_size); in zend_fiber_stack_free()
349 return (void*)((uintptr_t)stack->pointer + stack->size); in zend_fiber_stack_base()
[all …]
/php-src/ext/opcache/
H A Dzend_accelerator_blacklist.c55 blacklist->size = ZEND_BLACKLIST_BLOCK_SIZE; in zend_accel_blacklist_init()
61 …blacklist->entries = (zend_blacklist_entry *) calloc(blacklist->size, sizeof(zend_blacklist_entry)… in zend_accel_blacklist_init()
234 if (blacklist->pos == blacklist->size) { in zend_accel_blacklist_allocate()
235 blacklist->size += ZEND_BLACKLIST_BLOCK_SIZE; in zend_accel_blacklist_allocate()
236 …(zend_blacklist_entry *) realloc(blacklist->entries, sizeof(zend_blacklist_entry)*blacklist->size); in zend_accel_blacklist_allocate()
H A Dshared_alloc_posix.c114 shared_segment->common.size = requested_size; in create_segments()
121 munmap(shared_segment->common.p, shared_segment->common.size); in detach_segment()
/php-src/ext/dom/lexbor/lexbor/core/
H A Ddtoa.c281 size_t size; in lexbor_prettify() local
347 size = lexbor_write_exponent(kk - 1, &begin[2], end); in lexbor_prettify()
349 return (size + 2); in lexbor_prettify()
362 size = lexbor_write_exponent(kk - 1, &begin[length + 2], end); in lexbor_prettify()
364 return (size + length + 2); in lexbor_prettify()
/php-src/ext/sqlite3/tests/
H A Dsqlite3_30_blobopen.phpt40 echo "Expanding blob size\n";
72 Expanding blob size
74 Warning: fwrite(): It is not possible to increase the size of a BLOB in %s on line %d
/php-src/ext/soap/tests/bugs/
H A Dbug73237.phpt12 …ue"/><sf:Email>angela.lansbury@cbs.com</sf:Email></sf:Lead></records><size>1</size></result></quer…
66 ["size"]=>
/php-src/ext/session/tests/
H A Drfc1867_disabled.phpt63 ["size"]=>
78 ["size"]=>
H A Drfc1867_disabled_2.phpt63 ["size"]=>
78 ["size"]=>
H A Drfc1867_no_name.phpt63 ["size"]=>
78 ["size"]=>
H A Drfc1867_sid_only_cookie_2.phpt66 ["size"]=>
81 ["size"]=>
/php-src/ext/standard/tests/array/
H A Darray_chunk_basic1.phpt6 $size = 2;
30 var_dump( array_chunk($input_array, $size) );
/php-src/ext/curl/tests/
H A Dbug69316.phpt12 …// cause an allocation of approx the same size as a FILE structure, size varies a bit depending on…
/php-src/Zend/tests/
H A Dbug69025.phpt2 Bug #69025 (Invalid read of size 4 when calling __callStatic)
/php-src/ext/spl/tests/
H A Dfixedarray_021.phpt66 SplFixedArray::__construct(): Argument #1 ($size) must be greater than or equal to 0
67 SplFixedArray::setSize(): Argument #1 ($size) must be greater than or equal to 0
/php-src/ext/opcache/tests/
H A Dbu69838.phpt2 Bug #69838 OPCACHE Warning Internal error: wrong size calculation
/php-src/ext/dom/lexbor/lexbor/html/
H A Dstyle.h39 const lxb_char_t *name, size_t size);
/php-src/ext/mbstring/tests/
H A Dgh11476.phpt2 GH-11476: count_demerits negative-size-param
H A Dbug77367.phpt2 Bug #77367 (Negative size parameter in mb_split)
/php-src/ext/fileinfo/libmagic/
H A Dtar.h58 char size[12]; member
/php-src/Zend/asm/
H A Djump_ppc64_sysv_elf_gas.S92 .size jump_fcontext,24
192 .size jump_fcontext, .-jump_fcontext
213 .size .jump_fcontext, .-.L.jump_fcontext
215 .size .jump_fcontext, .-.jump_fcontext
/php-src/ext/pcre/pcre2lib/
H A Dpcre2_context.c56 static void *default_malloc(size_t size, void *data) in default_malloc() argument
59 return malloc(size); in default_malloc()
86 PRIV(memctl_malloc)(size_t size, pcre2_memctl *memctl) in PRIV()
89 void *yield = (memctl == NULL)? malloc(size) : in PRIV()
90 memctl->malloc(size, memctl->memory_data); in PRIV()
/php-src/ext/filter/
H A Dfilter.c103 int i, size = sizeof(filter_list) / sizeof(filter_list_entry); in ZEND_GET_MODULE() local
105 for (i = 0; i < size; ++i) { in ZEND_GET_MODULE()
212 int i, size = sizeof(filter_list) / sizeof(filter_list_entry); in php_find_filter() local
214 for (i = 0; i < size; ++i) { in php_find_filter()
220 for (i = 0; i < size; ++i) { in php_find_filter()
729 int i, size = sizeof(filter_list) / sizeof(filter_list_entry); in PHP_FUNCTION() local
736 for (i = 0; i < size; ++i) { in PHP_FUNCTION()
747 int size = sizeof(filter_list) / sizeof(filter_list_entry); in PHP_FUNCTION() local
754 for (i = 0; i < size; ++i) { in PHP_FUNCTION()
/php-src/sapi/fpm/fpm/
H A Dzlog.c291 size_t size = stream->buf.size ?: stream->buf_init_size; in zlog_stream_buf_alloc_ex() local
292 size = MIN(zlog_limit, MAX((stream->buf.data ? (size << 1) : size), needed)); in zlog_stream_buf_alloc_ex()
293 buf = realloc(stream->buf.data, size); in zlog_stream_buf_alloc_ex()
300 stream->buf.size = size; in zlog_stream_buf_alloc_ex()
309 if (stream->buf.data && stream->buf.size >= MIN(zlog_limit, stream->buf_init_size)) { in zlog_stream_buf_alloc()
414 if (stream->buf.size - stream->len <= str_len && in zlog_stream_buf_copy_cstr()
428 if (stream->buf.size - stream->len < 1 && !zlog_stream_buf_alloc_ex(stream, 1)) { in zlog_stream_buf_copy_char()
683 stream->buf.data, stream->buf.size, stream->use_syslog); in zlog_stream_prefix_ex()
/php-src/ext/opcache/jit/ir/
H A Dir.h486 uint32_t size; member
787 void *ir_emit_code(ir_ctx *ctx, size_t *size);
803 size_t size,
817 size_t size,
926 return ir_emit_code(ctx, size); in ir_jit_compile()
955 return ir_emit_code(ctx, size); in ir_jit_compile()
995 void *ir_mem_mmap(size_t size);
996 int ir_mem_unmap(void *ptr, size_t size);
997 int ir_mem_protect(void *ptr, size_t size);
998 int ir_mem_unprotect(void *ptr, size_t size);
[all …]
/php-src/ext/gd/tests/
H A Dbug38112.phpt2 Bug #38112 (GIF Invalid Code size ).

Completed in 39 milliseconds

1...<<11121314151617181920>>...31