Home
last modified time | relevance | path

Searched refs:input (Results 176 – 200 of 652) sorted by relevance

12345678910>>...27

/php-src/ext/standard/
H A Dsha1.c173 PHPAPI void PHP_SHA1Update(PHP_SHA1_CTX * context, const unsigned char *input, in PHP_SHA1Update() argument
194 ((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen); in PHP_SHA1Update()
198 SHA1Transform(context->state, &input[i]); in PHP_SHA1Update()
206 ((unsigned char*) & context->buffer[index], (unsigned char*) & input[i], in PHP_SHA1Update()
361 static void SHA1Encode(unsigned char *output, uint32_t *input, unsigned int len) in SHA1Encode() argument
366 output[j] = (unsigned char) ((input[i] >> 24) & 0xff); in SHA1Encode()
367 output[j + 1] = (unsigned char) ((input[i] >> 16) & 0xff); in SHA1Encode()
368 output[j + 2] = (unsigned char) ((input[i] >> 8) & 0xff); in SHA1Encode()
369 output[j + 3] = (unsigned char) (input[i] & 0xff); in SHA1Encode()
383 output[i] = ((uint32_t) input[j + 3]) | (((uint32_t) input[j + 2]) << 8) | in SHA1Decode()
[all …]
/php-src/ext/standard/tests/array/
H A Darray_slice_variation5.phpt11 $input = array ('one' => 1, 2 => 'two', 'three', 9 => 'nine', 'ten' => 10);
15 var_dump(array_slice($input, $i));
18 var_dump(array_slice($input, PHP_INT_MAX));
21 var_dump(array_slice($input, -PHP_INT_MAX));
H A Dkey_variation2.phpt80 foreach($inputs as $key => $input) {
82 while (key($input) !== NULL) {
83 var_dump(key($input));
84 next($input);
H A Darray_change_key_case_variation8.phpt19 foreach($inputs as $input) {
21 var_dump(array_change_key_case($input));
23 var_dump(array_change_key_case($input, CASE_UPPER));
H A Darray_values_variation2.phpt6 * Pass arrays of different data types as $input argument to array_values() to test behaviour
31 // arrays of different data types to be passed as $input
104 foreach($inputs as $key => $input) {
106 var_dump( array_values($input) );
H A Darray_values_variation3.phpt6 * Pass arrays where the keys are different data types as $input argument
21 // unexpected values to be passed as $input
81 foreach($inputs as $key => $input) {
83 var_dump( array_values($input) );
H A Dbug42850.phpt20 function apply_changed(&$input, $key) {
21 $input = 'changed';
/php-src/ext/hash/sha3/generic32lc/
H A DSnP-Relaned.h103 #define SnP_ExtractAndAddBytes(state, input, output, offset, length, SnP_ExtractAndAddLanes, SnP_Ex… argument
106 SnP_ExtractAndAddLanes(state, input, output, (length)/SnP_laneLengthInBytes); \
109 (input)+((length)/SnP_laneLengthInBytes)*SnP_laneLengthInBytes, \
118 const unsigned char *_curInput = (input); \
/php-src/ext/hash/sha3/generic64lc/
H A DSnP-Relaned.h103 #define SnP_ExtractAndAddBytes(state, input, output, offset, length, SnP_ExtractAndAddLanes, SnP_Ex… argument
106 SnP_ExtractAndAddLanes(state, input, output, (length)/SnP_laneLengthInBytes); \
109 (input)+((length)/SnP_laneLengthInBytes)*SnP_laneLengthInBytes, \
118 const unsigned char *_curInput = (input); \
/php-src/ext/soap/tests/interop/Round4/GroupH/
H A Dround4_groupH_simple_rpcenc.inc8 function echoStringFault($input) {
9 …return new SoapFault("Server", "Fault in response to 'echoStringFault'.", null, $input, "SimpleFau…
12 function echoIntArrayFault($input) {
13 …return new SoapFault("Server", "Fault in response to 'echoIntArrayFault'.", null, $input, "SimpleF…
/php-src/ext/soap/tests/soap12/
H A Dsoap12-test.inc89 function countItems($input) {
90 return count($input);
93 function isNil($input=NULL) {
94 return is_null($input);
/php-src/ext/standard/tests/url/
H A Dbase64_decode_basic_001.phpt5 echo "Decode an input string containing the whole base64 alphabet:\n";
14 Decode an input string containing the whole base64 alphabet:
/php-src/Zend/tests/
H A Dbug54910.phpt25 $input = new B();
26 echo $input->getEmail();
H A Dgh10634.phpt5 function test_input($input) {
7 eval($input);
/php-src/ext/soap/tests/bugs/
H A Dbug29061.wsdl20 <input message="y:getQuoteRequest"/>
28 <input>
30 </input>
H A Dbug68361.phpt52 <input message="tns:getEmployeeRequest"/>
56 <input message="tns:getUserRequest"/>
64 <input>
66 </input>
73 <input>
75 </input>
H A Dbug29795.wsdl19 <input message="tns:GetPriceRequest"/>
27 <input>
29 </input>
H A Dbug29839.wsdl21 <input message="tns:EchoStringRequest"/>
29 <input>
31 </input>
H A Dbug34453.wsdl21 <input message="tns:EchoStringRequest"/>
29 <input>
31 </input>
/php-src/ext/standard/tests/streams/
H A Dbug77069.phpt11 // While input data is available, continue to read it.
41 $input = "Line one\nLine two\nLine three";
43 $stream = fopen('data://text/plain,' . $input, 'r');
H A Dbug60455_01.phpt2 Bug #60455: stream_get_line and 1-line noeol input
6 //It's critical the read on the stream returns the input but doesn't set EOF
/php-src/ext/standard/tests/strings/
H A Dchr_variation1.phpt18 // array with different values for $input
41 foreach($inputs as $input) {
43 var_dump( bin2hex(chr($input)) );
/php-src/tests/basic/
H A Denable_post_data_reading_02.phpt17 var_dump(file_get_contents("php://input"));
18 var_dump(file_get_contents("php://input"));
/php-src/ext/standard/tests/general_functions/
H A Durl_rewriting_basic3.phpt104 <form action="" method="get"><input type="hidden" name="PHPSESSID" value="testid" /> </form>
105 <form action="./foo.php" method="get"><input type="hidden" name="PHPSESSID" value="testid" /></form>
112 <form action="//session-trans-sid.com/bar.php" method="get"><input type="hidden" name="PHPSESSID" v…
113 <form action="http://session-trans-sid.com/bar.php" method="get"><input type="hidden" name="PHPSESS…
142 <form action="" method="get"><input type="hidden" name="PHPSESSID" value="testid" /><input type="hi…
143 <form action="./foo.php" method="get"><input type="hidden" name="PHPSESSID" value="testid" /><input
150 <form action="//session-trans-sid.com/bar.php" method="get"><input type="hidden" name="PHPSESSID" v…
151 <form action="http://session-trans-sid.com/bar.php" method="get"><input type="hidden" name="PHPSESS…
180 <form action="" method="get"><input type="hidden" name="PHPSESSID" value="testid" /> </form>
181 <form action="./foo.php" method="get"><input type="hidden" name="PHPSESSID" value="testid" /></form>
[all …]
/php-src/ext/mbstring/tests/
H A Dbug43998.phpt16 foreach($inputs as $input) {
19 var_dump( mb_strtolower($sourcestring, $input) );
24 var_dump( mb_strtoupper($sourcestring, $input) );

Completed in 74 milliseconds

12345678910>>...27