Home
last modified time | relevance | path

Searched refs:output (Results 226 – 250 of 568) sorted by relevance

12345678910>>...23

/PHP-5.6/tests/output/
H A Dob_start_error_004.phpt7 * Function is implemented in main/output.c
H A Dob_end_clean_basic_001.phpt7 * Function is implemented in main/output.c
/PHP-5.6/ext/hash/
H A Dhash_md.c67 static void Encode(unsigned char *output, php_hash_uint32 *input, unsigned int len) in Encode() argument
72 output[j] = (unsigned char) (input[i] & 0xff); in Encode()
73 output[j + 1] = (unsigned char) ((input[i] >> 8) & 0xff); in Encode()
74 output[j + 2] = (unsigned char) ((input[i] >> 16) & 0xff); in Encode()
75 output[j + 3] = (unsigned char) ((input[i] >> 24) & 0xff); in Encode()
84 static void Decode(php_hash_uint32 *output, const unsigned char *input, unsigned int len) in Decode() argument
89 output[i] = ((php_hash_uint32) input[j]) | (((php_hash_uint32) input[j + 1]) << 8) | in Decode()
688 PHP_HASH_API void PHP_MD2Final(unsigned char output[16], PHP_MD2_CTX *context) in PHP_MD2Final()
694 memcpy(output, context->state, 16); in PHP_MD2Final()
/PHP-5.6/ext/bcmath/libbcmath/src/
H A DMakefile.am8 init.c int2num.c nearzero.c neg.c num2long.c num2str.c output.c \
/PHP-5.6/ext/standard/tests/array/
H A Darray_walk_variation9.phpt27 echo "\n"; // new line to separate the output between each element
37 echo "\n"; // new line to separate the output between each element
H A Darray_walk_recursive_variation6.phpt31 echo "\n"; // new line to separate the output between each element
45 echo "\n"; // new line to separate the output between each element
59 echo "\n"; // new line to separate the output between each element
H A Darray_walk_recursive_variation9.phpt27 echo "\n"; // new line to separate the output between each element
37 echo "\n"; // new line to separate the output between each element
/PHP-5.6/ext/standard/tests/general_functions/
H A Dfloatval_basic.phpt37 float values, expected output:float value for valid floating point number */
45 float values, expected output:float value for valid floating point number */
/PHP-5.6/ext/openssl/tests/
H A Dopenssl_sign_basic.phpt11 var_dump(openssl_sign($data, $sign, $privkey)); // no output
/PHP-5.6/ext/gd/tests/
H A Dbug41442.phpt2 Bug #41442 (imagegd2() under output control)
/PHP-5.6/ext/imap/tests/
H A Dbug31142_2.phpt2 Bug #31142 test #2 (imap_mail_compose() generates incorrect output)
/PHP-5.6/ext/standard/tests/http/
H A Dbug43510.phpt16 $pid = http_server("tcp://127.0.0.1:12342", $responses, $output);
H A Dbug38802.phpt22 $pid = http_server("tcp://127.0.0.1:12342", $responses, $output);
34 fseek($output, 0, SEEK_SET);
35 var_dump(stream_get_contents($output));
/PHP-5.6/
H A Drun-tests.php1523 if (!strncasecmp('skip', ltrim($output), 4)) {
1544 if (!strncasecmp('info', ltrim($output), 4)) {
1550 if (!strncasecmp('warn', ltrim($output), 4)) {
1854 $output = preg_replace("/\r\n/", "\n", trim($out));
1860 $output = trim($match[2]);
1909 show_file_block('out', $output);
1991 if (preg_match("/^$wanted_re\$/s", $output)) {
2019 if (!strcmp($output, $wanted)) {
2049 $output = $output_headers . "\n--HEADERS--\n" . $output;
2109 $output
[all …]
/PHP-5.6/ext/bcmath/
H A Dconfig.w3210 num2long.c output.c recmul.c sqrt.c zero.c debug.c doaddsub.c \
/PHP-5.6/Zend/tests/
H A Dbug64896.phpt33 /* will output:
/PHP-5.6/ext/iconv/tests/
H A Dbug48289.phpt11 'output-charset' => 'UTF-8',
/PHP-5.6/ext/oci8/tests/
H A Dconn_attr_5.phpt9 if ($test_drcp) die("skip output might vary with DRCP");
13 die("skip expected output only valid when using Oracle 10g or greater database server");
/PHP-5.6/ext/session/tests/
H A Dbug42596.phpt12 arg_separator.output="&amp;"
/PHP-5.6/tests/lang/
H A Dbug24951.phpt2 Bug #24951 (ob_flush() destroys output handler)
/PHP-5.6/ext/snmp/tests/
H A Dsnmp_set_oid_output_format.phpt28 Warning: snmp_set_oid_output_format(): Unknown SNMP output print format '123' in %s on line %d
/PHP-5.6/ext/curl/tests/
H A Dcurl_copy_handle_basic_004.phpt19 ob_start(); // start output buffering
H A Dcurl_setopt_basic003.phpt29 ob_start(); // start output buffering
H A Dcurl_write_callback.phpt7 Writes the value 'test' to a temporary file. Use curl to access this file, passing the output into …
H A Dcurl_write_stdout.phpt7 Writes the value 'test' to a temporary file. Use curl to access this file and store the output in a…

Completed in 79 milliseconds

12345678910>>...23