Home
last modified time | relevance | path

Searched refs:used (Results 1 – 25 of 502) sorted by relevance

12345678910>>...21

/PHP-8.0/Zend/tests/
H A Dclosure_062.phpt8 echo "instance scoped, non-static, \$this used\n";
13 echo "instance scoped, static, \$this used\n";
26 echo "static scoped, non-static, \$this used\n";
31 echo "static scoped, static, \$this used\n";
36 echo "static scoped, static, \$this not used\n";
49 instance scoped, non-static, $this used
52 instance scoped, static, $this used
53 instance scoped, non-static, $this not used
54 static scoped, non-static, $this used
55 static scoped, static, $this used
[all …]
H A Dclass_on_expression_in_constant_expression.phpt2 ::class on an expression cannot be used inside constant expressions
10 Fatal error: (expression)::class cannot be used in constant expressions in %s on line %d
H A Dbug71622.phpt2 Bug #71622 (Strings used in pass-as-reference cannot be used to invoke C::$callable())
/PHP-8.0/sapi/fpm/fpm/
H A Dfpm_arrays.h12 size_t used; member
40 a->used = 0; in fpm_array_init()
58 return fpm_array_item(a, a->used - 1); in fpm_array_item_last()
66 if (n < a->used - 1) { in fpm_array_item_remove()
67 void *last = fpm_array_item(a, a->used - 1); in fpm_array_item_remove()
75 --a->used; in fpm_array_item_remove()
85 if (a->used == a->allocated) { in fpm_array_push()
97 ret = fpm_array_item(a, a->used); in fpm_array_push()
99 ++a->used; in fpm_array_push()
110 a->used = a->allocated = 0; in fpm_array_free()
/PHP-8.0/ext/spl/tests/
H A Dheap_009.phpt2 SPL: SplHeap and friends, throw: An iterator cannot be used with foreach by reference
49 An iterator cannot be used with foreach by reference
50 An iterator cannot be used with foreach by reference
51 An iterator cannot be used with foreach by reference
52 An iterator cannot be used with foreach by reference
53 An iterator cannot be used with foreach by reference
54 An iterator cannot be used with foreach by reference
H A Diterator_069.phpt2 SPL: RecursiveIteratorIterator cannot be used with foreach by reference
17 Fatal error: Uncaught Error: An iterator cannot be used with foreach by reference in %s:%d
/PHP-8.0/ext/phar/tests/zip/
H A Dcorrupt_008.phpt84 phar error: unsupported compression method (Shrunk) used in this zip in zip-based phar "%scompress_…
85 phar error: unsupported compression method (Reduce) used in this zip in zip-based phar "%scompress_…
86 phar error: unsupported compression method (Reduce) used in this zip in zip-based phar "%scompress_…
87 phar error: unsupported compression method (Reduce) used in this zip in zip-based phar "%scompress_…
88 phar error: unsupported compression method (Reduce) used in this zip in zip-based phar "%scompress_…
89 phar error: unsupported compression method (Implode) used in this zip in zip-based phar "%scompress…
90 phar error: unsupported compression method (Tokenize) used in this zip in zip-based phar "%scompres…
91 phar error: unsupported compression method (Deflate64) used in this zip in zip-based phar "%scompre…
93 phar error: unsupported compression method (LZMA) used in this zip in zip-based phar "%scompress_un…
96 phar error: unsupported compression method (WavPack) used in this zip in zip-based phar "%scompress…
[all …]
/PHP-8.0/ext/standard/tests/class_object/
H A Dget_declared_interfaces_variation1.phpt11 echo "\n-- before interface is used --\n";
15 echo "\n-- after interface is used --\n";
24 -- before interface is used --
27 -- after interface is used --
/PHP-8.0/ext/standard/tests/general_functions/
H A Dgetrusage_basic.phpt16 echo "User time used (seconds) " . $dat["ru_utime.tv_sec"] . "\n";
17 echo "User time used (microseconds) " . $dat["ru_utime.tv_usec"] . "\n";
21 User time used (seconds) %d
22 User time used (microseconds) %d
/PHP-8.0/main/
H A Doutput.c816 context->in.used = used; in php_output_context_feed()
830 context->in.used = context->out.used; in php_output_context_swap()
834 context->out.used = 0; in php_output_context_swap()
845 context->out.used = context->in.used; in php_output_context_pass()
849 context->in.used = 0; in php_output_context_pass()
891 if (buf->used) { in php_output_handler_append()
894 if ((handler->buffer.size - handler->buffer.used) <= buf->used) { in php_output_handler_append()
902 memcpy(handler->buffer.data + handler->buffer.used, buf->data, buf->used); in php_output_handler_append()
903 handler->buffer.used += buf->used; in php_output_handler_append()
940 context->in.used in php_output_handler_op()
[all …]
/PHP-8.0/ext/pcre/tests/
H A D005.phpt5 // this file is not used in the cron job
122 [8] => `oci_ping' defined but not used
225 [8] => `nope' defined but not used
330 [8] => `yy_fatal_error' defined but not used
336 [14] => `yy_last_accepting_cpos' defined but not used
339 [17] => `yy_more_flag' defined but not used
342 [20] => `yy_more_len' defined but not used
345 [23] => `yyunput' defined but not used
348 [26] => `yy_top_state' defined but not used
369 [14] => `yyunput' defined but not used
[all …]
/PHP-8.0/Zend/tests/generators/errors/
H A Dyield_outside_function_error.phpt2 Yield cannot be used outside of functions
10 Fatal error: The "yield" expression can only be used inside a function in %s on line %d
/PHP-8.0/Zend/tests/type_declarations/union_types/
H A Dstandalone_false.phpt2 False cannot be used as a standalone type
10 Fatal error: False can not be used as a standalone type in %s on line %d
H A Dstandalone_null.phpt2 Null cannot be used as a standalone type
10 Fatal error: Null can not be used as a standalone type in %s on line %d
H A Dstandalone_nullable_false.phpt2 Nullable false cannot be used as a standalone type
10 Fatal error: False can not be used as a standalone type in %s on line %d
/PHP-8.0/Zend/tests/generators/
H A Dunused_return_value.phpt2 There shouldn't be any leaks when the genertor's return value isn't used
8 gen('foo'); // return value not used
/PHP-8.0/Zend/tests/type_declarations/mixed/syntax/
H A Dmixed_parameter_error1.phpt2 Test that the mixed parameter type can't be used together with any other type
12 Fatal error: Type mixed can only be used as a standalone type in %s on line %d
H A Dmixed_return_error.phpt2 Test that the mixed return type can't be used together with any other type
13 Fatal error: Type mixed can only be used as a standalone type in %s on line %d
/PHP-8.0/ext/mysqli/tests/
H A Dbug55582.phpt2 Bug #55582 mysqli_num_rows() returns always 0 for unbuffered, when mysqlnd is used
37 mysqli_num_rows() cannot be used in MYSQLI_USE_RESULT mode
42 mysqli_num_rows() cannot be used in MYSQLI_USE_RESULT mode
/PHP-8.0/ext/standard/
H A Dmd5.c307 uint32_t used, free; in PHP_MD5Update() local
315 used = saved_lo & 0x3f; in PHP_MD5Update()
317 if (used) { in PHP_MD5Update()
318 free = 64 - used; in PHP_MD5Update()
325 memcpy(&ctx->buffer[used], data, free); in PHP_MD5Update()
341 uint32_t used, free; in PHP_MD5Final() local
343 used = ctx->lo & 0x3f; in PHP_MD5Final()
345 ctx->buffer[used++] = 0x80; in PHP_MD5Final()
347 free = 64 - used; in PHP_MD5Final()
350 memset(&ctx->buffer[used], 0, free); in PHP_MD5Final()
[all …]
/PHP-8.0/ext/phar/tests/
H A Dphar_setalias2.phpt48 alias "test" is already used for archive "%sphar_setalias2.phar.php" and cannot be used for other a…
49 alias "test" is already used for archive "%sphar_setalias2.phar.php" cannot be overloaded with "%sn…
/PHP-8.0/ext/oci8/tests/
H A Derror_bind.phpt55 Warning: oci_execute(): Invalid variable used for bind in %s on line %d
59 Warning: oci_bind_by_name(): Invalid variable used for bind in %s on line %d
61 Warning: oci_execute(): Invalid variable used for bind in %s on line %d
66 Warning: oci_bind_by_name(): Invalid variable used for bind in %s on line %d
H A Dextauth_02.phpt109 Warning: oci_new_connect(): OCI_CRED_EXT can only be used with a username of "/" and a NULL passwor…
114 Warning: oci_new_connect(): OCI_CRED_EXT can only be used with a username of "/" and a NULL passwor…
119 Warning: oci_new_connect(): OCI_CRED_EXT can only be used with a username of "/" and a NULL passwor…
124 Warning: oci_new_connect(): OCI_SYSDBA and OCI_SYSOPER cannot be used together in %s on line %d
129 Warning: oci_new_connect(): OCI_SYSDBA and OCI_SYSOPER cannot be used together in %s on line %d
134 Warning: oci_new_connect(): OCI_CRED_EXT can only be used with a username of "/" and a NULL passwor…
H A Dextauth_03.phpt109 Warning: oci_pconnect(): OCI_CRED_EXT can only be used with a username of "/" and a NULL password i…
114 Warning: oci_pconnect(): OCI_CRED_EXT can only be used with a username of "/" and a NULL password i…
119 Warning: oci_pconnect(): OCI_CRED_EXT can only be used with a username of "/" and a NULL password i…
124 Warning: oci_pconnect(): OCI_SYSDBA and OCI_SYSOPER cannot be used together in %s on line %d
129 Warning: oci_pconnect(): OCI_SYSDBA and OCI_SYSOPER cannot be used together in %s on line %d
134 Warning: oci_pconnect(): OCI_CRED_EXT can only be used with a username of "/" and a NULL password i…
/PHP-8.0/ext/zlib/
H A Dzlib.c195 ctx->buffer.used = 0; in php_zlib_output_handler_ex()
198 if (output_context->in.used) { in php_zlib_output_handler_ex()
208 memcpy(ctx->buffer.data + ctx->buffer.used, output_context->in.data, output_context->in.used); in php_zlib_output_handler_ex()
210 ctx->buffer.used += output_context->in.used; in php_zlib_output_handler_ex()
215 output_context->out.used = 0; in php_zlib_output_handler_ex()
217 ctx->Z.avail_in = ctx->buffer.used; in php_zlib_output_handler_ex()
239 ctx->buffer.used = ctx->Z.avail_in; in php_zlib_output_handler_ex()
445 buffer.used += buffer.free - Z->avail_out; in php_zlib_inflate_rounds()
456 buffer.data[buffer.used] = '\0'; in php_zlib_inflate_rounds()
458 *len = buffer.used; in php_zlib_inflate_rounds()
[all …]

Completed in 67 milliseconds

12345678910>>...21