/PHP-8.1/ext/opcache/tests/jit/ |
H A D | gh11917.phpt | 24 $remaining = 31; 31 $remaining -= $split; 32 $overflow = $split <= $remaining ? 0 : $split - $remaining; 34 if (!$remaining) { 36 $remaining = 31; 41 $digit |= ($val[$i] & $tempmask) << $remaining; 43 $remaining = 31 - $overflow; 44 $overflow = $split <= $remaining ? 0 : $split - $remaining;
|
/PHP-8.1/ext/standard/tests/filters/ |
H A D | filter_errors_user.phpt | 94 Warning: stream_filter_append(): Unprocessed filter buckets remaining on input brigade in %s 99 Warning: stream_get_contents(): Unprocessed filter buckets remaining on input brigade in %s 116 Warning: stream_filter_append(): Unprocessed filter buckets remaining on input brigade in %s 121 Warning: stream_get_contents(): Unprocessed filter buckets remaining on input brigade in %s 126 Warning: stream_filter_append(): Unprocessed filter buckets remaining on input brigade in %s 131 Warning: stream_get_contents(): Unprocessed filter buckets remaining on input brigade in %s 135 Warning: stream_get_contents(): Unprocessed filter buckets remaining on input brigade in %s 146 Warning: stream_get_contents(): Unprocessed filter buckets remaining on input brigade in %s 151 Warning: stream_get_contents(): Unprocessed filter buckets remaining on input brigade in %s 161 Warning: stream_get_contents(): Unprocessed filter buckets remaining on input brigade in %s [all …]
|
/PHP-8.1/sapi/embed/ |
H A D | php_embed.c | 78 size_t remaining = str_length; in php_embed_ub_write() local 81 while (remaining > 0) { in php_embed_ub_write() 82 ret = php_embed_single_write(ptr, remaining); in php_embed_ub_write() 87 remaining -= ret; in php_embed_ub_write()
|
/PHP-8.1/ext/standard/tests/file/ |
H A D | fgets_socket_variation1.phpt | 37 echo "\n\nClose the server side socket and read the remaining data from the client\n"; 61 Close the server side socket and read the remaining data from the client
|
H A D | fgets_socket_variation2.phpt | 53 echo "\nClose the server side socket and read the remaining data from the client\n"; 68 Close the server side socket and read the remaining data from the client
|
/PHP-8.1/tests/classes/ |
H A D | interface_must_be_implemented.phpt | 15 …bstract method and must therefore be declared abstract or implement the remaining methods (if_a::f…
|
H A D | abstract_not_declared.phpt | 13 …bstract method and must therefore be declared abstract or implement the remaining methods (fail::s…
|
H A D | abstract_derived.phpt | 16 …bstract method and must therefore be declared abstract or implement the remaining methods (derived…
|
H A D | abstract_redeclare.phpt | 19 …bstract method and must therefore be declared abstract or implement the remaining methods (fail::s…
|
H A D | abstract_by_interface_001.phpt | 33 …bstract method and must therefore be declared abstract or implement the remaining methods (MyInter…
|
H A D | interfaces_002.phpt | 26 …bstract method and must therefore be declared abstract or implement the remaining methods (Throwab…
|
H A D | abstract_by_interface_002.phpt | 33 …bstract method and must therefore be declared abstract or implement the remaining methods (MyInter…
|
H A D | abstract_static.phpt | 34 …bstract method and must therefore be declared abstract or implement the remaining methods (fail::f…
|
/PHP-8.1/Zend/tests/ |
H A D | errmsg_018.phpt | 13 …bstract method and must therefore be declared abstract or implement the remaining methods (test::f…
|
H A D | bug44414.phpt | 15 …stract methods and must therefore be declared abstract or implement the remaining methods (A::foo,…
|
H A D | include_fail_during_read.phpt | 10 Warning: include(): Unprocessed filter buckets remaining on input brigade in %s on line %d
|
H A D | bug69084.phpt | 29 …bstract method and must therefore be declared abstract or implement the remaining methods (Bar::do…
|
H A D | bug75218.phpt | 2 Bug #75218: Change remaining uncatchable fatal errors for parsing into ParseError
|
/PHP-8.1/ext/standard/tests/streams/ |
H A D | stream_get_meta_data_socket_variation4.phpt | 26 echo "\n\nClose the server side socket and read the remaining data from the client:\n"; 76 Close the server side socket and read the remaining data from the client:
|
H A D | stream_get_meta_data_socket_variation1.phpt | 30 echo "\n\nClose the server side socket and read the remaining data from the client:\n"; 97 Close the server side socket and read the remaining data from the client:
|
/PHP-8.1/Zend/tests/traits/bugs/ |
H A D | abstract-methods01.phpt | 19 …bstract method and must therefore be declared abstract or implement the remaining methods (%s) in …
|
/PHP-8.1/Zend/tests/traits/ |
H A D | interface_002.phpt | 24 …bstract method and must therefore be declared abstract or implement the remaining methods (baz::ab…
|
/PHP-8.1/ext/standard/tests/misc/ |
H A D | time_nanosleep_basic.phpt | 21 echo "Time remaining: $seconds seconds, $nanoseconds nanoseconds.";
|
/PHP-8.1/ext/mbstring/tests/ |
H A D | encoding_tests.inc | 192 …$fixedLength = function($prefix, $remaining) use($valid, $prefixes, &$invalid, &$truncated, &$fixe… 193 if ($remaining == 0) { 196 } else if ($remaining == 1) { 206 $fixedLength($prefix . chr($i), $remaining - 1);
|
/PHP-8.1/sapi/cgi/ |
H A D | cgi_main.c | 309 size_t remaining = str_length; in sapi_cgi_ub_write() local 312 while (remaining > 0) { in sapi_cgi_ub_write() 316 return str_length - remaining; in sapi_cgi_ub_write() 319 remaining -= ret; in sapi_cgi_ub_write() 328 size_t remaining = str_length; in sapi_fcgi_ub_write() local 331 while (remaining > 0) { in sapi_fcgi_ub_write() 332 int to_write = remaining > INT_MAX ? INT_MAX : (int)remaining; in sapi_fcgi_ub_write() 337 return str_length - remaining; in sapi_fcgi_ub_write() 340 remaining -= ret; in sapi_fcgi_ub_write() 509 if (remaining < count_bytes) { in sapi_fcgi_read_post() [all …]
|