Home
last modified time | relevance | path

Searched refs:s1 (Results 101 – 113 of 113) sorted by relevance

12345

/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_main.c715 char *s1, *s2; local
732 s1 = (char *) doc_root;
736 s1 = path;
746 if (strnicmp(s1, s2, s_len) == 0) {
748 if (strncmp(s1, s2, s_len) == 0) {
/PHP-5.5/ext/mbstring/oniguruma/
H A Dregexec.c965 #define STRING_CMP(s1,s2,len) do {\ argument
967 if (*s1++ != *s2++) goto fail;\
971 #define STRING_CMP_IC(case_fold_flag,s1,ps2,len) do {\ argument
972 if (string_cmp_ic(encode, case_fold_flag, s1, ps2, len) == 0) \
977 UChar* s1, UChar** ps2, int mblen) in string_cmp_ic() argument
985 end1 = s1 + mblen; in string_cmp_ic()
987 while (s1 < end1) { in string_cmp_ic()
1004 #define STRING_CMP_VALUE(s1,s2,len,is_fail) do {\ argument
1007 if (*s1++ != *s2++) {\
1013 #define STRING_CMP_VALUE_IC(case_fold_flag,s1,ps2,len,is_fail) do {\ argument
[all …]
H A Dregparse.h324 extern int onig_strncmp P_((const UChar* s1, const UChar* s2, int n));
H A Dregparse.c207 onig_strncmp(const UChar* s1, const UChar* s2, int n) in onig_strncmp() argument
212 x = *s2++ - *s1++; in onig_strncmp()
/PHP-5.5/ext/standard/
H A Dstreamsfuncs.c53 php_stream *s1, *s2; in PHP_FUNCTION() local
70 s1 = php_stream_sock_open_from_socket(pair[0], 0); in PHP_FUNCTION()
75 php_stream_auto_cleanup(s1); in PHP_FUNCTION()
78 add_next_index_resource(return_value, php_stream_get_resource_id(s1)); in PHP_FUNCTION()
H A Dbasic_functions.c2427 ZEND_ARG_INFO(0, s1)
2435 ZEND_ARG_INFO(0, s1)
/PHP-5.5/sapi/cgi/
H A Dcgi_main.c774 char *s1, *s2; local
791 s1 = (char *) doc_root;
795 s1 = path;
805 if (strnicmp(s1, s2, s_len) == 0) {
807 if (strncmp(s1, s2, s_len) == 0) {
/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/pcre/pcrelib/sljit/
H A DsljitNativeSPARC_common.c104 #define S1(s1) (reg_map[s1] << 14) argument
106 #define S1A(s1) ((s1) << 14) argument
/PHP-5.5/Zend/
H A Dzend_strtod.c2043 CONST char *s, *s0, *s1; in zend_strtod() local
2137 s1 = s; in zend_strtod()
2140 if (s - s1 > 8 || L > 19999) in zend_strtod()
/PHP-5.5/ext/pcre/pcrelib/
H A Dpcre_internal.h374 #define strncmp(s1,s2,m) _strncmp(s1,s2,m) argument
/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
1786 const unsigned char *a = (const unsigned char *)s1; in file_strncmp()
/PHP-5.5/ext/sqlite3/libsqlite/
H A Dsqlite3.c49503 u32 s1, s2;
49508 s1 = aIn[0];
49511 s1 = s2 = 0;
49530 aOut[0] = s1;
68396 u32 s1;
78756 assert( (s1>0 && s1<7) || s1==8 || s1==9 );
78759 if( s1>7 && s2>7 ){
78760 res = s1 - s2;
78762 if( s1==s2 ){
78778 }else if( s1>7 ){
[all …]

Completed in 397 milliseconds

12345