Home
last modified time | relevance | path

Searched refs:s2 (Results 51 – 75 of 106) sorted by relevance

12345

/PHP-7.4/ext/oci8/tests/
H A Dbug35973.phpt16 $s2 = oci_parse($c, "create table test_nclob (nc NCLOB)");
17 oci_execute($s2);
H A Drefcur_prefetch_2.phpt76 $s2 = oci_parse($c,$sql2);
77 if (!oci_bind_by_name($s2, ":curs1", $cur1, -1, SQLT_RSET)) {
80 if (!oci_bind_by_name($s2, ":c1", $c1, -1, SQLT_INT)) {
83 if (!oci_bind_by_name($s2, ":c2", $c2, 20, SQLT_CHR)) {
123 if (!oci_bind_by_name($s2,":curs1",$cur1,-1,SQLT_RSET)) {
126 oci_execute($s2);
H A Dbug37581.phpt28 $s2 = oci_parse($c, $p2);
30 oci_execute($s2);
H A Dimp_res_get_2.phpt68 $s2 = oci_get_implicit_resultset($s);
69 while (($row = oci_fetch_array($s2, OCI_ASSOC+OCI_RETURN_NULLS))) {
75 oci_free_statement($s2);
H A Dconnect_scope2.phpt41 $s2 = f();
51 oci_execute($s2);
H A Dconnect_scope1.phpt41 $s2 = f();
51 oci_execute($s2);
H A Ddefine6.phpt49 $s2 = oci_parse($c, $sql);
51 oci_bind_by_name($s2, ":curs", $cursor2, -1, OCI_B_CURSOR);
52 oci_execute($s2);
H A Drefcur_prefetch_1.phpt94 $s2 = oci_parse($c,$sql2);
95 if (!oci_bind_by_name($s2,":curs1",$cur1,-1,SQLT_RSET)) {
98 if (!oci_bind_by_name($s2,":c1",$c1,-1,SQLT_INT)) {
101 if (!oci_bind_by_name($s2,":c2",$c2,20,SQLT_CHR)) {
104 oci_execute($s2);
H A Dimp_res_get_all.phpt43 $s2 = oci_get_implicit_resultset($s);
44 oci_fetch_all($s2, $res);
H A Dbug51291_1.phpt73 $s2 = oci_parse($c, 'select 1 from dual');
74 $r = oci_execute($s2, OCI_DEFAULT);
82 var_dump(oci_error(), oci_error($c), oci_error($s), oci_error($s2));
111 $s2 = oci_parse($c, 'select reallynothere from dual');
112 $r = oci_execute($s2, OCI_DEFAULT);
120 var_dump(oci_error(), oci_error($c), oci_error($s), oci_error($s2));
/PHP-7.4/ext/standard/
H A Dphp_lcg.h26 int32_t s2; member
H A Dlevenshtein.c29 static zend_long reference_levdist(const char *s1, size_t l1, const char *s2, size_t l2, zend_long … in reference_levdist() argument
55 c0 = p1[i2] + ((s1[i1] == s2[i2]) ? 0 : cost_rep); in reference_levdist()
/PHP-7.4/ext/soap/tests/interop/Round4/GroupH/
H A Dr4_groupH_complex_doclit_007w.phpt37 $s2 = new ExtendedStruct(new SOAPStruct("s2",2,2.2),2,"arg",-3,5);
42 "param2" => $s2,
51 …s2:shortMessage></ns1:param1><ns1:param2><ns2:structMessage><ns2:varString>s2</ns2:varString><ns2:…
H A Dr4_groupH_complex_doclit_009w.phpt37 $s2 = new ExtendedStruct(new SOAPStruct("s2",2,2.2),2,"arg",-3,5);
42 "param2" => $s2,
51 …s2:shortMessage></ns1:param1><ns1:param2><ns2:structMessage><ns2:varString>s2</ns2:varString><ns2:…
H A Dr4_groupH_complex_doclit_010w.phpt37 $s2 = new ExtendedStruct(new SOAPStruct("s2",2,2.2),2,"arg",-3,5);
42 "param2" => $s2,
51 …s2:shortMessage></ns1:param1><ns1:param2><ns2:structMessage><ns2:varString>s2</ns2:varString><ns2:…
H A Dr4_groupH_complex_doclit_004w.phpt24 $s2 = new BaseStruct(new SOAPStruct('arg2',34,325.325),12);
28 "param2" => $s2));
H A Dr4_groupH_complex_doclit_005w.phpt24 $s2 = new BaseStruct(new SOAPStruct('arg2',34,325.325),12);
28 "param2" => $s2));
H A Dr4_groupH_complex_doclit_006w.phpt24 $s2 = new BaseStruct(new SOAPStruct('arg2',34,325.325),12);
28 "param2" => $s2));
/PHP-7.4/Zend/tests/
H A Dbug79934.phpt13 eval("\$s2 = <<<HEREDOC\n a\n\n b\n HEREDOC;");
14 var_dump(addcslashes($s2, "\n"));
/PHP-7.4/Zend/
H A Dzend_operators.h407 ZEND_API int ZEND_FASTCALL zend_binary_zval_strcmp(zval *s1, zval *s2);
408 ZEND_API int ZEND_FASTCALL zend_binary_zval_strncmp(zval *s1, zval *s2, zval *s3);
409 ZEND_API int ZEND_FASTCALL zend_binary_zval_strcasecmp(zval *s1, zval *s2);
410 ZEND_API int ZEND_FASTCALL zend_binary_zval_strncasecmp(zval *s1, zval *s2, zval *s3);
418 ZEND_API int ZEND_FASTCALL zendi_smart_streq(zend_string *s1, zend_string *s2);
419 ZEND_API int ZEND_FASTCALL zendi_smart_strcmp(zend_string *s1, zend_string *s2);
832 static zend_always_inline int zend_fast_equal_strings(zend_string *s1, zend_string *s2) in zend_fast_equal_strings() argument
834 if (s1 == s2) { in zend_fast_equal_strings()
836 } else if (ZSTR_VAL(s1)[0] > '9' || ZSTR_VAL(s2)[0] > '9') { in zend_fast_equal_strings()
837 return zend_string_equal_content(s1, s2); in zend_fast_equal_strings()
[all …]
H A Dzend_operators.c2725 if (s1 == s2) { in zend_binary_strcmp()
2741 if (s1 == s2) { in zend_binary_strncmp()
2758 if (s1 == s2) { in zend_binary_strcasecmp()
2780 if (s1 == s2) { in zend_binary_strncasecmp()
2801 if (s1 == s2) { in zend_binary_strcasecmp_l()
2823 if (s1 == s2) { in zend_binary_strncasecmp_l()
2841 return zend_binary_strcmp(Z_STRVAL_P(s1), Z_STRLEN_P(s1), Z_STRVAL_P(s2), Z_STRLEN_P(s2)); in zend_binary_zval_strcmp()
2853 return zend_binary_strcasecmp_l(Z_STRVAL_P(s1), Z_STRLEN_P(s1), Z_STRVAL_P(s2), Z_STRLEN_P(s2)); in zend_binary_zval_strcasecmp()
2871 (ret2 = is_numeric_string_ex(s2->val, s2->len, &lval2, &dval2, 0, &oflow2))) {
2919 (ret2 = is_numeric_string_ex(s2->val, s2->len, &lval2, &dval2, 0, &oflow2))) {
[all …]
/PHP-7.4/ext/mbstring/
H A Dmb_gpc.c187 const char *s1, *s2; in _php_mb_encoding_handler_ex() local
210 for (s2=info->separator; *s2 != '\0'; s2++) { in _php_mb_encoding_handler_ex()
211 if (*s1 == *s2) { in _php_mb_encoding_handler_ex()
/PHP-7.4/ext/standard/tests/strings/
H A Dstrnatcasecmp_variation1.phpt7 /* Prototype : int strnatcasecmp(string s1, string s2)
/PHP-7.4/ext/mbstring/libmbfl/filters/
H A Dmbfilter_iso2022_jp_ms.c297 int c1, c2, s1, s2; in mbfl_filt_conv_wchar_2022jpms() local
300 s2 = 0; in mbfl_filt_conv_wchar_2022jpms()
319 s2 = 1; in mbfl_filt_conv_wchar_2022jpms()
345 if ((s1 <= 0) || (s1 >= 0xa1a1 && s2 == 0)) { /* not found or X 0212 */ in mbfl_filt_conv_wchar_2022jpms()
/PHP-7.4/ext/standard/html_tables/
H A Dhtml_table_gen.php526 $s2 = (hexdec($el[1]) & 0xFC0) >> 6; variable
529 $mstable[$s1][$s2][$s3] = "";
531 $mstable[$s1][$s2][$s3] = $el[0];

Completed in 46 milliseconds

12345