Home
last modified time | relevance | path

Searched refs:s2 (Results 26 – 50 of 106) sorted by last modified time

12345

/PHP-7.4/ext/standard/tests/strings/
H A Dstrnatcasecmp_variation1.phpt7 /* Prototype : int strnatcasecmp(string s1, string s2)
H A Dhtmlspecialchars_basic.phpt13 $s2 = "&&abc<>\"&\n";
19 echo "Test 2: " . htmlspecialchars ($s2);
24 echo "Test 7: " . htmlspecialchars ($s2,ENT_NOQUOTES);
29 echo "Test 12: " . htmlspecialchars ($s2,ENT_COMPAT);
34 echo "Test 17: " . htmlspecialchars ($s2,ENT_QUOTES);
41 echo "Test 22: " . htmlspecialchars ($s2,ENT_COMPAT, "ISO-8859-1");
47 $s2 = "&quot;&amp;123&lt;456&quot;\n";
50 echo "Test 26: " . htmlspecialchars ($s2,ENT_NOQUOTES, "ISO-8859-1", false);
55 echo "Test 29: " . htmlspecialchars ($s2, ENT_NOQUOTES, "ISO-8859-1", true);
/PHP-7.4/ext/standard/tests/file/
H A Dfclose_variation1.phpt7 $s2 = $s;
8 separate_zval($s2);
10 echo fread($s2, strlen("<?php"));
/PHP-7.4/ext/standard/
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()
H A Dphp_lcg.h26 int32_t s2; member
H A Dphp_string.h137 PHPAPI size_t php_strspn(char *s1, char *s2, char *s1_end, char *s2_end);
138 PHPAPI size_t php_strcspn(char *s1, char *s2, char *s1_end, char *s2_end);
H A Dlcg.c63 MODMULT(52774, 40692, 3791, 2147483399L, LCG(s2)); in php_combined_lcg()
65 z = LCG(s1) - LCG(s2); in php_combined_lcg()
84 LCG(s2) = (zend_long) tsrm_thread_id(); in lcg_seed()
86 LCG(s2) = (zend_long) getpid(); in lcg_seed()
91 LCG(s2) ^= (tv.tv_usec<<11); in lcg_seed()
/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];
/PHP-7.4/ext/spl/tests/
H A DSplObjectStorage_getHash.phpt32 $s2 = new MySplObjectStorage2;
33 $s2[$o2] = "foo";
/PHP-7.4/ext/oci8/tests/
H A Dimp_res_insert.phpt58 $s2 = oci_parse($c2, "select * from imp_res_insert_tab order by 1");
59 oci_execute($s2, OCI_NO_AUTO_COMMIT);
60 oci_fetch_all($s2, $res);
69 $s2 = oci_parse($c2, "select * from imp_res_insert_tab order by 1");
70 oci_execute($s2, OCI_NO_AUTO_COMMIT);
71 oci_fetch_all($s2, $res);
80 $s2 = oci_parse($c2, "select * from imp_res_insert_tab order by 1");
81 oci_execute($s2, OCI_NO_AUTO_COMMIT);
82 oci_fetch_all($s2, $res);
91 oci_execute($s2, OCI_NO_AUTO_COMMIT);
[all …]
H A Ddefine0.phpt38 $s2 = oci_parse($c, 'select string from define0_tab');
39 oci_define_by_name($s2, 'STRING', $string);
40 oci_execute($s2);
41 while (oci_fetch($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 Dimp_res_get_4.phpt69 $s2 = oci_get_implicit_resultset($s);
72 $row = oci_fetch_array($s2, OCI_ASSOC+OCI_RETURN_NULLS);
76 $row = oci_fetch_array($s2, OCI_ASSOC+OCI_RETURN_NULLS);
80 $row = oci_fetch_array($s2, OCI_ASSOC+OCI_RETURN_NULLS);
88 $s2 = oci_get_implicit_resultset($s);
91 $row = oci_fetch_array($s2, OCI_ASSOC+OCI_RETURN_NULLS);
95 $row = oci_fetch_array($s2, OCI_ASSOC+OCI_RETURN_NULLS);
99 $row = oci_fetch_array($s2, OCI_ASSOC+OCI_RETURN_NULLS);
103 $row = oci_fetch_array($s2, OCI_ASSOC+OCI_RETURN_NULLS);
107 $row = oci_fetch_array($s2, OCI_ASSOC+OCI_RETURN_NULLS);
H A Dimp_res_get_all.phpt43 $s2 = oci_get_implicit_resultset($s);
44 oci_fetch_all($s2, $res);
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 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/mysqlnd/
H A Dmysqlnd_alloc.c143 enum mysqlnd_collected_stats s2 = persistent? STAT_MEM_MALLOC_AMOUNT:STAT_MEM_EMALLOC_AMOUNT; in _mysqlnd_pemalloc()
145 MYSQLND_INC_GLOBAL_STATISTIC_W_VALUE2(s1, 1, s2, size); in _mysqlnd_pemalloc()
219 enum mysqlnd_collected_stats s2 = persistent? STAT_MEM_CALLOC_AMOUNT:STAT_MEM_ECALLOC_AMOUNT; in _mysqlnd_pecalloc()
221 MYSQLND_INC_GLOBAL_STATISTIC_W_VALUE2(s1, 1, s2, size); in _mysqlnd_pecalloc()
299 enum mysqlnd_collected_stats s2 = persistent? STAT_MEM_REALLOC_AMOUNT:STAT_MEM_EREALLOC_AMOUNT; in _mysqlnd_perealloc()
301 MYSQLND_INC_GLOBAL_STATISTIC_W_VALUE2(s1, 1, s2, new_size); in _mysqlnd_perealloc()
/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/intl/spoofchecker/
H A Dspoofchecker_class.c82 ZEND_ARG_INFO(0, s2)
H A Dspoofchecker_main.c62 char *s1, *s2; in PHP_METHOD() local
68 &s2, &s2_len, &error_code)) { in PHP_METHOD()
76 …ret = uspoof_areConfusableUTF8(co->uspoof, s1, (int32_t)s1_len, s2, (int32_t)s2_len, SPOOFCHECKER_… in PHP_METHOD()
/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_env.c103 static char * nvmatch(char *s1, char *s2) /* {{{ */ in nvmatch() argument
105 while(*s1 == *s2++) in nvmatch()
108 return s2; in nvmatch()
111 if(*s1 == '\0' && *(s2-1) == '=') { in nvmatch()
112 return s2; in nvmatch()
/PHP-7.4/ext/standard/tests/array/
H A Darray_sum.phpt14 $s2 = array_sum($b);
15 var_dump($s1, $s2);
/PHP-7.4/ext/soap/tests/interop/Round4/GroupH/
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));

Completed in 91 milliseconds

12345