Home
last modified time | relevance | path

Searched refs:output (Results 126 – 150 of 470) sorted by relevance

12345678910>>...19

/PHP-5.3/tests/output/
H A Dob_006.phpt2 output buffering - ob_end_flush
H A Dob_009.phpt2 output buffering - ob_get_flush
H A Dob_003.phpt2 output buffering - ob_flush
H A Dob_005.phpt2 output buffering - ob_end_clean
H A Dob_012.phpt2 output buffering - multiple
H A Dob_018.phpt2 output buffering - error message nirvana bug #37714
H A Dob_start_basic_001.phpt7 * Function is implemented in main/output.c
/PHP-5.3/ext/standard/tests/strings/
H A Dbug26819.phpt2 Bug #26819 (http_build_query() crash on empty output)
H A Dmd5_file.phpt2 Test md5_file() function with ASCII output and raw binary output
61 /* Normal operation with hexadecimal output */
65 /* Normal operation with raw binary output */
H A Dsetlocale_basic3.phpt29 // start the buffering of next command to internal output buffer
35 // get the contents from the internal output buffer
38 // fflush and end the output buffering to internal output buffer
H A Dsetlocale_variation1.phpt29 // start the buffering of next command to internal output buffer
35 // get the contents from the internal output buffer
38 // fflush and end the output buffering to internal output buffer
/PHP-5.3/ext/openssl/tests/
H A D017.phpt13 var_dump(openssl_private_decrypt($encrypted, $output, $privkey));
14 var_dump($output);
H A D016.phpt13 var_dump(openssl_public_decrypt($encrypted, $output, $pubkey));
14 var_dump($output);
/PHP-5.3/ext/standard/tests/file/windows_links/
H A Dbug48746_3.phpt24 exec("mkdir " . $dirname, $output, $ret_val);
26 exec(get_junction()." junction directory", $output, $ret_val);
/PHP-5.3/ext/standard/tests/url/
H A Dbase64_decode_variation_001.phpt81 $output = base64_decode($value, $strict);
83 if (is_string($output)) {
84 var_dump(bin2hex($output));
86 var_dump($output);
/PHP-5.3/ext/standard/
H A Dsha1.c372 static void SHA1Encode(output, input, len) in SHA1Encode() argument
373 unsigned char *output; in SHA1Encode()
380 output[j] = (unsigned char) ((input[i] >> 24) & 0xff);
381 output[j + 1] = (unsigned char) ((input[i] >> 16) & 0xff);
382 output[j + 2] = (unsigned char) ((input[i] >> 8) & 0xff);
383 output[j + 3] = (unsigned char) (input[i] & 0xff);
392 static void SHA1Decode(output, input, len) in SHA1Decode() argument
393 php_uint32 *output; in SHA1Decode()
400 output[i] = ((php_uint32) input[j + 3]) | (((php_uint32) input[j + 2]) << 8) |
/PHP-5.3/ext/hash/
H A Dhash_sha.c46 output[j] = (unsigned char) ((input[i] >> 24) & 0xff); in SHAEncode32()
47 output[j + 1] = (unsigned char) ((input[i] >> 16) & 0xff); in SHAEncode32()
48 output[j + 2] = (unsigned char) ((input[i] >> 8) & 0xff); in SHAEncode32()
49 output[j + 3] = (unsigned char) (input[i] & 0xff); in SHAEncode32()
737 output[j] = (unsigned char) ((input[i] >> 56) & 0xff); in SHAEncode64()
738 output[j + 1] = (unsigned char) ((input[i] >> 48) & 0xff); in SHAEncode64()
739 output[j + 2] = (unsigned char) ((input[i] >> 40) & 0xff); in SHAEncode64()
740 output[j + 3] = (unsigned char) ((input[i] >> 32) & 0xff); in SHAEncode64()
743 output[j + 6] = (unsigned char) ((input[i] >> 8) & 0xff); in SHAEncode64()
744 output[j + 7] = (unsigned char) (input[i] & 0xff); in SHAEncode64()
[all …]
/PHP-5.3/ext/zlib/tests/
H A Dgzseek_variation7.phpt28 echo "\nreading the output file\n";
45 reading the output file
/PHP-5.3/ext/xmlwriter/
H A Dphp_xmlwriter.h39 xmlBufferPtr output; member
/PHP-5.3/ext/standard/tests/general_functions/
H A Dfloatval.phpt36 float values, expected output:float value for valid floating point number */
45 float values, expected output:float value for valid floating point number */
80 floatval() on non float types, expected output: float value valid floating point numbers */
89 doubleval() on non float types, expected output: float value valid floating point numbers */
H A Dbug44394.phpt2 Bug #44394 (Last two bytes missing from output)
/PHP-5.3/ext/dom/
H A DTODO3 2) look at auto encoding support for in/output
/PHP-5.3/ext/standard/tests/
H A Dphp_logo_guid.phpt2 Check the output of the php_logo_guid() function
/PHP-5.3/
H A Dltmain.sh2047 case $output in
4870 $run $rm $output
4943 case $output in
4944 *.exe) output=`$echo $output|${SED} 's,.exe$,,'` ;;
5374 $echo >> $output "\
5443 $echo >> $output "\
5469 $echo >> $output "\
5487 $echo >> $output "\
5500 chmod +x $output
5655 case $output in
[all …]
/PHP-5.3/ext/xmlrpc/libxmlrpc/
H A Dxmlrpc.c590 if(request && output) { in XMLRPC_RequestSetOutputOptions()
591 memcpy (&request->output, output, in XMLRPC_RequestSetOutputOptions()
593 return &request->output; in XMLRPC_RequestSetOutputOptions()
621 return request ? &request->output : NULL; in XMLRPC_RequestGetOutputOptions()
694 if (request->output.version == xmlrpc_version_simple) { in XMLRPC_REQUEST_ToXML()
697 else if (request->output.version == xmlrpc_version_1_0 || in XMLRPC_REQUEST_ToXML()
698 request->output.version == xmlrpc_version_none) { in XMLRPC_REQUEST_ToXML()
708 &request->output.xml_elem_opts, in XMLRPC_REQUEST_ToXML()
810 request->output.version = xmlrpc_version_simple; in XMLRPC_REQUEST_FromXML()
814 request->output.version = xmlrpc_version_soap_1_1; in XMLRPC_REQUEST_FromXML()
[all …]

Completed in 47 milliseconds

12345678910>>...19