Home
last modified time | relevance | path

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

12345

/PHP-7.2/Zend/
H A Dzend_string.h297 static zend_always_inline zend_bool zend_string_equals(zend_string *s1, zend_string *s2) in zend_string_equals() argument
299 …return s1 == s2 || (ZSTR_LEN(s1) == ZSTR_LEN(s2) && !memcmp(ZSTR_VAL(s1), ZSTR_VAL(s2), ZSTR_LEN(s… in zend_string_equals()
302 #define zend_string_equals_ci(s1, s2) \ argument
303 …(ZSTR_LEN(s1) == ZSTR_LEN(s2) && !zend_binary_strcasecmp(ZSTR_VAL(s1), ZSTR_LEN(s1), ZSTR_VAL(s2),…
H A Dzend_operators.c2633 if (s1 == s2) { in zend_binary_strcmp()
2649 if (s1 == s2) { in zend_binary_strncmp()
2666 if (s1 == s2) { in zend_binary_strcasecmp()
2688 if (s1 == s2) { in zend_binary_strncasecmp()
2709 if (s1 == s2) { in zend_binary_strcasecmp_l()
2731 if (s1 == s2) { in zend_binary_strncasecmp_l()
2749 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()
2755 …return zend_binary_strncmp(Z_STRVAL_P(s1), Z_STRLEN_P(s1), Z_STRVAL_P(s2), Z_STRLEN_P(s2), Z_LVAL_… in zend_binary_zval_strncmp()
2761 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()
2779 (ret2 = is_numeric_string_ex(s2->val, s2->len, &lval2, &dval2, 0, &oflow2))) {
[all …]
H A Dzend_operators.h353 ZEND_API int ZEND_FASTCALL zend_binary_zval_strcmp(zval *s1, zval *s2);
354 ZEND_API int ZEND_FASTCALL zend_binary_zval_strncmp(zval *s1, zval *s2, zval *s3);
355 ZEND_API int ZEND_FASTCALL zend_binary_zval_strcasecmp(zval *s1, zval *s2);
356 ZEND_API int ZEND_FASTCALL zend_binary_zval_strncasecmp(zval *s1, zval *s2, zval *s3);
357 ZEND_API int ZEND_FASTCALL zend_binary_strcmp(const char *s1, size_t len1, const char *s2, size_t l…
358 ZEND_API int ZEND_FASTCALL zend_binary_strncmp(const char *s1, size_t len1, const char *s2, size_t …
359 ZEND_API int ZEND_FASTCALL zend_binary_strcasecmp(const char *s1, size_t len1, const char *s2, size…
360 ZEND_API int ZEND_FASTCALL zend_binary_strncasecmp(const char *s1, size_t len1, const char *s2, siz…
361 ZEND_API int ZEND_FASTCALL zend_binary_strcasecmp_l(const char *s1, size_t len1, const char *s2, si…
362 ZEND_API int ZEND_FASTCALL zend_binary_strncasecmp_l(const char *s1, size_t len1, const char *s2, s…
[all …]
/PHP-7.2/ext/oci8/tests/
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_scope1.phpt41 $s2 = f();
51 oci_execute($s2);
H A Dconnect_scope2.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.2/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.2/ext/standard/
H A Dphp_lcg.h28 int32_t s2; member
H A Dlevenshtein.c30 static zend_long reference_levdist(const char *s1, size_t l1, const char *s2, size_t l2, zend_long … in reference_levdist() argument
56 c0 = p1[i2] + ((s1[i1] == s2[i2]) ? 0 : cost_rep); in reference_levdist()
/PHP-7.2/ext/zip/lib/
H A Dzip_source_pkware.c64 zip_source_t *s2; in zip_source_pkware() local
87 if ((s2=zip_source_layered(za, src, pkware_decrypt, ctx)) == NULL) { in zip_source_pkware()
92 return s2; in zip_source_pkware()
/PHP-7.2/ext/mbstring/
H A Dmb_gpc.c196 const char *s1, *s2; in _php_mb_encoding_handler_ex() local
219 for (s2=info->separator; *s2 != '\0'; s2++) { in _php_mb_encoding_handler_ex()
220 if (*s1 == *s2) { in _php_mb_encoding_handler_ex()
/PHP-7.2/ext/mbstring/libmbfl/filters/
H A Dmbfilter_iso2022_jp_ms.c295 int c1, c2, s1, s2; in mbfl_filt_conv_wchar_2022jpms() local
298 s2 = 0; in mbfl_filt_conv_wchar_2022jpms()
317 s2 = 1; in mbfl_filt_conv_wchar_2022jpms()
343 if ((s1 <= 0) || (s1 >= 0xa1a1 && s2 == 0)) { /* not found or X 0212 */ in mbfl_filt_conv_wchar_2022jpms()
/PHP-7.2/ext/mysqlnd/
H A Dmysqlnd_alloc.c151 enum mysqlnd_collected_stats s2 = persistent? STAT_MEM_MALLOC_AMOUNT:STAT_MEM_EMALLOC_AMOUNT; in _mysqlnd_pemalloc()
153 MYSQLND_INC_GLOBAL_STATISTIC_W_VALUE2(s1, 1, s2, size); in _mysqlnd_pemalloc()
234 enum mysqlnd_collected_stats s2 = persistent? STAT_MEM_CALLOC_AMOUNT:STAT_MEM_ECALLOC_AMOUNT; in _mysqlnd_pecalloc()
236 MYSQLND_INC_GLOBAL_STATISTIC_W_VALUE2(s1, 1, s2, size); in _mysqlnd_pecalloc()
320 enum mysqlnd_collected_stats s2 = persistent? STAT_MEM_REALLOC_AMOUNT:STAT_MEM_EREALLOC_AMOUNT; in _mysqlnd_perealloc()
322 MYSQLND_INC_GLOBAL_STATISTIC_W_VALUE2(s1, 1, s2, new_size); in _mysqlnd_perealloc()
/PHP-7.2/ext/standard/tests/strings/
H A Dstrnatcasecmp_variation1.phpt7 /* Prototype : int strnatcasecmp(string s1, string s2)

Completed in 82 milliseconds

12345