Home
last modified time | relevance | path

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

12345678910>>...22

/php-src/ext/standard/tests/array/
H A Dshuffle_variation4.phpt70 The output array is:
85 The output array is:
98 The output array is:
115 The output array is:
132 The output array is:
147 The output array is:
158 The output array is:
173 The output array is:
188 The output array is:
203 The output array is:
[all …]
H A Dshuffle_variation3.phpt52 echo "\nThe output array is:\n";
67 The output array is:
82 The output array is:
95 The output array is:
116 The output array is:
135 The output array is:
152 The output array is:
167 The output array is:
186 The output array is:
203 The output array is:
[all …]
/php-src/ext/standard/tests/general_functions/
H A Dbug50732.phpt2 Bug #50732 (exec() adds single byte twice to $output array)
5 exec("echo x", $output);
6 var_dump($output);
H A Dbug70018.phpt5 $output = array();
11 exec(getenv('TEST_PHP_EXECUTABLE_ESCAPED') . " -n $test_fl_escaped", $output);
13 var_dump($output);
H A Dbug49847.phpt12 exec('type ' . $f, $output);
14 exec("printf %4098d 1", $output);
16 var_dump($output);
/php-src/ext/hash/sha3/generic64lc/
H A DKeccakP-1600-opt64.c412 output[i] = input[i] ^ ((UINT8*)lane1)[offset+i]; in KeccakP1600_ExtractAndAddBytesInLane()
418 output[i] = input[i] ^ (lane & 0xFF); in KeccakP1600_ExtractAndAddBytesInLane()
426 …ndAddLanes(const void *state, const unsigned char *input, unsigned char *output, unsigned int lane… in KeccakP1600_ExtractAndAddLanes() argument
436 ((UINT64*)output)[i] = ((UINT64*)input)[i] ^ ((const UINT64*)state)[i]; in KeccakP1600_ExtractAndAddLanes()
440 output[i*8+j] = input[i*8+j] ^ temp[j]; in KeccakP1600_ExtractAndAddLanes()
445 ((UINT64*)output)[ 1] = ~((UINT64*)output)[ 1]; in KeccakP1600_ExtractAndAddLanes()
447 ((UINT64*)output)[ 2] = ~((UINT64*)output)[ 2]; in KeccakP1600_ExtractAndAddLanes()
449 ((UINT64*)output)[ 8] = ~((UINT64*)output)[ 8]; in KeccakP1600_ExtractAndAddLanes()
451 ((UINT64*)output)[12] = ~((UINT64*)output)[12]; in KeccakP1600_ExtractAndAddLanes()
453 ((UINT64*)output)[17] = ~((UINT64*)output)[17]; in KeccakP1600_ExtractAndAddLanes()
[all …]
/php-src/ext/dom/
H A Dxpath.c481 output->val[0] = '\''; in PHP_METHOD()
483 output->val[input_len + 1] = '\''; in PHP_METHOD()
484 output->val[input_len + 2] = '\0'; in PHP_METHOD()
485 RETURN_STR(output); in PHP_METHOD()
488 output->val[0] = '"'; in PHP_METHOD()
490 output->val[input_len + 1] = '"'; in PHP_METHOD()
491 output->val[input_len + 2] = '\0'; in PHP_METHOD()
492 RETURN_STR(output); in PHP_METHOD()
494 smart_str output = {0}; in PHP_METHOD() local
510 smart_str_appendc(&output, ','); in PHP_METHOD()
[all …]
/php-src/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-src/Zend/tests/
H A Dnew_oom.phpt15 $output = shell_exec("$php --no-php-ini $file $class 2>&1");
16output && preg_match('(^\nFatal error: Allowed memory size of [0-9]+ bytes exhausted[^\r\n]* \(tri…
18 echo $output, "\n";
/php-src/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-src/ext/standard/
H A Dcrypt_blowfish.c640 char *output, int size, in BF_crypt() argument
648 BF_word output[6]; in BF_crypt() member
751 data.binary.output[i] = L; in BF_crypt()
762 BF_encode(&output[7 + 22], data.binary.output, 23); in BF_crypt()
763 output[7 + 22 + 31] = '\0'; in BF_crypt()
765 return output; in BF_crypt()
773 output[0] = '*'; in _crypt_output_magic()
774 output[1] = '0'; in _crypt_output_magic()
775 output[2] = '\0'; in _crypt_output_magic()
778 output[1] = '1'; in _crypt_output_magic()
[all …]
/php-src/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-src/tests/output/
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 Dob_start_error_005.phpt7 * Function is implemented in main/output.c
22 Fatal error: ob_start(): Cannot use output buffering in output buffering display handlers in %s on …
H A Dob_011.phpt2 output buffering - fatalism
19 Fatal error: ob_get_flush(): Cannot use output buffering in output buffering display handlers in %s…
/php-src/Zend/tests/offsets/
H A Druntime_compile_time_offset_access.phpt23 function normalize_output(string $output, string $filename): string {
24 $output = str_replace(
27 $output
30 $output = preg_replace('/\)#\d+ \(/', ')#99 (', $output);
32 return $output;
/php-src/ext/zlib/tests/
H A Dgzdeflate_variation1.phpt14 $output = gzdeflate($data);
15 var_dump(strlen($output));
16 var_dump(strlen(gzdeflate($output)));
H A Dgzcompress_variation1.phpt12 $output = gzcompress($data);
13 var_dump(strlen($output));
14 var_dump(strlen(gzcompress($output)));
H A Dgzencode_basic1.phpt27 $output = gzencode($data, $i);
28 var_dump(strcmp(gzdecode($output), $data)===0);
34 $output = gzencode($smallstring, $i);
35 var_dump(strcmp(gzdecode($output), $smallstring)===0);
40 $output = gzencode($smallstring);
41 var_dump(strcmp(gzdecode($output), $smallstring)===0);
45 var_dump(strcmp(gzdecode($output), $smallstring)===0);
H A Dgzdeflate_basic1.phpt27 $output = gzdeflate($data, $i);
28 var_dump(strcmp(gzinflate($output), $data));
34 $output = gzdeflate($smallstring, $i);
35 var_dump(strcmp(gzinflate($output), $smallstring));
40 $output = gzdeflate($smallstring);
41 var_dump(strcmp(gzinflate($output), $smallstring));
H A Dgzcompress_basic1.phpt27 $output = gzcompress($data, $i);
28 var_dump(strcmp(gzuncompress($output), $data));
34 $output = gzcompress($smallstring, $i);
35 var_dump(strcmp(gzuncompress($output), $smallstring));
40 $output = gzcompress($smallstring);
41 var_dump(strcmp(gzuncompress($output), $smallstring));
/php-src/tests/lang/
H A Dbug25547.phpt17 $output = array();
18 ++$output[foo("bar")];
20 print_r($output);
/php-src/win32/build/
H A Dbuildconf.js109 var output = "";
133 var output = "";
143 output += emit_dep_modules(item.deps);
145 output += emit_module(item);
149 return output;
157 var output = "";
165 output += emit_module(item);
171 output += emit_dep_modules(module_names);
173 return output;
/php-src/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);
/php-src/ext/mysqli/tests/
H A Dgh12107.phpt26 $stmt->bind_result($output);
28 var_dump($output);
29 unset($output);
34 $stmt->bind_result($output);
36 var_dump($output);

Completed in 33 milliseconds

12345678910>>...22