Home
last modified time | relevance | path

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

123456

/PHP-8.0/ext/standard/
H A Dstreamsfuncs.c54 php_stream *s1, *s2; in PHP_FUNCTION() local
70 s1 = php_stream_sock_open_from_socket(pair[0], 0); in PHP_FUNCTION()
71 if (s1 == NULL) { in PHP_FUNCTION()
79 php_stream_free(s1, PHP_STREAM_FREE_CLOSE); in PHP_FUNCTION()
89 php_stream_auto_cleanup(s1); in PHP_FUNCTION()
92 add_next_index_resource(return_value, s1->res); in PHP_FUNCTION()
H A Darray.c229 const char *s1, *s2; in php_array_key_compare_string_case_unstable_i() local
235 s1 = f->key->val; in php_array_key_compare_string_case_unstable_i()
239 l1 = buf1 + sizeof(buf1) - 1 - s1; in php_array_key_compare_string_case_unstable_i()
246 l2 = buf2 + sizeof(buf2) - 1 - s1; in php_array_key_compare_string_case_unstable_i()
254 const char *s1, *s2; in php_array_key_compare_string_unstable_i() local
260 s1 = f->key->val; in php_array_key_compare_string_unstable_i()
279 const char *s1, *s2; in php_array_key_compare_string_natural_general() local
285 s1 = f->key->val; in php_array_key_compare_string_natural_general()
328 const char *s1, *s2; in php_array_key_compare_string_locale_unstable_i() local
333 s1 = f->key->val; in php_array_key_compare_string_locale_unstable_i()
[all …]
/PHP-8.0/ext/fileinfo/libmagic/
H A Dapprentice.c3387 unsigned int s3, s2, s1, s0; local
3395 s1 = s[1];
3396 len = (s1 << 8) | s0;
3400 s1 = s[1];
3401 len = (s0 << 8) | s1;
3405 s1 = s[1];
3408 len = (s3 << 24) | (s2 << 16) | (s1 << 8) | s0;
3412 s1 = s[1];
3415 len = (s0 << 24) | (s1 << 16) | (s2 << 8) | s3;
H A Dsoftmagic.c1893 file_strncmp(const char *s1, const char *s2, size_t len, size_t maxlen, in file_strncmp() argument
1902 const unsigned char *a = RCAST(const unsigned char *, s1); in file_strncmp()
/PHP-8.0/ext/mysqlnd/
H A Dmysqlnd_auth.c536 php_mysqlnd_crypt(zend_uchar *buffer, const zend_uchar *s1, const zend_uchar *s2, size_t len) in php_mysqlnd_crypt() argument
538 const zend_uchar *s1_end = s1 + len; in php_mysqlnd_crypt()
539 while (s1 < s1_end) { in php_mysqlnd_crypt()
540 *buffer++= *s1++ ^ *s2++; in php_mysqlnd_crypt()
/PHP-8.0/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-8.0/sapi/fpm/fpm/
H A Dfpm_main.c636 char *s1, *s2; in php_cgi_ini_activate_user_config() local
653 s1 = (char *) doc_root; in php_cgi_ini_activate_user_config()
657 s1 = path; in php_cgi_ini_activate_user_config()
666 if (strncmp(s1, s2, s_len) == 0) { in php_cgi_ini_activate_user_config()
/PHP-8.0/sapi/cgi/
H A Dcgi_main.c797 char *s1, *s2; local
815 s1 = (char *) doc_root;
819 s1 = path;
829 if (strnicmp(s1, s2, s_len) == 0) {
831 if (strncmp(s1, s2, s_len) == 0) {
/PHP-8.0/ext/spl/
H A Dspl_observer.c297 spl_SplObjectStorageElement *s1 = (spl_SplObjectStorageElement*)Z_PTR_P(e1); in spl_object_storage_compare_info() local
300 return zend_compare(&s1->inf, &s2->inf); in spl_object_storage_compare_info()
/PHP-8.0/ext/pcre/pcre2lib/
H A Dpcre2_internal.h186 #define strncmp(s1,s2,m) _strncmp(s1,s2,m) argument
/PHP-8.0/ext/opcache/jit/dynasm/
H A Dminilua.c6230 const char*s1=luaL_checkstring(L,1);
6234 n=strtoul(s1,&s2,base);
6235 if(s1!=s2){
7317 if(l2==0)return s1;
7328 l1-=init-s1;
7329 s1=init;
7379 const char*s1=s+init;
7386 if((res=match(&ms,s1,p))!=NULL){
7388 lua_pushinteger(L,s1-s+1);
7393 return push_captures(&ms,s1,res);
[all …]

Completed in 150 milliseconds

123456