Home
last modified time | relevance | path

Searched refs:output (Results 26 – 50 of 611) sorted by relevance

12345678910>>...25

/PHP-7.3/ext/openssl/tests/
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
H A Dopenssl_csr_export_bacis.phpt29 var_dump(openssl_csr_export($csr, $output));
30 var_dump(openssl_csr_export($wrong, $output));
31 var_dump(openssl_csr_export($privkey, $output));
32 var_dump(openssl_csr_export(array(), $output));
33 var_dump(openssl_csr_export($csr, $output, false));
/PHP-7.3/ext/hash/sha3/generic64lc/
H A DKeccakP-1600-opt64.c403 output[i] = input[i] ^ ((UINT8*)lane1)[offset+i]; in KeccakP1600_ExtractAndAddBytesInLane()
409 output[i] = input[i] ^ (lane & 0xFF); in KeccakP1600_ExtractAndAddBytesInLane()
417 …ndAddLanes(const void *state, const unsigned char *input, unsigned char *output, unsigned int lane… in KeccakP1600_ExtractAndAddLanes() argument
427 ((UINT64*)output)[i] = ((UINT64*)input)[i] ^ ((const UINT64*)state)[i]; in KeccakP1600_ExtractAndAddLanes()
431 output[i*8+j] = input[i*8+j] ^ temp[j]; in KeccakP1600_ExtractAndAddLanes()
436 ((UINT64*)output)[ 1] = ~((UINT64*)output)[ 1]; in KeccakP1600_ExtractAndAddLanes()
438 ((UINT64*)output)[ 2] = ~((UINT64*)output)[ 2]; in KeccakP1600_ExtractAndAddLanes()
440 ((UINT64*)output)[ 8] = ~((UINT64*)output)[ 8]; in KeccakP1600_ExtractAndAddLanes()
442 ((UINT64*)output)[12] = ~((UINT64*)output)[12]; in KeccakP1600_ExtractAndAddLanes()
444 ((UINT64*)output)[17] = ~((UINT64*)output)[17]; in KeccakP1600_ExtractAndAddLanes()
[all …]
/PHP-7.3/ext/standard/tests/array/
H A Dshuffle_variation4.phpt75 The output array is:
90 The output array is:
103 The output array is:
120 The output array is:
137 The output array is:
152 The output array is:
163 The output array is:
178 The output array is:
193 The output array is:
208 The output array is:
[all …]
H A Dshuffle_variation3.phpt57 echo "\nThe output array is:\n";
72 The output array is:
87 The output array is:
100 The output array is:
121 The output array is:
140 The output array is:
157 The output array is:
172 The output array is:
191 The output array is:
208 The output array is:
[all …]
/PHP-7.3/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);
/PHP-7.3/tests/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…
H A Dob_start_basic_003.phpt2 ob_start(): ensure even fatal error test is affected by output buffering.
7 return "I have stolen your output";
18 I have stolen your output
H A Dbug70970.phpt2 Bug #70970 (Segfault when combining error handler with output buffering)
28 Fatal error: ob_start(): Cannot use output buffering in output buffering display handlers in %sbug7…
H A Dob_start_error_005.phpt8 * Function is implemented in main/output.c
23 Fatal error: ob_start(): Cannot use output buffering in output buffering display handlers in %s on …
/PHP-7.3/ext/standard/tests/
H A Dsetrawcookie_basic_002.phpt2 Test setrawcookie to fail when output exists before
7 echo 'output' . PHP_EOL;
11 output
/PHP-7.3/sapi/cli/tests/
H A Dphp_cli_server_013.phpt14 $output = '';
32 $output .= fgets($fp);
36 echo preg_replace("/<style>(.*?)<\/style>/s", "<style>AAA</style>", $output), "\n";
40 $output = '';
54 $output .= fgets($fp);
58 echo preg_replace("/<style>(.*?)<\/style>/s", "<style>AAA</style>", $output), "\n";
61 $output = '';
75 $output .= fgets($fp);
79 echo preg_replace("/<style>(.*?)<\/style>/s", "<style>AAA</style>", $output), "\n";
/PHP-7.3/sapi/cgi/tests/
H A Dbug78323.phpt15 $output = ob_get_contents();
18 $lines = preg_split('/\R/', $output);
27 $output = ob_get_contents();
30 $lines = preg_split('/\R/', $output);
/PHP-7.3/tests/lang/
H A Dbug25547.phpt17 $output = array();
18 ++$output[foo("bar")];
20 print_r($output);
/PHP-7.3/ext/standard/tests/general_functions/
H A Dbug49847.phpt12 exec('type ' . $f, $output);
14 exec("printf %4098d 1", $output);
16 var_dump($output);
H A Dbug70018.phpt11 $output = array();
16 exec(PHP_BINARY . " -n $test_fl", $output);
18 var_dump($output);
/PHP-7.3/win32/build/
H A Dbuildconf.js111 var output = "";
135 var output = "";
145 output += emit_dep_modules(item.deps);
147 output += emit_module(item);
151 return output;
159 var output = "";
167 output += emit_module(item);
173 output += emit_dep_modules(module_names);
175 return output;
/PHP-7.3/ext/standard/tests/file/windows_links/
H A Dbug48746.phpt12 $ret = @exec($cmd, $output, $return_val);
13 if (count($output) == 0) {
27 $ret = exec($mountvol . " " . $drive . " /L", $output, $ret_val);
28 exec("mklink /j mounted_volume " . $ret, $output, $ret_val);
30 exec("mklink /j mklink_junction directory", $output, $ret_val);
H A Dbug48746_1.phpt12 $ret = @exec($cmd, $output, $return_val);
13 if (count($output) == 0) {
23 exec("mkdir " . $dirname, $output, $ret_val);
27 $ret = exec($mountvol . " " . $drive . " /L", $output, $ret_val);
28 exec("mklink /j mounted_volume " . $ret, $output, $ret_val);
30 exec("mklink /j mklink_junction directory", $output, $ret_val);
/PHP-7.3/ext/standard/tests/http/
H A Dbug53198.phpt18 $pid = http_server("tcp://127.0.0.1:12342", $responses, $output);
24 fseek($output, 0, SEEK_SET);
25 var_dump(stream_get_contents($output));
26 fseek($output, 0, SEEK_SET);
/PHP-7.3/ext/pdo/tests/
H A Dbug_69356.phpt20 …Dumps the informations contained by a prepared statement directly on the output. It will provide t…
21 This is a debug function, which dump directly the data on the normal output.
23 …utputs its result directly to the browser, the output-control functions can be used to capture the…
32 …Dumps the informations contained by a prepared statement directly on the output. It will provide t…
33 This is a debug function, which dump directly the data on the normal output.
35 …utputs its result directly to the browser, the output-control functions can be used to capture the…
/PHP-7.3/ext/spl/tests/
H A Dspl_iterator_getcallchildren.phpt17 $output = $test->callGetChildren();
19 $output = null;
22 var_dump($output);
/PHP-7.3/ext/oci8/tests/
H A Dbug46994.phpt19 dbms_lob.writeappend(p1, 26, 'This should be the output.');
24 dbms_lob.writeappend(p1, 37, 'The output should be even longer now.');
76 string(26) "This should be the output."
78 string(37) "The output should be even longer now."
80 string(26) "This should be the output."
82 string(26) "This should be the output."
H A Dbug71148.phpt56 // Test 2: Bind output parameter in a local function
61 echo "\nTest 2: Bind output parameter in a local function\n";
74 // Test 3: Bind output parameter within the same scope of execute
79 echo "\nTest 3: Bind output parameter within the same scope of execute\n";
92 // Test 4: Bind output parameter within the same scope of execute
93 $sql= "begin :output := bindfunc(:var1, :var2); end;";
97 echo "\nTest 4: Bind output parameter within the same scope of execute\n";
102 oci_bind_by_name($stmt, ":output", $cache3, 100);
171 Test 2: Bind output parameter in a local function
175 Test 3: Bind output parameter within the same scope of execute
[all …]
/PHP-7.3/ext/standard/tests/file/
H A Dbug69442.phpt16 …'TEST_PHP_EXECUTABLE']." -d display_errors=1 -d error_reporting=E_ALL ".$tmpFile." 2>&1", $output);
17 $output = join("\n", $output);
20 if (strstr($output, "pty pseudo terminal not supported on this system") !== false) {

Completed in 38 milliseconds

12345678910>>...25