Home
last modified time | relevance | path

Searched refs:output (Results 1 – 25 of 578) sorted by relevance

12345678910>>...24

/PHP-7.4/ext/hash/sha3/generic64lc/
H A DKeccakP-1600-64.macros1112 output[ 0] = X##ba; \
1118 output[ 3] = X##bo; \
1120 output[ 4] = X##bu; \
1122 output[ 5] = X##ga; \
1124 output[ 6] = X##ge; \
1223 #define output(X, output, laneCount) \
1370 output[index] = X##name;
1557 output[12]= X##ki; \
1644 #define output(X, output, laneCount) \
1791 output[index] = X##name;
[all …]
/PHP-7.4/ext/standard/
H A Dcrypt.c122 char *output; in php_crypt() local
128 efree(output); in php_crypt()
131 result = zend_string_init(output, strlen(output), 0); in php_crypt()
133 efree(output); in php_crypt()
137 char *output; in php_crypt() local
143 efree(output); in php_crypt()
146 result = zend_string_init(output, strlen(output), 0); in php_crypt()
148 efree(output); in php_crypt()
155 char output[PHP_MAX_SALT_LEN + 1]; in php_crypt() local
159 crypt_res = php_crypt_blowfish_rn(password, salt, output, sizeof(output)); in php_crypt()
[all …]
H A Dcrypt_blowfish.c783 BF_encode(&output[7 + 22], data.binary.output, 23); in BF_crypt()
786 return output; in BF_crypt()
794 output[0] = '*'; in _crypt_output_magic()
795 output[1] = '0'; in _crypt_output_magic()
796 output[2] = '\0'; in _crypt_output_magic()
799 output[1] = '1'; in _crypt_output_magic()
904 output[0] = '$';
905 output[1] = '2';
907 output[3] = '$';
910 output[6] = '$';
[all …]
H A Dcrypt_blowfish.h21 extern int _crypt_output_magic(const char *setting, char *output, int size);
24 char *output, int size);
28 const char *input, int size, char *output, int output_size);
/PHP-7.4/tests/output/
H A Dob_start_basic_004.phpt9 * Function is implemented in main/output.c
37 ----( chunk_size: -1, output append size: 1 )----
40 ----( chunk_size: 0, output append size: 1 )----
43 ----( chunk_size: 1, output append size: 1 )----
54 ----( chunk_size: 2, output append size: 1 )----
61 ----( chunk_size: 3, output append size: 1 )----
66 ----( chunk_size: 4, output append size: 1 )----
71 ----( chunk_size: 5, output append size: 1 )----
75 ----( chunk_size: 6, output append size: 1 )----
79 ----( chunk_size: 7, output append size: 1 )----
[all …]
H A Dob_020.phpt2 output buffering - ob_list_handlers
25 [0] => default output handler
29 [0] => default output handler
30 [1] => default output handler
34 [0] => default output handler
H A Dob_get_length_basic_001.phpt7 * Function is implemented in main/output.c
10 echo "No output buffers\n";
25 echo "No output buffers\n";
29 No output buffers
36 No output buffers
H A Dob_start_basic_002.phpt18 return "I stole your output.";
25 // Use each of the above functions as an output buffering callback:
32 echo 'My output.';
44 My output.
50 I stole your output.
H A Dob_011.phpt2 output buffering - fatalism
13 Fatal error: ob_get_flush(): Cannot use output buffering in output buffering display handlers in %s…
/PHP-7.4/docs/
H A Doutput-api.md1 # API adjustment to the old output control code
4 for every output handler op.
6 Checking output control layers status:
10 Starting the default output handler:
33 Flushing one output buffer:
37 Flushing all output buffers:
41 Cleaning one output buffer:
45 Cleaning all output buffers:
49 Discarding one output buffer:
53 Discarding all output buffers:
[all …]
/PHP-7.4/ext/phar/tests/files/
H A Dpear2coverage.phar110 if (!$output->openUri('php://output')) {
132 $output->endElement();
234 $output->text("\n ");
250 $output->text("\n ");
252 $output->text("\n ");
258 $output->text("\n ");
260 $output->text("\n ");
303 $output->text("\n ");
313 if (!$output->openUri('php://output')) {
387 if (!$output->openUri('php://output')) {
[all …]
/PHP-7.4/ext/standard/tests/general_functions/
H A Dob_start_closures.phpt2 Test ob_start() function : closures as output handlers
7 echo "*** Testing ob_start() : closures as output handlers ***\n";
9 ob_start(function ($output) {
10 return 'Output (1): ' . $output;
13 ob_start(function ($output) {
14 return 'Output (2): ' . $output;
32 *** Testing ob_start() : closures as output handlers ***
H A Dbug50732.phpt2 Bug #50732 (exec() adds single byte twice to $output array)
5 exec("echo x", $output);
6 var_dump($output);
/PHP-7.4/ext/openssl/tests/
H A Dopenssl_pkcs12_export_basic.phpt20 var_dump(openssl_pkcs12_export($cert, $output, $priv, $pass)); // read certs as a string
21 var_dump(openssl_pkcs12_read($output, $opts, $pass));
22 var_dump(openssl_pkcs12_export($cert_path, $output, $priv_path, $pass)); // read certs from a filen…
23 var_dump(openssl_pkcs12_read($output, $opts, $pass));
24 var_dump(openssl_pkcs12_export($cert_res, $output, $priv_res, $pass)); // read certs from a resource
25 var_dump(openssl_pkcs12_read($output, $opts, $pass));
27 var_dump(openssl_pkcs12_read($output, $opts, $pass));
31 var_dump(openssl_pkcs12_export($invalid, $output, $invalid, $pass));
32 var_dump(openssl_pkcs12_export($invalid_path, $output, $invalid_path, $pass));
33 var_dump(openssl_pkcs12_export($priv_res, $output, $cert_res, $pass));
[all …]
H A Dopenssl_decrypt_basic.phpt17 $output = openssl_decrypt($encrypted, $method, $password, 0, $iv);
18 var_dump($output);
20 $output = openssl_decrypt($encrypted, $method, $password, OPENSSL_RAW_DATA, $iv);
21 var_dump($output);
25 $output = openssl_decrypt($encrypted, $method, $password, OPENSSL_RAW_DATA|OPENSSL_ZERO_PADDING, $i…
26 var_dump(rtrim($output));
29 $output = openssl_decrypt($encrypted, "bf-ecb", $password, OPENSSL_DONT_ZERO_PAD_KEY);
30 var_dump($output);
H A Dopenssl_x509_export_basic.phpt15 var_dump(openssl_x509_export($a, $output)); // read cert as a binary string
25 var_dump(strcmp($output, $a));
26 var_dump(strcmp($output, $output2));
27 var_dump(strcmp($output, $output3));
28 var_dump(strcmp($output, $output4)); // different
29 var_dump(strcmp($output, $output5)); // different
/PHP-7.4/ext/standard/tests/http/
H A Dserver.inc10 function http_server_init($socket_string, &$output = null) {
18 if ($output === null) {
19 $output = tmpfile();
20 if ($output === false) {
39 * $output is a stream on which everything sent by clients is written to
41 function http_server($socket_string, array $files, &$output = null) {
43 if (!is_resource($server = http_server_init($socket_string, $output))) {
66 fwrite($output, "\r\n");
69 fwrite($output, "$line\r\n");
81 stream_copy_to_stream($sock, $output, $content_length);
[all …]
/PHP-7.4/ext/mbstring/tests/
H A Dhtmlent.phpt2 HTML input/output
20 // enable output encoding through output handler
22 // &#64... are must be decoded on input these are not reencoded on output.
23 // If you see @AB on output this means input encoding fails.
24 // If you do not see ä... on output this means output encoding fails.
/PHP-7.4/ext/dom/tests/
H A DDOMNode_C14NFile_basic.phpt23 $output = __DIR__.'/DOMNode_C14NFile_basic.tmp';
27 var_dump($node->C14NFile($output));
28 $content = file_get_contents($output);
33 $output = __DIR__.'/DOMNode_C14NFile_basic.tmp';
34 unlink($output);
/PHP-7.4/sapi/cli/tests/
H A Dbug78323.phpt20 $output = ob_get_contents();
23 $lines = preg_split('/\R/', $output);
32 $output = ob_get_contents();
35 $lines = preg_split('/\R/', $output);
44 $output = ob_get_contents();
47 $lines = preg_split('/\R/', $output);
56 $output = ob_get_contents();
59 $lines = preg_split('/\R/', $output);
/PHP-7.4/sapi/phpdbg/
H A Dcreate-test.php68 $input = $output = ""; variable
91 $output .= $c = fgetc($pipes[1]);
116 $output = str_replace("string(".strlen($file).") \"$file\"", 'string(%d) "%s"', $output); variable
117 $output = str_replace($file, "%s", $output); variable
126 $output
/PHP-7.4/Zend/tests/
H A Dbug46811.phpt4 arg_separator.output=&
7 var_dump(ini_set("arg_separator.output", ""));
8 var_dump(ini_get("arg_separator.output"));
/PHP-7.4/ext/xmlwriter/tests/
H A Dxmlwriter_write_dtd_basic_001.phpt10 $output = xmlwriter_flush($xmlwriter, true);
11 print $output . PHP_EOL;
14 $output = xmlwriter_flush($xmlwriter, true);
15 print $output;
/PHP-7.4/ext/standard/tests/array/
H A Dshuffle_variation2.phpt31 echo "\nThe output array is:\n";
41 echo "\nThe output array is:\n";
52 The output array is:
124 The output array is:
137 The output array is:
150 The output array is:
163 The output array is:
176 The output array is:
189 The output array is:
202 The output array is:
/PHP-7.4/sapi/fpm/tests/
H A Dbug78323.phpt15 $output = ob_get_contents();
18 $lines = preg_split('/\R/', $output);
26 $output = ob_get_contents();
29 $lines = preg_split('/\R/', $output);

Completed in 63 milliseconds

12345678910>>...24