Home
last modified time | relevance | path

Searched refs:s2 (Results 76 – 94 of 94) sorted by last modified time

1234

/PHP-5.5/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()
H A Dmbfilter_iso2022jp_mobile.c100 s2 = c2; \
103 s2--; \
105 s2 += 0x20; \
107 s2 += 0x7e; \
121 s2 = c2; \
124 s2++; \
126 s2 -= 0x20; \
129 s2 -= 0x7e; \
137 s2 = 1
325 s2 = 0; in mbfl_filt_conv_wchar_2022jp_mobile()
[all …]
/PHP-5.5/ext/intl/spoofchecker/
H A Dspoofchecker_main.c62 char *s1, *s2; in PHP_METHOD() local
68 &s2, &s2_len, &error_code)) { in PHP_METHOD()
74 ret = uspoof_areConfusableUTF8(co->uspoof, s1, s1_len, s2, s2_len, SPOOFCHECKER_ERROR_CODE_P(co)); in PHP_METHOD()
H A Dspoofchecker_class.c101 ZEND_ARG_INFO(0, s2)
/PHP-5.5/ext/fileinfo/libmagic/
H A Dsoftmagic.c1778 file_strncmp(const char *s1, const char *s2, size_t len, uint32_t flags) in file_strncmp() argument
1787 const unsigned char *b = (const unsigned char *)s2; in file_strncmp()
/PHP-5.5/ext/ereg/regex/
H A Dengine.c52 #define AT(t, p1, p2, s1, s2) at(m, t, p1, p2, s1, s2) argument
56 #define AT(t, p1, p2, s1, s2) /* nothing */ argument
/PHP-5.5/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-5.5/Zend/
H A Dzend_strtod.c1594 s2 = j; in zend_dtoa()
1598 s2 = 0; in zend_dtoa()
1603 s2 += k; in zend_dtoa()
1818 s2 += i; in zend_dtoa()
1822 i = m2 < s2 ? m2 : s2; in zend_dtoa()
1825 s2 -= i; in zend_dtoa()
1855 s2 += Log2P; in zend_dtoa()
1880 s2 += i; in zend_dtoa()
1886 s2 += i; in zend_dtoa()
1890 if (s2 > 0) in zend_dtoa()
[all …]
H A Dzend_operators.h360 ZEND_API int zend_binary_zval_strcmp(zval *s1, zval *s2);
361 ZEND_API int zend_binary_zval_strncmp(zval *s1, zval *s2, zval *s3);
362 ZEND_API int zend_binary_zval_strcasecmp(zval *s1, zval *s2);
363 ZEND_API int zend_binary_zval_strncasecmp(zval *s1, zval *s2, zval *s3);
364 ZEND_API int zend_binary_strcmp(const char *s1, uint len1, const char *s2, uint len2);
365 ZEND_API int zend_binary_strncmp(const char *s1, uint len1, const char *s2, uint len2, uint length);
366 ZEND_API int zend_binary_strcasecmp(const char *s1, uint len1, const char *s2, uint len2);
367 ZEND_API int zend_binary_strncasecmp(const char *s1, uint len1, const char *s2, uint len2, uint len…
368 ZEND_API int zend_binary_strncasecmp_l(const char *s1, uint len1, const char *s2, uint len2, uint l…
370 ZEND_API void zendi_smart_strcmp(zval *result, zval *s1, zval *s2);
H A Dzend_operators.c2011 if (s1 == s2) { in zend_binary_strcmp()
2027 if (s1 == s2) { in zend_binary_strncmp()
2044 if (s1 == s2) { in zend_binary_strcasecmp()
2066 if (s1 == s2) { in zend_binary_strncasecmp()
2087 if (s1 == s2) { in zend_binary_strcasecmp_l()
2109 if (s1 == s2) { in zend_binary_strncasecmp_l()
2127 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()
2133 …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()
2139 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()
2145 …return zend_binary_strncasecmp_l(Z_STRVAL_P(s1), Z_STRLEN_P(s1), Z_STRVAL_P(s2), Z_STRLEN_P(s2), Z… in zend_binary_zval_strncasecmp()
[all …]
H A Dzend_config.w32.h54 #define strcasecmp(s1, s2) stricmp(s1, s2) argument
55 #define strncasecmp(s1, s2, n) strnicmp(s1, s2, n) argument
H A Dzend_builtin_functions.c496 char *s1, *s2; in ZEND_FUNCTION() local
499 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &s1, &s1_len, &s2, &s2_len) == FAILURE)… in ZEND_FUNCTION()
503 RETURN_LONG(zend_binary_strcmp(s1, s1_len, s2, s2_len)); in ZEND_FUNCTION()
512 char *s1, *s2; in ZEND_FUNCTION() local
516 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ssl", &s1, &s1_len, &s2, &s2_len, &len) == F… in ZEND_FUNCTION()
525 RETURN_LONG(zend_binary_strncmp(s1, s1_len, s2, s2_len, len)); in ZEND_FUNCTION()
534 char *s1, *s2; in ZEND_FUNCTION() local
537 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &s1, &s1_len, &s2, &s2_len) == FAILURE)… in ZEND_FUNCTION()
541 RETURN_LONG(zend_binary_strcasecmp(s1, s1_len, s2, s2_len)); in ZEND_FUNCTION()
550 char *s1, *s2; in ZEND_FUNCTION() local
[all …]
/PHP-5.5/Zend/tests/
H A Dshift_001.phpt8 $s2 = "45345some";
16 $s2 <<= 3;
17 var_dump($s2);
H A Dshift_002.phpt8 $s2 = "45345some";
16 $s2 >>= 3;
17 var_dump($s2);
H A Dnot_001.phpt9 $s2 = "some";
14 $s1 = ~$s2;
H A Dadd_006.phpt10 $s2 = "876222numeric";
17 $c = $i + $s2;
29 $c = $s2 + $i;
/PHP-5.5/ext/standard/tests/array/
H A Darray_sum.phpt14 $s2 = array_sum($b);
15 var_dump($s1, $s2);
/PHP-5.5/ext/soap/tests/interop/Round4/GroupH/
H A Dround4_groupH_complex_rpcenc.inc16 function echoMultipleFaults1($which, $s1, $s2) {
18 …return new SoapFault("Server", "Fault in response to 'echoMultipleFaults1'.", null, $s2, "ComplexF…
24 function echoMultipleFaults2($which, $s1, $s2, $s3) {
26 …return new SoapFault("Server", "Fault in response to 'echoMultipleFaults2'.", null, $s2, "ComplexF…

Completed in 79 milliseconds

1234