Home
last modified time | relevance | path

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

12345678910>>...23

/PHP-7.3/ext/standard/tests/general_functions/
H A Dgetrusage_variation1.phpt81 User time used (microseconds) %d
84 User time used (microseconds) %d
87 User time used (microseconds) %d
90 User time used (microseconds) %d
93 User time used (microseconds) %d
96 User time used (microseconds) %d
99 User time used (microseconds) %d
102 User time used (microseconds) %d
105 User time used (microseconds) %d
108 User time used (microseconds) %d
[all …]
H A Dgetrusage_basic.phpt22 echo "User time used (seconds) " . $dat["ru_utime.tv_sec"] . "\n";
23 echo "User time used (microseconds) " . $dat["ru_utime.tv_usec"] . "\n";
28 User time used (seconds) %d
29 User time used (microseconds) %d
/PHP-7.3/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-7.3/ext/spl/tests/
H A Dheap_009.phpt2 SPL: SplHeap and friends, throw: 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
55 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 RuntimeException: An iterator cannot be used with foreach by reference in %s:…
/PHP-7.3/ext/phar/tests/zip/
H A Dcorrupt_008.phpt85 phar error: unsupported compression method (Shrunk) 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 (Reduce) used in this zip in zip-based phar "%scompress_…
90 phar error: unsupported compression method (Implode) used in this zip in zip-based phar "%scompress…
91 phar error: unsupported compression method (Tokenize) used in this zip in zip-based phar "%scompres…
92 phar error: unsupported compression method (Deflate64) used in this zip in zip-based phar "%scompre…
94 phar error: unsupported compression method (LZMA) used in this zip in zip-based phar "%scompress_un…
97 phar error: unsupported compression method (WavPack) used in this zip in zip-based phar "%scompress…
[all …]
/PHP-7.3/build/
H A Dmkdep.awk52 for (e in used)
53 delete used[e]
61 if (substr($3,2,1) != "/" && used[$3] != 1) {
66 used[$3] = 1;
/PHP-7.3/ext/standard/tests/class_object/
H A Dget_declared_interfaces_variation1.phpt18 echo "\n-- before interface is used --\n";
22 echo "\n-- after interface is used --\n";
31 -- before interface is used --
34 -- after interface is used --
/PHP-7.3/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-7.3/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-7.3/ext/mbstring/oniguruma/src/
H A Dregint.h353 unsigned int used; member
384 int used = (pos) + (n);\
385 if ((buf)->alloc < (unsigned int )used) BB_EXPAND((buf),used);\
387 if ((buf)->used < (unsigned int )used) (buf)->used = used;\
391 int used = (pos) + 1;\
392 if ((buf)->alloc < (unsigned int )used) BB_EXPAND((buf),used);\
394 if ((buf)->used < (unsigned int )used) (buf)->used = used;\
400 #define BB_GET_OFFSET_POS(buf) ((buf)->used)
406 if ((unsigned int )((to)+(n)) > (buf)->used) (buf)->used = (to) + (n);\
417 (buf)->used -= (from - to);\
[all …]
/PHP-7.3/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-7.3/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-7.3/ext/spl/internal/
H A Drecursivetreeiterator.inc41 /** Prefix used to start elements. */
43 /** Prefix used if $level < depth and hasNext($level) == true. */
45 /** Prefix used if $level < depth and hasNext($level) == false. */
47 /** Prefix used if $level == depth and hasNext($level) == true. */
49 /** Prefix used if $level == depth and hasNext($level) == false. */
51 /** Prefix used right in front of the current element. */
55 * Set prefix part as used in getPrefix() and stored in $prefix.
/PHP-7.3/ext/mysqli/tests/
H A Dbug55582.phpt2 Bug #55582 mysqli_num_rows() returns always 0 for unbuffered, when mysqlnd is used
30 Warning: mysqli_num_rows(): Function cannot be used with MYSQL_USE_RESULT in %s on line %d
37 Warning: mysqli_num_rows(): Function cannot be used with MYSQL_USE_RESULT in %s on line %d
/PHP-7.3/Zend/tests/
H A Dbug71622.phpt2 Bug #71622 (Strings used in pass-as-reference cannot be used to invoke C::$callable())
/PHP-7.3/ext/standard/
H A Dmd5.c310 uint32_t used, free; in PHP_MD5Update() local
318 used = saved_lo & 0x3f; in PHP_MD5Update()
320 if (used) { in PHP_MD5Update()
321 free = 64 - used; in PHP_MD5Update()
328 memcpy(&ctx->buffer[used], data, free); in PHP_MD5Update()
344 uint32_t used, free; in PHP_MD5Final() local
346 used = ctx->lo & 0x3f; in PHP_MD5Final()
348 ctx->buffer[used++] = 0x80; in PHP_MD5Final()
350 free = 64 - used; in PHP_MD5Final()
353 memset(&ctx->buffer[used], 0, free); in PHP_MD5Final()
[all …]
/PHP-7.3/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.phpt113 Warning: oci_new_connect(): OCI_CRED_EXT can only be used with a username of "/" and a NULL passwor…
118 Warning: oci_new_connect(): OCI_CRED_EXT can only be used with a username of "/" and a NULL passwor…
123 Warning: oci_new_connect(): OCI_CRED_EXT can only be used with a username of "/" and a NULL passwor…
128 Warning: oci_new_connect(): OCI_SYSDBA and OCI_SYSOPER cannot be used together in %s on line %d
133 Warning: oci_new_connect(): OCI_SYSDBA and OCI_SYSOPER cannot be used together in %s on line %d
138 Warning: oci_new_connect(): OCI_CRED_EXT can only be used with a username of "/" and a NULL passwor…
H A Dextauth_03.phpt113 Warning: oci_pconnect(): OCI_CRED_EXT can only be used with a username of "/" and a NULL password i…
118 Warning: oci_pconnect(): OCI_CRED_EXT can only be used with a username of "/" and a NULL password i…
123 Warning: oci_pconnect(): OCI_CRED_EXT can only be used with a username of "/" and a NULL password i…
128 Warning: oci_pconnect(): OCI_SYSDBA and OCI_SYSOPER cannot be used together in %s on line %d
133 Warning: oci_pconnect(): OCI_SYSDBA and OCI_SYSOPER cannot be used together in %s on line %d
138 Warning: oci_pconnect(): OCI_CRED_EXT can only be used with a username of "/" and a NULL password i…
/PHP-7.3/ext/phar/tests/
H A Dphar_setalias2.phpt49 alias "test" is already used for archive "%sphar_setalias2.phar.php" and cannot be used for other a…
50 alias "test" is already used for archive "%sphar_setalias2.phar.php" cannot be overloaded with "%sn…
/PHP-7.3/ext/spl/examples/
H A Dkeyfilter.inc24 /** @internal regular exoression used as filter */
33 * @param regex Regular expression used as a filter.
48 /** @return regular expression used as filter
/PHP-7.3/ext/zlib/
H A Dzlib.c145 ctx->buffer.used = 0; in php_zlib_output_handler_ex()
148 if (output_context->in.used) { in php_zlib_output_handler_ex()
158 memcpy(ctx->buffer.data + ctx->buffer.used, output_context->in.data, output_context->in.used); in php_zlib_output_handler_ex()
160 ctx->buffer.used += output_context->in.used; in php_zlib_output_handler_ex()
165 output_context->out.used = 0; in php_zlib_output_handler_ex()
167 ctx->Z.avail_in = ctx->buffer.used; in php_zlib_output_handler_ex()
189 ctx->buffer.used = ctx->Z.avail_in; in php_zlib_output_handler_ex()
395 buffer.used += buffer.free - Z->avail_out; in php_zlib_inflate_rounds()
406 buffer.data[buffer.used] = '\0'; in php_zlib_inflate_rounds()
408 *len = buffer.used; in php_zlib_inflate_rounds()
[all …]
/PHP-7.3/ext/ldap/tests/
H A DREADME76 OpenLDAP 2.4.31 has been used with the configuration below.
81 …It is used for testing ldap_start_tls(), which also requires "TLS_REQCERT never" in client configu…
94 # hdb is used instead of bdb as it enables the usage of referrals & aliases
117 … to use. May be the ldap root or a subtree. (ldap_search_variation6 will fail if a subtree is used)
118 LDAP_TEST_USER (default: cn=Manager,dc=my-domain,dc=com) DN used for binding
119 LDAP_TEST_SASL_USER (default: Manager) SASL user used for SASL binding
120 LDAP_TEST_PASSWD (default: secret) Password used for plain and SASL binding
/PHP-7.3/ext/mbstring/oniguruma/doc/
H A DCALLOUTS.BUILTIN34 If 'n' type is tag, slot 0 value of the tag are used.
60 ** If option ONIG_OPTION_FIND_LONGEST or ONIG_OPTION_FIND_NOT_EMPTY is used,
77 ** If option ONIG_OPTION_FIND_LONGEST or ONIG_OPTION_FIND_NOT_EMPTY is used,
86 If x and y types are tag, slot 0 value of the tag are used.

Completed in 145 milliseconds

12345678910>>...23