Home
last modified time | relevance | path

Searched refs:out (Results 51 – 75 of 491) sorted by relevance

12345678910>>...20

/php-src/ext/snmp/tests/
H A Dbug72479.phpt13 $out = unserialize($poc);
24 var_dump($out[1]);
28 $out = '';
30 $out .= chr($ptr & 0xff);
33 return $out;
/php-src/ext/gd/libgd/
H A Dwbmp.h43 void putmbi( int i, void (*putout)(int c, void *out), void *out);
48 int writewbmp( Wbmp *wbmp, void (*putout)( int c, void *out), void *out);
H A Dgd_gd2.c656 gdPutWord(im->sx, out); in _gd2PutHeader()
657 gdPutWord(im->sy, out); in _gd2PutHeader()
658 gdPutWord(cs, out); in _gd2PutHeader()
659 gdPutWord(fmt, out); in _gd2PutHeader()
660 gdPutWord(cx, out); in _gd2PutHeader()
661 gdPutWord(cy, out); in _gd2PutHeader()
728 idxPos = gdTell(out); in _gdImageGd2()
809 gdSeek(out, idxPos); in _gdImageGd2()
816 gdSeek(out, posSave); in _gdImageGd2()
838 out->gd_free(out); in gdImageGd2()
[all …]
H A Dtestac.c21 FILE *out; in main() local
79 FILE *out; in testDrawing() local
110 out = fopen (filename, "wb"); in testDrawing()
125 gdImagePng (im_out, out); in testDrawing()
126 fclose (out); in testDrawing()
/php-src/ext/standard/tests/filters/
H A Dbug73586.phpt7 function filter($in, $out, &$consumed, $closing): int {
10 stream_bucket_append($out, $bucket);
14 stream_bucket_append($out, $bucket);
28 function filter($in, $out, &$consumed, $closing): int {
31 stream_bucket_append($out, $bucket);
35 stream_bucket_append($out, $bucket);
H A Dphp_user_filter_01.phpt6 function filter($in, $out, &$consumed, $closing): int {}
11 function filter($in, $out, &$consumed): int {}
17 …or: Declaration of bar::filter($in, $out, &$consumed): int must be compatible with php_user_filter…
/php-src/ext/hash/murmur/
H A DPMurHash128.h32 …x64_Result(const uint64_t ph[2], const uint64_t pcarry[2], uint32_t total_length, uint64_t out[2]);
33 void PMurHash128x64(const void * key, const int len, uint32_t seed, void * out);
37 …x86_Result(const uint32_t ph[4], const uint32_t pcarry[4], uint32_t total_length, uint32_t out[4]);
38 void PMurHash128x86(const void * key, const int len, uint32_t seed, void * out);
/php-src/ext/opcache/jit/ir/dynasm/
H A Ddynasm.lua104 line(out)
251 out:write("\n")
486 out:write("\n")
489 out:write("\n")
546 wline(function(out)
567 out:write("\n")
614 out:write("\n")
655 local out = stdout
659 g_arch.dumparch(out)
689 out:write("\n")
[all …]
H A Ddasm_arm.lua73 out:write("\n")
156 out:write("\n")
163 out:write("enum {\n")
202 out:write("\n")
955 wline(function(out) writeactions(out, name) end) function
962 wline(function(out) writeglobals(out, prefix) end) function
969 wline(function(out) writeglobalnames(out, name) end) function
976 wline(function(out) writeexternnames(out, name) end) function
1063 out:write("\n")
1080 dumpactions(out)
[all …]
H A Ddasm_arm64.lua75 out:write("\n")
158 out:write("\n")
165 out:write("enum {\n")
204 out:write("\n")
1041 wline(function(out) writeactions(out, name) end) function
1048 wline(function(out) writeglobals(out, prefix) end) function
1055 wline(function(out) writeglobalnames(out, name) end) function
1062 wline(function(out) writeexternnames(out, name) end) function
1176 out:write("\n")
1193 dumpactions(out)
[all …]
/php-src/ext/standard/tests/file/
H A Dbug26615.phpt7 $out = array();
10 …BLE_ESCAPED'].' -n -r \'for($i=1;$i<=5000;$i++) print "$i\n";\' | tr \'\n\' \' \'', $out, $status);
12 …V['TEST_PHP_EXECUTABLE_ESCAPED'].' -n -r "for($i=1;$i<=5000;$i++) echo $i,\' \';"', $out, $status);
14 print_r($out);
H A Dbug26938.phpt5 $out = array();
14 . '}\'', $out, $status);
21 . '}"', $out, $status);
24 print "md5(line $i)= " . md5($out[$i]) . " (length " .
25 strlen($out[$i]) . ")\n";
/php-src/ext/gd/tests/
H A Dimagegammacorrect_variation2.phpt19 function test_gamma_both($in, $out)
21 test_gamma($in, $out, 'imagecreate');
22 test_gamma($in, $out, 'imagecreatetruecolor');
25 function test_gamma($in, $out, $constructor)
34 imagegammacorrect($im, $in, $out);
37 . "imagegammacorrect_variation2_{$in}_{$out}.png";
39 echo "$kind gamma ($in, $out): ";
/php-src/ext/intl/tests/
H A Dbug72241.phpt2 Bug #72241: get_icu_value_internal out-of-bounds read
8 $out = locale_get_primary_language($var1);
9 var_dump($out);
/php-src/Zend/tests/
H A Dlsb_024.phpt9 public static function out() {
19 A::out();
20 B::out();
21 C::out();
H A Dlsb_023.phpt7 public static function out() {
19 A::out();
20 B::out();
21 C::out();
/php-src/ext/filter/tests/
H A D030.phpt53 $out = filter_var($ip, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6);
54 $out = $out !== false;
55 if ($exp != $out) {
57 $out?"true":"false", ")\n";
/php-src/ext/standard/
H A Dbase64.c113 out += 64; in neon_base64_encode()
119 return out; in neon_base64_encode()
128 out = neon_base64_encode(in, inl, out, &left); in php_base64_encode_impl()
162 *out = '\0'; in php_base64_encode_impl()
164 return out; in php_base64_encode_impl()
241 out += 16 * 3; in neon_base64_decode()
246 return out - out_orig; in neon_base64_decode()
292 out[j] = ch << 2; in php_base64_decode_impl()
303 out[j++] |= ch; in php_base64_decode_impl()
321 out[j] = '\0'; in php_base64_decode_impl()
[all …]
/php-src/ext/standard/tests/streams/
H A Dbug76859.phpt13 $out = '';
15 $out .= stream_get_line($fh, 1024);
20 echo strlen($out) . "\n";
/php-src/ext/standard/tests/mail/
H A Dbug47983.phpt4 sendmail_path={MAIL:bug47983.out}
8 $mail = file_get_contents('bug47983.out');
13 unlink('bug47983.out');
/php-src/ext/soap/
H A Dphp_sdl.c1814 WSDL_CACHE_PUT_INT(0,out); in sdl_serialize_type_ref()
1883 WSDL_CACHE_PUT_1(1, out); in sdl_serialize_resriction_int()
1887 WSDL_CACHE_PUT_1(0, out); in sdl_serialize_resriction_int()
1894 WSDL_CACHE_PUT_1(1, out); in sdl_serialize_resriction_char()
1898 WSDL_CACHE_PUT_1(0, out); in sdl_serialize_resriction_char()
1918 WSDL_CACHE_PUT_1(1, out); in sdl_serialize_type()
1946 WSDL_CACHE_PUT_1(0, out); in sdl_serialize_type()
1987 WSDL_CACHE_PUT_1(1, out); in sdl_serialize_type()
1990 WSDL_CACHE_PUT_1(0, out); in sdl_serialize_type()
2088 smart_str *out = &buf; in add_sdl_to_cache() local
[all …]
/php-src/ext/mbstring/tests/
H A Dmb_stripos_empty_needle.phpt23 echo "\n-- ASCII string with out of bound positive offset --\n";
30 echo "\n-- ASCII string with out of bound negative offset --\n";
47 echo "\n-- Multi-byte string with out of bound positive offset --\n";
54 echo "\n-- Multi-byte string with out of bound negative offset --\n";
72 -- ASCII string with out of bound positive offset --
75 -- ASCII string with out of bound negative offset --
87 -- Multi-byte string with out of bound positive offset --
90 -- Multi-byte string with out of bound negative offset --
H A Dmb_strpos_empty_needle.phpt23 echo "\n-- ASCII string with out of bound positive offset --\n";
30 echo "\n-- ASCII string with out of bound negative offset --\n";
46 echo "\n-- Multi-byte string with out of bound positive offset --\n";
53 echo "\n-- Multi-byte string with out of bound negative offset --\n";
71 -- ASCII string with out of bound positive offset --
74 -- ASCII string with out of bound negative offset --
86 -- Multi-byte string with out of bound positive offset --
89 -- Multi-byte string with out of bound negative offset --
H A Dmb_strripos_empty_needle.phpt23 echo "\n-- ASCII string with out of bound positive offset --\n";
30 echo "\n-- ASCII string with out of bound negative offset --\n";
47 echo "\n-- Multi-byte string with out of bound positive offset --\n";
54 echo "\n-- Multi-byte string with out of bound negative offset --\n";
72 -- ASCII string with out of bound positive offset --
75 -- ASCII string with out of bound negative offset --
87 -- Multi-byte string with out of bound positive offset --
90 -- Multi-byte string with out of bound negative offset --
H A Dmb_strrpos_empty_needle.phpt23 echo "\n-- ASCII string with out of bound positive offset --\n";
30 echo "\n-- ASCII string with out of bound negative offset --\n";
47 echo "\n-- Multi-byte string with out of bound positive offset --\n";
54 echo "\n-- Multi-byte string with out of bound negative offset --\n";
72 -- ASCII string with out of bound positive offset --
75 -- ASCII string with out of bound negative offset --
87 -- Multi-byte string with out of bound positive offset --
90 -- Multi-byte string with out of bound negative offset --

Completed in 122 milliseconds

12345678910>>...20