Home
last modified time | relevance | path

Searched refs:output (Results 226 – 250 of 521) sorted by path

12345678910>>...21

/PHP-5.5/ext/soap/tests/bugs/
H A Dbug50698_2.wsdl186 …<wsdl:output wsaw:Action="http://tempuri.org/EchoService/EchoResponse" message="tns:EchoService_Ec…
197 <wsdl:output>
199 </wsdl:output>
H A Dbug50698_3.wsdl186 …<wsdl:output wsaw:Action="http://tempuri.org/EchoService/EchoResponse" message="tns:EchoService_Ec…
197 <wsdl:output>
199 </wsdl:output>
H A Dbug50698_4.wsdl186 …<wsdl:output wsaw:Action="http://tempuri.org/EchoService/EchoResponse" message="tns:EchoService_Ec…
196 <wsdl:output>
198 </wsdl:output>
209 <wsdl:output>
211 </wsdl:output>
/PHP-5.5/ext/soap/tests/
H A Dclassmap.wsdl27 <output message="tns:dotestResponse"/>
31 <output message="tns:dotest2Response"/>
41 <output>
43 </output>
50 <output>
52 </output>
/PHP-5.5/ext/sockets/tests/
H A Dsocket_strerror.phpt30 string(18) "Input/output error"
/PHP-5.5/ext/spl/
H A Ddoxygen.cfg103 # configuration options related to the HTML output
123 # configuration options related to the LaTeX output
138 # configuration options related to the RTF output
147 # configuration options related to the man page output
154 # configuration options related to the XML output
162 # configuration options for the AutoGen Definitions output
166 # configuration options related to the Perl module output
/PHP-5.5/ext/spl/tests/
H A Dspl_iterator_getcallchildren.phpt17 $output = $test->callGetChildren();
19 $output = null;
22 var_dump($output);
/PHP-5.5/ext/standard/
H A Dbasic_functions.c1025 ZEND_ARG_INFO(1, output) /* ARRAY_INFO(1, output, 1) */
H A Dcrypt.c167 char *output; in php_crypt() local
173 efree(output); in php_crypt()
176 *result = estrdup(output); in php_crypt()
178 efree(output); in php_crypt()
182 char *output; in php_crypt() local
188 efree(output); in php_crypt()
191 *result = estrdup(output); in php_crypt()
193 efree(output); in php_crypt()
203 char output[PHP_MAX_SALT_LEN + 1]; in php_crypt() local
207 crypt_res = php_crypt_blowfish_rn(password, salt, output, sizeof(output)); in php_crypt()
[all …]
H A Dcrypt_blowfish.c780 BF_encode(&output[7 + 22], data.binary.output, 23); in BF_crypt()
783 return output; in BF_crypt()
791 output[0] = '*'; in _crypt_output_magic()
792 output[1] = '0'; in _crypt_output_magic()
793 output[2] = '\0'; in _crypt_output_magic()
796 output[1] = '1'; in _crypt_output_magic()
901 output[0] = '$';
902 output[1] = '2';
904 output[3] = '$';
907 output[6] = '$';
[all …]
H A Dcrypt_blowfish.h22 extern int _crypt_output_magic(const char *setting, char *output, int size);
25 char *output, int size);
29 const char *input, int size, char *output, int output_size);
H A Dcrypt_freesec.c678 memcpy(data->output, setting, 9); in _crypt_extended_r()
679 data->output[9] = '\0'; in _crypt_extended_r()
680 p = (u_char *) data->output + 9; in _crypt_extended_r()
695 data->output[0] = setting[0]; in _crypt_extended_r()
696 data->output[1] = setting[1]; in _crypt_extended_r()
697 p = (u_char *) data->output + 2; in _crypt_extended_r()
726 return(data->output); in _crypt_extended_r()
H A Dcrypt_freesec.h36 char output[21]; member
H A Dpack.c96 *output++ = v[map[i]]; in php_pack()
117 char *output; in PHP_FUNCTION() local
313 output = emalloc(outputsize + 1); in PHP_FUNCTION()
373 output[++outputpos] = 0; in PHP_FUNCTION()
378 output[outputpos] |= (n << nibbleshift); in PHP_FUNCTION()
447 memcpy(&output[outputpos], &v, sizeof(v)); in PHP_FUNCTION()
460 memcpy(&output[outputpos], &v, sizeof(v)); in PHP_FUNCTION()
467 memset(&output[outputpos], '\0', arg); in PHP_FUNCTION()
491 output[outputpos] = '\0'; in PHP_FUNCTION()
492 RETVAL_STRINGL(output, outputpos, 1); in PHP_FUNCTION()
[all …]
H A Dsha1.c372 static void SHA1Encode(output, input, len) in SHA1Encode() argument
373 unsigned char *output; in SHA1Encode()
380 output[j] = (unsigned char) ((input[i] >> 24) & 0xff);
381 output[j + 1] = (unsigned char) ((input[i] >> 16) & 0xff);
382 output[j + 2] = (unsigned char) ((input[i] >> 8) & 0xff);
383 output[j + 3] = (unsigned char) (input[i] & 0xff);
392 static void SHA1Decode(output, input, len) in SHA1Decode() argument
393 php_uint32 *output; in SHA1Decode()
400 output[i] = ((php_uint32) input[j + 3]) | (((php_uint32) input[j + 2]) << 8) |
/PHP-5.5/ext/standard/tests/array/
H A Darray_fill.phpt15 $output = array_fill($start, $num, $value);
16 var_dump($output);
H A Darray_walk_basic1.phpt26 echo "\n"; // new line to separate the output between each element
35 echo "\n"; // new line to separate the output between each element
H A Darray_walk_basic2.phpt29 echo "\n"; // new line to separate the output between each element
43 echo "\n"; // new line to separate the output between each element
H A Darray_walk_recursive_basic1.phpt26 echo "\n"; // new line to separate the output between each element
35 echo "\n"; // new line to separate the output between each element
H A Darray_walk_recursive_basic2.phpt29 echo "\n"; // new line to separate the output between each element
43 echo "\n"; // new line to separate the output between each element
H A Darray_walk_recursive_variation4.phpt28 echo "\n"; // new line to separate the output between each element
H A Darray_walk_recursive_variation5.phpt36 echo "\n"; // new line to separate the output between each element
H A Darray_walk_recursive_variation6.phpt31 echo "\n"; // new line to separate the output between each element
45 echo "\n"; // new line to separate the output between each element
59 echo "\n"; // new line to separate the output between each element
H A Darray_walk_recursive_variation9.phpt27 echo "\n"; // new line to separate the output between each element
37 echo "\n"; // new line to separate the output between each element
H A Darray_walk_variation4.phpt28 echo "\n"; // new line to separate the output between each element

Completed in 105 milliseconds

12345678910>>...21