Home
last modified time | relevance | path

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

12345678910>>...25

/PHP-7.2/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.2/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.2/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 …
H A Dob_end_flush_error_001.phpt6 * Description: Flush (send) the output buffer, and delete current output buffer
7 * Source code: main/output.c
/PHP-7.2/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.2/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.2/tests/lang/
H A Dbug25547.phpt17 $output = array();
18 ++$output[foo("bar")];
20 print_r($output);
/PHP-7.2/ext/openssl/tests/
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));
H A Dopenssl_pkey_export_basic.phpt17 var_dump(openssl_pkey_export($key, $output, NULL, $config_arg));
18 echo $output;
21 $details = openssl_pkey_get_details(openssl_pkey_get_private($output));
25 openssl_pkey_export($key, $output, 'passphrase', $config_arg);
27 $details = openssl_pkey_get_details(openssl_pkey_get_private($output, 'passphrase'));
/PHP-7.2/win32/build/
H A Dbuildconf.js112 var output = "";
136 var output = "";
146 output += emit_dep_modules(item.deps);
148 output += emit_module(item);
152 return output;
160 var output = "";
168 output += emit_module(item);
174 output += emit_dep_modules(module_names);
176 return output;
/PHP-7.2/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.2/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.2/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.2/ext/spl/tests/
H A Dspl_iterator_getcallchildren.phpt17 $output = $test->callGetChildren();
19 $output = null;
22 var_dump($output);
/PHP-7.2/ext/oci8/tests/
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 …]
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."
/PHP-7.2/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) {
/PHP-7.2/ext/zlib/tests/
H A Dgzdeflate_variation1.phpt24 $output = gzdeflate($data);
25 var_dump( md5($output));
26 var_dump(md5(gzdeflate($output)));
/PHP-7.2/ext/standard/
H A Dpack.c95 *output++ = v[map[i]]; in php_pack()
241 zend_string *output; in PHP_FUNCTION() local
454 output = zend_string_alloc(outputsize, 0); in PHP_FUNCTION()
472 memcpy(&ZSTR_VAL(output)[outputpos], ZSTR_VAL(str), in PHP_FUNCTION()
509 ZSTR_VAL(output)[++outputpos] = 0; in PHP_FUNCTION() local
514 ZSTR_VAL(output)[outputpos] |= (n << nibbleshift); in PHP_FUNCTION() local
601 memcpy(&ZSTR_VAL(output)[outputpos], &v, sizeof(v)); in PHP_FUNCTION()
657 memset(&ZSTR_VAL(output)[outputpos], '\0', arg); in PHP_FUNCTION()
680 ZSTR_VAL(output)[outputpos] = '\0'; in PHP_FUNCTION() local
681 ZSTR_LEN(output) = outputpos; in PHP_FUNCTION()
[all …]

Completed in 53 milliseconds

12345678910>>...25