Home
last modified time | relevance | path

Searched refs:size (Results 126 – 150 of 775) sorted by relevance

12345678910>>...31

/php-src/sapi/phpdbg/
H A Dphpdbg_sigsafe.c9 static void* zend_mm_mem_alloc(zend_mm_storage *storage, size_t size, size_t alignment) { in ZEND_EXTERN_MODULE_GLOBALS()
11 if (EXPECTED(size <= PHPDBG_SIGSAFE_MEM_SIZE && !PHPDBG_G(sigsafe_mem).allocated)) { in ZEND_EXTERN_MODULE_GLOBALS()
27 static void zend_mm_mem_free(zend_mm_storage *storage, void *ptr, size_t size) { in zend_mm_mem_free() argument
H A Dphpdbg_win.c22 int mprotect(void *addr, size_t size, int protection) { in mprotect() argument
24 …return (int)VirtualProtect(addr, size, protection == (PROT_READ | PROT_WRITE) ? PAGE_READWRITE : P… in mprotect()
/php-src/ext/pcre/pcre2lib/sljit/
H A DsljitNativeX86_64.c88 size &= 0xf; in emit_x86_instruction()
148 size++; in emit_x86_instruction()
295 sljit_uw size; in emit_vex_instruction() local
460 sljit_uw size; in sljit_emit_enter() local
491 INC_SIZE(size); in sljit_emit_enter()
501 INC_SIZE(size); in sljit_emit_enter()
663 sljit_uw size; in emit_stack_frame_release() local
1271 sljit_u32 size; in sljit_emit_fset() local
1286 INC_SIZE(size); in sljit_emit_fset()
1350 sljit_u32 size; in sljit_emit_fcopy() local
[all …]
/php-src/ext/dom/lexbor/lexbor/core/
H A Dprint.h29 lexbor_sprintf(lxb_char_t *dst, size_t size, const char *format, ...);
32 lexbor_vsprintf(lxb_char_t *dst, size_t size, const char *format, va_list va);
H A Darray.h19 size_t size; member
29 lexbor_array_init(lexbor_array_t *array, size_t size);
80 return array->size; in lexbor_array_size()
/php-src/ext/dom/lexbor/lexbor/html/interfaces/
H A Delement.h50 const lxb_char_t *html, size_t size);
54 const lxb_char_t *name, size_t size);
64 const lxb_char_t *name, size_t size);
76 const lxb_char_t *style, size_t size);
93 const lxb_char_t *name, size_t size);
/php-src/tests/basic/
H A Drfc1867_max_file_uploads_empty_files.phpt54 ["size"]=>
69 ["size"]=>
84 ["size"]=>
99 ["size"]=>
/php-src/ext/standard/tests/array/
H A Darray_chunk_variation4.phpt11 $size = 2;
21 var_dump( array_chunk($input_array, $size) );
24 var_dump( array_chunk($input_array, $size, true) );
27 var_dump( array_chunk($input_array, $size, false) );
/php-src/ext/standard/tests/file/
H A Dstat_variation8-win32.phpt26 echo "\n*** Testing stat(): on file by truncating it to given size ***\n";
50 $affected_members = array(7, 9, 'size', 'mtime');
54 clearstatcache(true, $filename); // clear previous size value in cache
64 *** Testing stat(): on file by truncating it to given size ***
H A Dftruncate_error.phpt11 echo "\n Initial file size = ".filesize($filename)."\n";
23 // check the first size
36 Initial file size = 36
/php-src/Zend/
H A Dzend_gdb.c62 ZEND_API bool zend_gdb_register_code(const void *object, size_t size) in zend_gdb_register_code() argument
66 entry = malloc(sizeof(zend_gdbjit_code_entry) + size); in zend_gdb_register_code()
72 entry->symfile_size = size; in zend_gdb_register_code()
74 memcpy((char *)entry->symfile_addr, object, size); in zend_gdb_register_code()
H A Dzend_system_id.c29 …d_add_system_entropy(const char *module_name, const char *hook_name, const void *data, size_t size) in zend_add_system_entropy() argument
34 if (size) { in zend_add_system_entropy()
35 PHP_MD5Update(&context, data, size); in zend_add_system_entropy()
/php-src/ext/dba/
H A Ddba_db3.c124 gkey.size = ZSTR_LEN(key);
128 return zend_string_init(gval.data, gval.size, /* persistent */ false);
141 gkey.size = ZSTR_LEN(key);
145 gval.size = ZSTR_LEN(val);
162 gkey.size = ZSTR_LEN(key);
178 gkey.size = ZSTR_LEN(key);
209 return zend_string_init(gkey.data, gkey.size, /* persistent */ false);
/php-src/ext/shmop/
H A Dshmop.stub.php11 function shmop_open(int $key, string $mode, int $permissions, int $size): Shmop|false {} argument
13 function shmop_read(Shmop $shmop, int $offset, int $size): string {} argument
/php-src/ext/gd/libgd/
H A Dbmp.h55 int size; member
92 signed int size; member
H A Dgdcache.h64 int size; member
74 int size,
/php-src/Zend/tests/fibers/
H A Dgh10249.phpt2 GH-10249 (Assertion `size >= page_size + 1 * page_size' failed.)
17 Fiber stack size is too small, it needs to be at least %d bytes
/php-src/win32/
H A Dsockets.c31 int size = sizeof(address); in socketpair_win32() local
53 if (getsockname(sock[0], (struct sockaddr *) &address, &size) != 0) { in socketpair_win32()
76 redirect = accept(sock[0], (struct sockaddr *) &address, &size); in socketpair_win32()
/php-src/ext/tidy/tests/
H A D007.phpt14 echo "Current Value of 'tab-size': ";
15 var_dump($a->getopt("tab-size"));
33 Current Value of 'tab-size': int(8)
/php-src/ext/phar/
H A Dpharzip.h135 char size[2]; member
140 char size[2]; /* TSize Short total data size for this block */ member
182 char size[2]; /* size of data 2 bytes */ member
/php-src/Zend/tests/stack_limit/
H A Dstack_limit_002.phpt81 Maximum call stack size of %d bytes (zend.max_allowed_stack_size - zend.reserved_stack_size) reache…
82 Maximum call stack size of %d bytes (zend.max_allowed_stack_size - zend.reserved_stack_size) reache…
83 Maximum call stack size of %d bytes (zend.max_allowed_stack_size - zend.reserved_stack_size) reache…
84 Maximum call stack size of %d bytes (zend.max_allowed_stack_size - zend.reserved_stack_size) reache…
/php-src/ext/ftp/
H A Dftp.c120 socklen_t size; in ftp_open() local
1283 int size; in ftp_putcmd() local
1313 if (my_send(ftp, ftp->fd, data, size) != size) { in ftp_putcmd()
1338 size -= rcvd; in ftp_readline()
1366 } while (size); in ftp_readline()
1475 size = len; in my_send()
1476 while (size) { in my_send()
1498 size -= sent; in my_send()
1663 socklen_t size; in ftp_getdata() local
2044 size = 0; in ftp_genlist()
[all …]
/php-src/ext/standard/tests/filters/
H A Dbug22538.phpt11 $size = 65536;
21 $cnt = $size;
25 $cnt = $size - ($str_len + $cnt);
/php-src/ext/opcache/jit/ir/
H A Dir_elf.h46 uintptr_t size; member
75 uint64_t size; member
79 uint32_t size;
/php-src/ext/shmop/tests/
H A D002.phpt28 // Shared memory segment size must be greater than zero
35 //Shared memory segment size must be greater than zero
80 shmop_open(): Argument #4 ($size) must be greater than 0 for the "c" and "n" access modes
83 shmop_read(): Argument #2 ($offset) must be between 0 and the segment size
84 shmop_read(): Argument #3 ($size) is out of range

Completed in 60 milliseconds

12345678910>>...31