Home
last modified time | relevance | path

Searched refs:s1 (Results 76 – 100 of 113) sorted by relevance

12345

/PHP-5.5/ext/soap/tests/interop/Round4/GroupH/
H A Dr4_groupH_complex_doclit_005w.phpt23 $s1 = new SOAPStruct('arg1',34,325.325);
27 "param1" => $s1,
H A Dr4_groupH_complex_doclit_006w.phpt23 $s1 = new SOAPStruct('arg1',34,325.325);
27 "param1" => $s1,
H A Dr4_groupH_complex_rpcenc_004w.phpt23 $s1 = new SOAPStruct('arg',34,325.325);
26 $client->echoMultipleFaults1(1,$s1,$s2);
H A Dr4_groupH_complex_rpcenc_005w.phpt23 $s1 = new SOAPStruct('arg',34,325.325);
26 $client->echoMultipleFaults1(2,$s1,$s2);
H A Dr4_groupH_complex_rpcenc_006w.phpt23 $s1 = new SOAPStruct('arg',34,325.325);
26 $client->echoMultipleFaults1(3,$s1,$s2);
H A Dr4_groupH_complex_rpcenc_007w.phpt30 $s1 = new BaseStruct(12.345,1);
34 $client->echoMultipleFaults2(1,$s1,$s2,$s3);
H A Dr4_groupH_complex_rpcenc_008w.phpt30 $s1 = new BaseStruct(12.345,1);
34 $client->echoMultipleFaults2(2,$s1,$s2,$s3);
H A Dr4_groupH_complex_rpcenc_009w.phpt30 $s1 = new BaseStruct(12.345,1);
34 $client->echoMultipleFaults2(3,$s1,$s2,$s3);
H A Dr4_groupH_complex_rpcenc_010w.phpt30 $s1 = new BaseStruct(12.345,1);
34 $client->echoMultipleFaults2(4,$s1,$s2,$s3);
/PHP-5.5/ext/mbstring/libmbfl/filters/
H A Dmbfilter_gb18030.c288 int c1, s = 0, s1 = 0; in mbfl_filt_conv_wchar_gb18030() local
379 s1 = c1 + 0x81; in mbfl_filt_conv_wchar_gb18030()
386 s1 = c1 + 0x90; in mbfl_filt_conv_wchar_gb18030()
403 } else if (s1 > 0) { /* qbcs */ in mbfl_filt_conv_wchar_gb18030()
404 CK((*filter->output_function)(s1 & 0xff, filter->data)); in mbfl_filt_conv_wchar_gb18030()
/PHP-5.5/ext/mysqlnd/
H A Dmysqlnd_alloc.c148 enum mysqlnd_collected_stats s1 = persistent? STAT_MEM_MALLOC_COUNT:STAT_MEM_EMALLOC_COUNT; in _mysqlnd_pemalloc()
151 MYSQLND_INC_GLOBAL_STATISTIC_W_VALUE2(s1, 1, s2, size); in _mysqlnd_pemalloc()
231 enum mysqlnd_collected_stats s1 = persistent? STAT_MEM_CALLOC_COUNT:STAT_MEM_ECALLOC_COUNT; in _mysqlnd_pecalloc()
234 MYSQLND_INC_GLOBAL_STATISTIC_W_VALUE2(s1, 1, s2, size); in _mysqlnd_pecalloc()
317 enum mysqlnd_collected_stats s1 = persistent? STAT_MEM_REALLOC_COUNT:STAT_MEM_EREALLOC_COUNT; in _mysqlnd_perealloc()
320 MYSQLND_INC_GLOBAL_STATISTIC_W_VALUE2(s1, 1, s2, new_size); in _mysqlnd_perealloc()
H A Dmysqlnd_auth.c317 php_mysqlnd_crypt(zend_uchar *buffer, const zend_uchar *s1, const zend_uchar *s2, size_t len) in php_mysqlnd_crypt() argument
319 const zend_uchar *s1_end = s1 + len; in php_mysqlnd_crypt()
320 while (s1 < s1_end) { in php_mysqlnd_crypt()
321 *buffer++= *s1++ ^ *s2++; in php_mysqlnd_crypt()
/PHP-5.5/ext/standard/tests/strings/
H A Dstrnatcasecmp_variation1.phpt7 /* Prototype : int strnatcasecmp(string s1, string s2)
H A Dstrnatcasecmp_basic.phpt7 /* Prototype : int strnatcasecmp(string s1, string s2)
H A Dstrval_variation2.phpt13 $s1 = "\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f";
31 echo bin2hex(strval($s1));
H A Dchunk_split_variation3.phpt111 string(100) "This1.07654321E-9 is 1.07654321E-9simp1.07654321E-9le s1.07654321E-9trin1.07654321E-9g…
/PHP-5.5/ext/standard/html_tables/
H A Dhtml_table_gen.php527 $s1 = (hexdec($el[1]) & 0xFFF000) >> 12; variable
531 $mstable[$s1][$s2][$s3] = "";
533 $mstable[$s1][$s2][$s3] = $el[0];
/PHP-5.5/Zend/
H A Dzend_operators.h360 ZEND_API int zend_binary_zval_strcmp(zval *s1, zval *s2);
361 ZEND_API int zend_binary_zval_strncmp(zval *s1, zval *s2, zval *s3);
362 ZEND_API int zend_binary_zval_strcasecmp(zval *s1, zval *s2);
363 ZEND_API int zend_binary_zval_strncasecmp(zval *s1, zval *s2, zval *s3);
364 ZEND_API int zend_binary_strcmp(const char *s1, uint len1, const char *s2, uint len2);
365 ZEND_API int zend_binary_strncmp(const char *s1, uint len1, const char *s2, uint len2, uint length);
366 ZEND_API int zend_binary_strcasecmp(const char *s1, uint len1, const char *s2, uint len2);
367 ZEND_API int zend_binary_strncasecmp(const char *s1, uint len1, const char *s2, uint len2, uint len…
368 ZEND_API int zend_binary_strncasecmp_l(const char *s1, uint len1, const char *s2, uint len2, uint l…
370 ZEND_API void zendi_smart_strcmp(zval *result, zval *s1, zval *s2);
H A Dzend_builtin_functions.c480 char *s1; in ZEND_FUNCTION() local
483 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &s1, &s1_len) == FAILURE) { in ZEND_FUNCTION()
496 char *s1, *s2; in ZEND_FUNCTION() local
499 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &s1, &s1_len, &s2, &s2_len) == FAILURE)… in ZEND_FUNCTION()
503 RETURN_LONG(zend_binary_strcmp(s1, s1_len, s2, s2_len)); in ZEND_FUNCTION()
512 char *s1, *s2; in ZEND_FUNCTION() local
525 RETURN_LONG(zend_binary_strncmp(s1, s1_len, s2, s2_len, len)); in ZEND_FUNCTION()
534 char *s1, *s2; in ZEND_FUNCTION() local
541 RETURN_LONG(zend_binary_strcasecmp(s1, s1_len, s2, s2_len)); in ZEND_FUNCTION()
550 char *s1, *s2; in ZEND_FUNCTION() local
[all …]
/PHP-5.5/ext/standard/tests/file/
H A Drename_variation9.phpt30 $s1 = stat($src_name);
/PHP-5.5/ext/standard/
H A Dphp_string.h143 PHPAPI size_t php_strspn(char *s1, char *s2, char *s1_end, char *s2_end);
144 PHPAPI size_t php_strcspn(char *s1, char *s2, char *s1_end, char *s2_end);
H A Dstring.c738 char *s1, *s2; in PHP_FUNCTION() local
745 RETURN_LONG(strcoll((const char *) s1, in PHP_FUNCTION()
1653 PHPAPI size_t php_strspn(char *s1, char *s2, char *s1_end, char *s2_end) argument
1655 register const char *p = s1, *spanp;
1665 return (p - s1);
1674 register char c = *s1;
1676 for (p = s1;;) {
1680 return p - s1;
5034 char *s1, *s2; local
5041 RETURN_LONG(strnatcmp_ex(s1, s1_len,
[all …]
/PHP-5.5/ext/oci8/tests/
H A Drefcur_prefetch_1.phpt72 $s1 = oci_parse($c,$sql1);
73 if (!oci_bind_by_name($s1,":cur1",$cur1,-1,SQLT_RSET)) {
76 oci_execute($s1);
/PHP-5.5/ext/intl/spoofchecker/
H A Dspoofchecker_class.c100 ZEND_ARG_INFO(0, s1)
/PHP-5.5/ext/opcache/
H A Dzend_accelerator_util_funcs.c1031 #define ADLER32_DO1(buf) {s1 += *(buf); s2 += s1;}
1039 unsigned int s1 = checksum & 0xffff; local
1050 s1 %= ADLER32_BASE;
1070 s1 %= ADLER32_BASE;
1074 return (s2 << 16) | s1;

Completed in 99 milliseconds

12345