Home
last modified time | relevance | path

Searched refs:remaining (Results 1 – 25 of 35) sorted by relevance

12

/php-src/ext/opcache/tests/jit/
H A Dgh11917.phpt24 $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-src/ext/dom/lexbor/lexbor/core/
H A Dstrtod.c42 int *remaining);
85 lexbor_strtod_diyfp_read(const lxb_char_t *start, size_t length, int *remaining) in lexbor_strtod_diyfp_read() argument
100 *remaining = (int) (length - read); in lexbor_strtod_diyfp_read()
162 int remaining, dec_exp, adj_exp, orig_e, shift; in lexbor_strtod_diyfp_strtod() local
167 value = lexbor_strtod_diyfp_read(start, length, &remaining); in lexbor_strtod_diyfp_strtod()
169 exp += remaining; in lexbor_strtod_diyfp_strtod()
178 error = (remaining == 0 ? 0 : LEXBOR_DENOM / 2); in lexbor_strtod_diyfp_strtod()
/php-src/ext/standard/tests/filters/
H A Dfilter_errors_user.phpt94 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-src/sapi/embed/
H A Dphp_embed.c78 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-src/ext/standard/tests/file/
H A Dfgets_socket_variation1.phpt37 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 Dfgets_socket_variation2.phpt53 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-src/tests/classes/
H A Dinterface_must_be_implemented.phpt15 …bstract method and must therefore be declared abstract or implement the remaining methods (if_a::f…
H A Dabstract_not_declared.phpt13 …bstract method and must therefore be declared abstract or implement the remaining methods (fail::s…
H A Dabstract_derived.phpt16 …bstract method and must therefore be declared abstract or implement the remaining methods (derived…
H A Dabstract_redeclare.phpt19 …bstract method and must therefore be declared abstract or implement the remaining methods (fail::s…
H A Dabstract_by_interface_001.phpt33 …bstract method and must therefore be declared abstract or implement the remaining methods (MyInter…
H A Dinterfaces_002.phpt26 …bstract method and must therefore be declared abstract or implement the remaining methods (Throwab…
H A Dabstract_by_interface_002.phpt33 …bstract method and must therefore be declared abstract or implement the remaining methods (MyInter…
H A Dabstract_static.phpt34 …bstract method and must therefore be declared abstract or implement the remaining methods (fail::f…
/php-src/Zend/tests/
H A Derrmsg_018.phpt13 …bstract method and must therefore be declared abstract or implement the remaining methods (test::f…
H A Dbug44414.phpt15 …stract methods and must therefore be declared abstract or implement the remaining methods (A::foo,…
H A Dinclude_fail_during_read.phpt10 Warning: include(): Unprocessed filter buckets remaining on input brigade in %s on line %d
H A Dbug69084.phpt29 …bstract method and must therefore be declared abstract or implement the remaining methods (Bar::do…
H A Dbug75218.phpt2 Bug #75218: Change remaining uncatchable fatal errors for parsing into ParseError
/php-src/ext/standard/tests/streams/
H A Dstream_get_meta_data_socket_variation4.phpt26 echo "\n\nClose the server side socket and read the remaining data from the client:\n";
80 Close the server side socket and read the remaining data from the client:
H A Dstream_get_meta_data_socket_variation1.phpt30 echo "\n\nClose the server side socket and read the remaining data from the client:\n";
103 Close the server side socket and read the remaining data from the client:
/php-src/Zend/tests/traits/bugs/
H A Dabstract-methods01.phpt19 …bstract method and must therefore be declared abstract or implement the remaining methods (%s) in …
/php-src/Zend/tests/traits/
H A Dinterface_002.phpt24 …bstract method and must therefore be declared abstract or implement the remaining methods (baz::ab…
/php-src/ext/standard/tests/misc/
H A Dtime_nanosleep_basic.phpt21 echo "Time remaining: $seconds seconds, $nanoseconds nanoseconds.";
/php-src/sapi/cgi/
H A Dcgi_main.c310 size_t remaining = str_length; in sapi_cgi_ub_write() local
313 while (remaining > 0) { in sapi_cgi_ub_write()
317 return str_length - remaining; in sapi_cgi_ub_write()
320 remaining -= ret; in sapi_cgi_ub_write()
329 size_t remaining = str_length; in sapi_fcgi_ub_write() local
332 while (remaining > 0) { in sapi_fcgi_ub_write()
333 int to_write = remaining > INT_MAX ? INT_MAX : (int)remaining; in sapi_fcgi_ub_write()
338 return str_length - remaining; in sapi_fcgi_ub_write()
341 remaining -= ret; in sapi_fcgi_ub_write()
510 if (remaining < count_bytes) { in sapi_fcgi_read_post()
[all …]

Completed in 45 milliseconds

12