Home
last modified time | relevance | path

Searched refs:out (Results 76 – 100 of 437) sorted by relevance

12345678910>>...18

/PHP-8.0/ext/standard/tests/streams/
H A Dbug47997.phpt9 $out = fopen('php://memory', 'wb+');
11 var_dump(stream_copy_to_stream($in, $out));
/PHP-8.0/ext/gd/libgd/
H A Dwebpng.c23 FILE *out; in main() local
248 out = stdout; in main()
256 out = fopen (outFn, "wb"); in main()
258 if (!out) in main()
267 gdImagePng (im, out); in main()
271 fclose (out); in main()
/PHP-8.0/ext/standard/tests/serialize/
H A Dbug70172.phpt35 $out = '';
37 $out .= chr($ptr & 0xff);
40 return $out;
H A Dbug70172_2.phpt42 $out = '';
44 $out .= chr($ptr & 0xff);
47 return $out;
H A Dbug70436.phpt37 $out = '';
40 $out .= chr($ptr & 0xff);
44 return $out;
/PHP-8.0/ext/opcache/jit/dynasm/
H A Ddasm_ppc.lua75 out:write("\n")
154 out:write("\n")
161 out:write("enum {\n")
200 out:write("\n")
1761 wline(function(out) writeactions(out, name) end) function
1768 wline(function(out) writeglobals(out, prefix) end) function
1775 wline(function(out) writeglobalnames(out, name) end) function
1782 wline(function(out) writeexternnames(out, name) end) function
1869 out:write("\n")
1886 dumpactions(out)
[all …]
H A Ddasm_x86.lua116 out:write("\n")
223 out:write("\n")
269 out:write("\n")
412 out:write("\n")
2126 wline(function(out) writeactions(out, name) end) function
2133 wline(function(out) writeglobals(out, prefix) end) function
2140 wline(function(out) writeglobalnames(out, name) end) function
2147 wline(function(out) writeexternnames(out, name) end) function
2260 out:write("\n")
2278 dumpregs(out)
[all …]
/PHP-8.0/ext/standard/tests/file/
H A Dstream_copy_to_stream_empty.phpt10 $out = fopen('php://memory', 'w');
11 var_dump(stream_copy_to_stream($in, $out));
H A Dfread_fwrite_basic.phpt37 $out = "extra";
38 fwrite($h, $out);
42 fseek($h, -strlen($out) + 1, SEEK_CUR);
43 echo "last bytes: ".fread($h, strlen($out))."\n";
/PHP-8.0/Zend/tests/
H A Dbug71529.phpt7 $a[] = &$a[out(count($a) - 1)];
10 function out($what) {
/PHP-8.0/ext/mbstring/tests/
H A Dmb_strimwidth.phpt55 mb_strimwidth(): Argument #3 ($width) is out of range
56 mb_strimwidth(): Argument #2 ($start) is out of range
57 mb_strimwidth(): Argument #2 ($start) is out of range
58 mb_strimwidth(): Argument #3 ($width) is out of range
/PHP-8.0/ext/fileinfo/libmagic/
H A Dcdf.c353 out: in cdf_read()
385 out: in cdf_read_header()
427 out: in cdf_read_short_sector()
509 out: in cdf_read_sat()
555 out: in cdf_count_chain()
604 out: in cdf_read_long_sector_chain()
646 out: in cdf_read_short_sector_chain()
711 out: in cdf_read_dir()
755 out: in cdf_read_ssat()
791 out: in cdf_read_short_stream()
[all …]
/PHP-8.0/tests/output/
H A Dob_start_callbacks.phpt14 static function out($foo) {
18 $a = array('foo', 'out');
24 ob_start(array('foo', 'out'));
/PHP-8.0/ext/standard/tests/filters/
H A Dbug35916.phpt10 function filter($in, $out, &$consumed, $closing)
15 stream_bucket_append($out, $bucket);
16 stream_bucket_append($out, $bucket);
H A Dbug46164-1.phpt6 function filter($in, $out, &$consumed, $closing) {
9 stream_bucket_append($out, $bucket);
/PHP-8.0/ext/spl/tests/
H A Dbug70365.phpt28 $out = '';
30 $out .= chr($ptr & 0xff);
33 return $out;
H A Dbug70366.phpt28 $out = '';
30 $out .= chr($ptr & 0xff);
33 return $out;
H A Dheap_003.phpt26 foreach ($h as $out) {
27 echo $out."\n";
/PHP-8.0/ext/filter/tests/
H A Dbug7733.phpt14 $out = filter_var($data, FILTER_VALIDATE_FLOAT, FILTER_REQUIRE_ARRAY);
15 var_dump($out);
/PHP-8.0/Zend/tests/try/
H A Dtry_finally_018.phpt10 goto out;
15 out: ;
/PHP-8.0/ext/phar/tests/
H A Dmounteddir.phpt48 $out = array();
50 $out[] = $b;
52 sort($out);
53 foreach ($out as $b) {
56 $out = array();
58 $out[] = $b->getPathName();
60 sort($out);
61 foreach ($out as $b) {
H A Dbug54289.phpt16 // we should be able to pull out a directory that's there, but none that share
18 $outDir = $base.'out';
25 // should also not be able to pull out non-existent ones
32 // should also not be able to pull out /, because paths are not "rooted" that way
57 $outDir = $base.'out';
/PHP-8.0/ext/gmp/tests/
H A Dbug70284.phpt28 $out = '';
30 $out .= chr($ptr & 0xff);
33 return $out;
/PHP-8.0/Zend/
H A Dzend_gdb.c132 char out[1024]; in zend_gdb_present() local
134 if (readlink(buf, out, sizeof(out) - 1) > 0) { in zend_gdb_present()
135 if (strstr(out, "gdb")) { in zend_gdb_present()
/PHP-8.0/ext/iconv/
H A Diconv.c334 if (out) { in php_iconv_output_handler()
335 output_context->out.data = estrndup(ZSTR_VAL(out), ZSTR_LEN(out)); in php_iconv_output_handler()
336 output_context->out.used = ZSTR_LEN(out); in php_iconv_output_handler()
440 *out = NULL; in php_iconv_string()
935 goto out; in _php_iconv_mime_encode()
945 goto out; in _php_iconv_mime_encode()
955 goto out; in _php_iconv_mime_encode()
1168 out: in _php_iconv_mime_encode()
1216 goto out; in _php_iconv_mime_decode()
1714 goto out; in _php_iconv_mime_decode()
[all …]

Completed in 106 milliseconds

12345678910>>...18