Home
last modified time | relevance | path

Searched refs:s2 (Results 26 – 50 of 110) sorted by relevance

12345

/PHP-8.2/ext/opcache/tests/opt/
H A Ddce_001.phpt14 function foo(string $s1, string $s2, string $s3, string $s4) {
15 $x = ($s1 . $s2) . ($s3 . $s4);
32 0001 CV1($s2) = RECV 2
/PHP-8.2/ext/standard/tests/strings/
H A Dhtmlspecialchars_basic.phpt8 $s2 = "&&abc<>\"&\n";
14 echo "Test 2: " . htmlspecialchars ($s2);
19 echo "Test 7: " . htmlspecialchars ($s2,ENT_NOQUOTES);
24 echo "Test 12: " . htmlspecialchars ($s2,ENT_COMPAT);
29 echo "Test 17: " . htmlspecialchars ($s2,ENT_QUOTES);
36 echo "Test 22: " . htmlspecialchars ($s2,ENT_COMPAT, "ISO-8859-1");
42 $s2 = "&quot;&amp;123&lt;456&quot;\n";
45 echo "Test 26: " . htmlspecialchars ($s2,ENT_NOQUOTES, "ISO-8859-1", false);
50 echo "Test 29: " . htmlspecialchars ($s2, ENT_NOQUOTES, "ISO-8859-1", true);
/PHP-8.2/ext/random/tests/
H A Dengines.inc45 private int $s2,
61 $this->s2 ^= $this->s0;
63 $this->s1 ^= $this->s2;
66 $this->s2 ^= $t;
/PHP-8.2/ext/mbstring/tests/
H A Dcommon.inc9 's2' => 'English Text'
15 public $s2 = 'English Text';
/PHP-8.2/ext/mbstring/libmbfl/filters/
H A Dmbfilter_sjis_mobile.c226 s2 = c2; \
229 s2--; \
231 s2 += 0x20; \
233 s2 += 0x7e; \
244 s2 = c2; \
247 s2++; \
249 s2 -= 0x20; \
252 s2 -= 0x7e; \
773 s2 = 1; in mbfl_filt_conv_wchar_sjis_mobile()
891 unsigned int s1, s2; in mb_sjis_docomo_to_wchar() local
[all …]
H A Dmbfilter_iso2022jp_mobile.c103 s2 = c2; \
106 s2--; \
108 s2 += 0x20; \
110 s2 += 0x7e; \
121 s2 = c2; \
124 s2++; \
126 s2 -= 0x20; \
129 s2 -= 0x7e; \
138 s2 = 1
388 int c1, c2, s1 = 0, s2 = 0; in mbfl_filt_conv_wchar_2022jp_mobile() local
[all …]
/PHP-8.2/Zend/tests/
H A Dadd_006.phpt10 $s2 = "876222numeric";
20 $c = $i + $s2;
36 $c = $s2 + $i;
H A Dnot_001.phpt9 $s2 = "some";
14 $s1 = ~$s2;
/PHP-8.2/ext/standard/tests/array/
H A Darray_sum.phpt14 $s2 = array_sum($b);
15 var_dump($s1, $s2);
/PHP-8.2/ext/oci8/tests/
H A Dbug40415.phpt23 $s2 = oci_parse($c, $drop_2);
25 @oci_execute($s2);
28 $s2 = oci_parse($c, $create_2);
30 oci_execute($s2);
93 $s2 = oci_parse($c, $drop_2);
95 @oci_execute($s2);
H A Drefcur_prefetch_4.phpt78 $s2 = oci_parse($c,$sql2);
79 if (!oci_bind_by_name($s2, ":curs1", $cur1, -1, SQLT_RSET)) {
82 if (!oci_bind_by_name($s2, ":c1", $c1, -1, SQLT_INT)) {
85 if (!oci_bind_by_name($s2, ":c2", $c2, 20, SQLT_CHR)) {
93 if (!oci_bind_by_name($s2,":curs1",$cur1,-1,SQLT_RSET)) {
96 oci_execute($s2);
126 if (!oci_bind_by_name($s2,":curs1",$cur1,-1,SQLT_RSET)) {
129 oci_execute($s2);
H A Ddriver_name.phpt51 $s2 = oci_parse($conn,$sel_stmt);
52 oci_execute($s2,OCI_DEFAULT);
53 oci_fetch($s2);
54 echo "The value of DRIVER_NAME is ".trim(oci_result($s2,1))."\n";
H A Ddriver_name_11gR2.phpt48 $s2 = oci_parse($conn,$sel_stmt);
49 oci_execute($s2,OCI_DEFAULT);
50 oci_fetch($s2);
51 echo "The value of DRIVER_NAME is ".trim(oci_result($s2,1))."\n";
H A Dbug35973.phpt18 $s2 = oci_parse($c, "create table test_nclob (nc NCLOB)");
19 oci_execute($s2);
/PHP-8.2/ext/fileinfo/libmagic/
H A Dstrcasestr.c49 _strncasecmp(const char *s1, const char *s2, size_t n) in _strncasecmp() argument
53 *us2 = (const unsigned char *)s2; in _strncasecmp()
/PHP-8.2/Zend/
H A Dzend_string.h344 static zend_always_inline bool zend_string_equals_cstr(const zend_string *s1, const char *s2, size_… in zend_string_equals_cstr() argument
346 return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); in zend_string_equals_cstr()
351 ZEND_API bool ZEND_FASTCALL zend_string_equal_val(const zend_string *s1, const zend_string *s2);
354 static zend_always_inline bool zend_string_equal_val(const zend_string *s1, const zend_string *s2) in END_EXTERN_C()
356 return !memcmp(ZSTR_VAL(s1), ZSTR_VAL(s2), ZSTR_LEN(s1)); in END_EXTERN_C()
360 …tic zend_always_inline bool zend_string_equal_content(const zend_string *s1, const zend_string *s2)
362 return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2);
365 static zend_always_inline bool zend_string_equals(const zend_string *s1, const zend_string *s2) in zend_string_equals() argument
367 return s1 == s2 || zend_string_equal_content(s1, s2); in zend_string_equals()
370 #define zend_string_equals_ci(s1, s2) \ argument
[all …]
/PHP-8.2/ext/date/lib/
H A Dtimelib.c257 int timelib_strcasecmp(const char *s1, const char *s2) in timelib_strcasecmp() argument
261 size_t len2 = strlen(s2); in timelib_strcasecmp()
264 if (s1 == s2) { in timelib_strcasecmp()
271 c2 = timelib_tolower(*(unsigned char *)s2++); in timelib_strcasecmp()
280 int timelib_strncasecmp(const char *s1, const char *s2, size_t length) in timelib_strncasecmp() argument
284 size_t len2 = strlen(s2); in timelib_strncasecmp()
287 if (s1 == s2) { in timelib_strncasecmp()
293 c2 = timelib_tolower(*(unsigned char *)s2++); in timelib_strncasecmp()
/PHP-8.2/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-8.2/ext/date/tests/
H A Dbug62852_var2.phpt7 $s2 = 'O:3:"Foo":3:{s:4:"date";s:20:"10007-06-07 03:51:49";s:13:"timezone_type";i:3;s:8:"timezone";…
20 unserialize( $s2 );
H A Dbug62852_var3.phpt7 $s2 = 'O:3:"Foo":3:{s:4:"date";s:19:"0000-00-00 00:00:00";s:13:"timezone_type";i:0;s:8:"timezone";s…
20 unserialize( $s2 );
/PHP-8.2/ext/intl/spoofchecker/
H A Dspoofchecker_main.c55 char *s1, *s2; in PHP_METHOD() local
61 &s2, &s2_len, &error_code)) { in PHP_METHOD()
69 …ret = uspoof_areConfusableUTF8(co->uspoof, s1, (int32_t)s1_len, s2, (int32_t)s2_len, SPOOFCHECKER_… in PHP_METHOD()
/PHP-8.2/ext/soap/tests/interop/Round4/GroupH/
H A Dr4_groupH_complex_doclit_008w.phpt29 $s2 = new ExtendedStruct(new SOAPStruct("s2",2,2.2),2,"arg",-3,5);
34 "param2" => $s2,
43 …s2:shortMessage></ns1:param1><ns1:param2><ns2:structMessage><ns2:varString>s2</ns2:varString><ns2:…
45 …ltstring><detail><ns2:ExtendedStructPart><ns1:structMessage><ns1:varString>s2</ns1:varString><ns1:…
/PHP-8.2/ext/random/
H A Dengine_xoshiro256starstar.c63 uint64_t s0 = 0, s1 = 0, s2 = 0, s3 = 0; in jump() local
70 s2 ^= state->state[2]; in jump()
80 state->state[2] = s2; in jump()
84 static inline void seed256(php_random_status *status, uint64_t s0, uint64_t s1, uint64_t s2, uint64… in seed256() argument
90 s->state[2] = s2; in seed256()
/PHP-8.2/ext/opcache/jit/vtune/
H A Dittnotify_config.h282 #define __itt_fstrcmp(s1, s2) lstrcmpA(s1, s2) argument
284 #define __itt_fstrcpyn(s1, b, s2, l) strncpy_s(s1, b, s2, l) argument
323 #define __itt_fstrcmp(s1, s2) strcmp(s1, s2) argument
332 #define __itt_fstrcpyn(s1, b, s2, l) SDL_STRNCPY_S(s1, b, s2, l) argument
334 #define __itt_fstrcpyn(s1, b, s2, l) strncpy(s1, s2, l) argument
/PHP-8.2/ext/spl/tests/
H A DSplObjectStorage_getHash.phpt33 $s2 = new MySplObjectStorage2;
34 $s2[$o2] = "foo";

Completed in 74 milliseconds

12345