Home
last modified time | relevance | path

Searched refs:s1 (Results 126 – 139 of 139) sorted by relevance

123456

/PHP-7.4/Zend/
H A Dzend_strtod.c1906 s1 = s;
1919 s = s1;
1981 n = s1 - s0 - 1;
1991 while(s1 > s0) {
1994 s1 -= i;
1998 if (*--s1 == '.')
2626 for(s1 = s; s1 > s0 && *--s1 == '0'; )
2630 if (c == *s1) {
2632 if (*++s1) {
2639 if (!*++s1) {
[all …]
/PHP-7.4/ext/opcache/
H A Dzend_accelerator_util_funcs.c839 #define ADLER32_DO1(buf) {s1 += *(buf); s2 += s1;}
847 unsigned int s1 = checksum & 0xffff; in zend_adler32() local
858 s1 %= ADLER32_BASE; in zend_adler32()
878 s1 %= ADLER32_BASE; in zend_adler32()
882 return (s2 << 16) | s1; in zend_adler32()
/PHP-7.4/ext/standard/
H A Dstring.c708 zend_string *s1, *s2; in PHP_FUNCTION() local
711 Z_PARAM_STR(s1) in PHP_FUNCTION()
1777 return (p - s1);
1786 register char c = *s1;
1788 for (p = s1;;) {
1792 return p - s1;
5662 zend_string *s1, *s2; local
5665 Z_PARAM_STR(s1)
5669 RETURN_LONG(strnatcmp_ex(ZSTR_VAL(s1), ZSTR_LEN(s1),
6320 zend_string *s1, *s2; local
[all …]
H A Darray.c217 const char *s1, *s2; in php_array_key_compare_string_case() local
223 s1 = f->key->val; in php_array_key_compare_string_case()
227 l1 = buf1 + sizeof(buf1) - 1 - s1; in php_array_key_compare_string_case()
234 l2 = buf2 + sizeof(buf2) - 1 - s1; in php_array_key_compare_string_case()
250 const char *s1, *s2; in php_array_key_compare_string() local
256 s1 = f->key->val; in php_array_key_compare_string()
283 const char *s1, *s2; in php_array_key_compare_string_natural_general() local
289 s1 = f->key->val; in php_array_key_compare_string_natural_general()
334 const char *s1, *s2; in php_array_key_compare_string_locale() local
339 s1 = f->key->val; in php_array_key_compare_string_locale()
[all …]
H A Dstreamsfuncs.c57 php_stream *s1, *s2; in PHP_FUNCTION() local
75 s1 = php_stream_sock_open_from_socket(pair[0], 0); in PHP_FUNCTION()
80 php_stream_auto_cleanup(s1); in PHP_FUNCTION()
83 add_next_index_resource(return_value, s1->res); in PHP_FUNCTION()
H A Dbasic_functions.c2411 ZEND_ARG_INFO(0, s1)
2419 ZEND_ARG_INFO(0, s1)
/PHP-7.4/ext/fileinfo/libmagic/
H A Dapprentice.c3400 unsigned int s3, s2, s1, s0; local
3408 s1 = s[1];
3409 len = (s1 << 8) | s0;
3413 s1 = s[1];
3414 len = (s0 << 8) | s1;
3418 s1 = s[1];
3421 len = (s3 << 24) | (s2 << 16) | (s1 << 8) | s0;
3425 s1 = s[1];
3428 len = (s0 << 24) | (s1 << 16) | (s2 << 8) | s3;
H A Dsoftmagic.c1828 file_strncmp(const char *s1, const char *s2, size_t len, uint32_t flags) in file_strncmp() argument
1836 const unsigned char *a = RCAST(const unsigned char *, s1); in file_strncmp()
/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd_auth.c538 php_mysqlnd_crypt(zend_uchar *buffer, const zend_uchar *s1, const zend_uchar *s2, size_t len) in php_mysqlnd_crypt() argument
540 const zend_uchar *s1_end = s1 + len; in php_mysqlnd_crypt()
541 while (s1 < s1_end) { in php_mysqlnd_crypt()
542 *buffer++= *s1++ ^ *s2++; in php_mysqlnd_crypt()
/PHP-7.4/ext/pcre/pcre2lib/sljit/
H A DsljitNativeSPARC_common.c116 #define S1(s1) (reg_map[s1] << 14) argument
117 #define FS1(s1) (freg_map[s1] << 14) argument
118 #define S1A(s1) ((s1) << 14) argument
/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_main.c643 char *s1, *s2; in php_cgi_ini_activate_user_config() local
660 s1 = (char *) doc_root; in php_cgi_ini_activate_user_config()
664 s1 = path; in php_cgi_ini_activate_user_config()
673 if (strncmp(s1, s2, s_len) == 0) { in php_cgi_ini_activate_user_config()
/PHP-7.4/sapi/cgi/
H A Dcgi_main.c802 char *s1, *s2; local
820 s1 = (char *) doc_root;
824 s1 = path;
834 if (strnicmp(s1, s2, s_len) == 0) {
836 if (strncmp(s1, s2, s_len) == 0) {
/PHP-7.4/ext/spl/
H A Dspl_observer.c345 spl_SplObjectStorageElement *s1 = (spl_SplObjectStorageElement*)Z_PTR_P(e1); in spl_object_storage_compare_info() local
349 if (compare_function(&result, &s1->inf, &s2->inf) == FAILURE) { in spl_object_storage_compare_info()
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_internal.h186 #define strncmp(s1,s2,m) _strncmp(s1,s2,m) argument

Completed in 124 milliseconds

123456