Home
last modified time | relevance | path

Searched refs:s1 (Results 101 – 125 of 136) sorted by relevance

123456

/PHP-8.0/ext/oci8/tests/
H A Dimp_res_get_close_2.phpt44 while (($s1 = oci_get_implicit_resultset($s))) {
45 while (($row = oci_fetch_array($s1, OCI_ASSOC+OCI_RETURN_NULLS)) != false) {
H A Dimp_res_get_cursor.phpt75 while (($s1 = oci_get_implicit_resultset($s))) {
76 do_fetch($s1);
H A Dimp_res_get_2.phpt60 $s1 = oci_get_implicit_resultset($s);
61 while (($row = oci_fetch_array($s1, OCI_ASSOC+OCI_RETURN_NULLS))) {
H A Drefcur_prefetch_1.phpt94 $s1 = oci_parse($c,$sql1);
95 if (!oci_bind_by_name($s1,":cur1",$cur1,-1,SQLT_RSET)) {
98 oci_execute($s1);
H A Dimp_res_get_3.phpt63 while (($s1 = oci_get_implicit_resultset($s))) {
64 while (($row = oci_fetch_array($s1, OCI_ASSOC+OCI_RETURN_NULLS)) != false) {
/PHP-8.0/ext/soap/tests/interop/Round4/GroupH/
H A Dr4_groupH_complex_doclit_004w.phpt23 $s1 = new SOAPStruct('arg1',34,325.325);
27 "param1" => $s1,
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-8.0/ext/standard/
H A Dphp_string.h59 PHPAPI size_t php_strspn(const char *s1, const char *s2, const char *s1_end, const char *s2_end);
60 PHPAPI size_t php_strcspn(const char *s1, const char *s2, const char *s1_end, const char *s2_end);
H A Dstring.c677 zend_string *s1, *s2; in PHP_FUNCTION() local
680 Z_PARAM_STR(s1) in PHP_FUNCTION()
1711 return (p - s1);
1719 register char c = *s1;
1721 for (p = s1;;) {
1725 return p - s1;
5282 zend_string *s1, *s2; local
5285 Z_PARAM_STR(s1)
5289 RETURN_LONG(strnatcmp_ex(ZSTR_VAL(s1), ZSTR_LEN(s1),
5866 zend_string *s1, *s2; local
[all …]
/PHP-8.0/ext/mbstring/libmbfl/filters/
H A Dmbfilter_gb18030.c287 int c1, s = 0, s1 = 0; in mbfl_filt_conv_wchar_gb18030() local
378 s1 = c1 + 0x81; in mbfl_filt_conv_wchar_gb18030()
385 s1 = c1 + 0x90; in mbfl_filt_conv_wchar_gb18030()
402 } else if (s1 > 0) { /* qbcs */ in mbfl_filt_conv_wchar_gb18030()
403 CK((*filter->output_function)(s1 & 0xff, filter->data)); in mbfl_filt_conv_wchar_gb18030()
/PHP-8.0/ext/standard/html_tables/
H A Dhtml_table_gen.php521 $s1 = (hexdec($el[1]) & 0xFFF000) >> 12; variable
525 $mstable[$s1][$s2][$s3] = "";
527 $mstable[$s1][$s2][$s3] = $el[0];
/PHP-8.0/Zend/
H A Dzend_builtin_functions.c302 zend_string *s1, *s2; in ZEND_FUNCTION() local
305 Z_PARAM_STR(s1) in ZEND_FUNCTION()
309 RETURN_LONG(zend_binary_strcmp(ZSTR_VAL(s1), ZSTR_LEN(s1), ZSTR_VAL(s2), ZSTR_LEN(s2))); in ZEND_FUNCTION()
316 zend_string *s1, *s2; in ZEND_FUNCTION() local
320 Z_PARAM_STR(s1) in ZEND_FUNCTION()
330 RETURN_LONG(zend_binary_strncmp(ZSTR_VAL(s1), ZSTR_LEN(s1), ZSTR_VAL(s2), ZSTR_LEN(s2), len)); in ZEND_FUNCTION()
337 zend_string *s1, *s2; in ZEND_FUNCTION() local
340 Z_PARAM_STR(s1) in ZEND_FUNCTION()
344 RETURN_LONG(zend_binary_strcasecmp(ZSTR_VAL(s1), ZSTR_LEN(s1), ZSTR_VAL(s2), ZSTR_LEN(s2))); in ZEND_FUNCTION()
351 zend_string *s1, *s2; in ZEND_FUNCTION() local
[all …]
H A Dzend_strtod.c1906 s1 = s;
1919 s = s1;
1981 n = s1 - s0 - 1;
1991 while(s1 > s0) {
1994 s1 -= i;
1998 if (*--s1 == '.')
2626 for(s1 = s; s1 > s0 && *--s1 == '0'; )
2630 if (c == *s1) {
2632 if (*++s1) {
2639 if (!*++s1) {
[all …]
/PHP-8.0/ext/standard/tests/file/
H A Drename_variation9.phpt26 $s1 = stat($src_name);
/PHP-8.0/ext/mysqlnd/
H A Dmysqlnd_alloc.c140 enum mysqlnd_collected_stats s1 = persistent? STAT_MEM_MALLOC_COUNT:STAT_MEM_EMALLOC_COUNT; in _mysqlnd_pemalloc()
143 MYSQLND_INC_GLOBAL_STATISTIC_W_VALUE2(s1, 1, s2, size); in _mysqlnd_pemalloc()
216 enum mysqlnd_collected_stats s1 = persistent? STAT_MEM_CALLOC_COUNT:STAT_MEM_ECALLOC_COUNT; in _mysqlnd_pecalloc()
219 MYSQLND_INC_GLOBAL_STATISTIC_W_VALUE2(s1, 1, s2, size); in _mysqlnd_pecalloc()
296 enum mysqlnd_collected_stats s1 = persistent? STAT_MEM_REALLOC_COUNT:STAT_MEM_EREALLOC_COUNT; in _mysqlnd_perealloc()
299 MYSQLND_INC_GLOBAL_STATISTIC_W_VALUE2(s1, 1, s2, new_size); in _mysqlnd_perealloc()
/PHP-8.0/ext/standard/tests/strings/
H A Dstrval_variation2.phpt8 $s1 = "\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f";
26 echo bin2hex(strval($s1));
/PHP-8.0/ext/opcache/
H A Dzend_accelerator_util_funcs.c856 #define ADLER32_DO1(buf) {s1 += *(buf); s2 += s1;}
864 unsigned int s1 = checksum & 0xffff; in zend_adler32() local
875 s1 %= ADLER32_BASE; in zend_adler32()
895 s1 %= ADLER32_BASE; in zend_adler32()
899 return (s2 << 16) | s1; in zend_adler32()

Completed in 215 milliseconds

123456