Home
last modified time | relevance | path

Searched defs:s (Results 1 – 25 of 278) sorted by relevance

12345678910>>...12

/PHP-5.5/Zend/
H A Dzend_string.h37 #define IS_INTERNED(s) \ argument
47 #define INTERNED_LEN(s) \ argument
50 #define INTERNED_HASH(s) \ argument
53 #define str_efree(s) do { \ argument
59 #define str_free(s) do { \ argument
/PHP-5.5/ext/phar/
H A Dmakestub.php2 $s = str_replace("\r", '', file_get_contents(dirname(__FILE__) . '/shortarc.php')); variable
20 $s = $news . ' ?>'; variable
22 $s = str_replace('\\', '\\\\', $s); variable
23 $s = str_replace('"', '\\"', $s); variable
24 $s = str_replace("\n", '\n', $s); variable
27 $s = substr($s, strlen($webs) + strlen("000")); variable
/PHP-5.5/ext/mysqlnd/
H A Dmysqlnd_libmysql_compat.h84 #define mysql_stmt_field_count(s) mysqlnd_stmt_field_count((s)) argument
85 #define mysql_stmt_param_count(s) mysqlnd_stmt_param_count((s)) argument
86 #define mysql_stmt_num_rows(s) mysqlnd_stmt_num_rows((s)) argument
87 #define mysql_stmt_insert_id(s) mysqlnd_stmt_insert_id((s)) argument
88 #define mysql_stmt_close(s) mysqlnd_stmt_close((s)) argument
91 #define mysql_stmt_errno(s) mysqlnd_stmt_errno((s)) argument
92 #define mysql_stmt_error(s) mysqlnd_stmt_error((s)) argument
93 #define mysql_stmt_sqlstate(s) mysqlnd_stmt_sqlstate((s)) argument
95 #define mysql_stmt_execute(s) mysqlnd_stmt_execute((s)) argument
96 #define mysql_stmt_reset(s) mysqlnd_stmt_reset((s)) argument
[all …]
/PHP-5.5/ext/mbstring/oniguruma/
H A Dregext.c33 conv_ext0be32(const UChar* s, const UChar* end, UChar* conv) in conv_ext0be32()
44 conv_ext0le32(const UChar* s, const UChar* end, UChar* conv) in conv_ext0le32()
55 conv_ext0be(const UChar* s, const UChar* end, UChar* conv) in conv_ext0be()
64 conv_ext0le(const UChar* s, const UChar* end, UChar* conv) in conv_ext0le()
73 conv_swap4bytes(const UChar* s, const UChar* end, UChar* conv) in conv_swap4bytes()
85 conv_swap2bytes(const UChar* s, const UChar* end, UChar* conv) in conv_swap2bytes()
95 conv_encoding(OnigEncoding from, OnigEncoding to, const UChar* s, const UChar* end, in conv_encoding()
H A Dregerror.c185 static void sprint_byte(char* s, unsigned int v) in sprint_byte()
190 static void sprint_byte_with_x(char* s, unsigned int v) in sprint_byte_with_x()
195 static int to_ascii(OnigEncoding enc, UChar *s, UChar *end, in to_ascii()
249 onig_error_code_to_str(UChar* s, int code, ...) in onig_error_code_to_str()
331 UChar *p, *s, *bp; local
H A Dregversion.c37 static char s[12]; in onig_version() local
49 static char s[58]; in onig_copyright() local
H A Dregexec.c487 #define STATE_CHECK_POS(s,snum) \ argument
1253 UChar *s, *q, *sbegin; in match_at() local
2744 UChar *t, *p, *s, *end; in slow_search() local
2796 UChar *s, *end; in slow_search_ic() local
2821 UChar *t, *p, *s; in slow_search_backward() local
2854 UChar *s; in slow_search_backward_ic() local
2934 const UChar *s, *t, *p, *end; in bm_search() local
2995 const UChar *s, *t, *p; in bm_search_backward() local
3023 const UChar *s = text; in map_search() local
3038 const UChar *s = text_start; in map_search_backward() local
[all …]
H A Dtestc.c22 #define SLEN(s) strlen(s) argument
95 char s[ONIG_MAX_ERROR_MESSAGE_LEN]; in xx() local
106 char s[ONIG_MAX_ERROR_MESSAGE_LEN]; in xx() local
/PHP-5.5/ext/date/lib/
H A Dparse_iso_intervals.c38 # define strtoll(s, f, b) _atoi64(s) argument
41 # define strtoll(s, f, b) atoll(s) argument
43 # define strtoll(s, f, b) strtol(s, f, b) argument
80 #define DEBUG_OUTPUT(s) printf("%s\n", s); argument
83 #define DEBUG_OUTPUT(s) argument
84 #define YYDEBUG(s,c) argument
107 static void add_warning(Scanner *s, char *error) in add_warning()
116 static void add_error(Scanner *s, char *error) in add_error()
125 static char *timelib_string(Scanner *s) in timelib_string()
243 static int scan(Scanner *s) in scan()
[all …]
H A Dparse_date.c40 # define strtoll(s, f, b) _atoi64(s) argument
43 # define strtoll(s, f, b) atoll(s) argument
45 # define strtoll(s, f, b) strtol(s, f, b) argument
137 #define DEBUG_OUTPUT(s) printf("%s\n", s); argument
140 #define DEBUG_OUTPUT(s) argument
141 #define YYDEBUG(s,c) argument
341 static void add_warning(Scanner *s, char *error) in add_warning()
350 static void add_error(Scanner *s, char *error) in add_error()
436 static char *timelib_string(Scanner *s) in timelib_string()
809 static int scan(Scanner *s, timelib_tz_get_wrapper tz_get_wrapper) in scan()
[all …]
/PHP-5.5/ext/mysqli/
H A Dmysqli_mysqlnd.h36 #define mysqli_stmt_get_id(s) ((s)->data->stmt_id) argument
37 #define mysqli_stmt_warning_count(s) mysqlnd_stmt_warning_count((s)) argument
38 #define mysqli_stmt_server_status(s) mysqlnd_stmt_server_status((s)) argument
39 #define mysqli_stmt_get_connection(s) (s)->data->conn argument
H A Dmysqli_libmysql.h35 #define mysqli_stmt_get_id(s) ((s)->stmt_id) argument
36 #define mysqli_stmt_warning_count(s) mysql_warning_count((s)->mysql) argument
37 #define mysqli_stmt_server_status(s) (s)->mysql->server_status argument
38 #define mysqli_stmt_get_connection(s) (s)->mysql argument
/PHP-5.5/ext/standard/
H A Durl.c66 unsigned char *s = (unsigned char *)str; in php_replace_controlchars_ex() local
101 char const *s, *e, *p, *pp, *ue; in php_url_parse_ex() local
451 static int php_htoi(char *s) in php_htoi()
487 PHPAPI char *php_url_encode(char const *s, int len, int *new_length) in php_url_encode()
600 PHPAPI char *php_raw_url_encode(char const *s, int len, int *new_length)
752 char *s, *p; local
/PHP-5.5/ext/mbstring/libmbfl/filters/
H A Dmbfilter_jis.c119 int c1, s, w; in mbfl_filt_conv_jis_wchar() local
290 int c1, s; in mbfl_filt_conv_wchar_jis() local
395 int s; in mbfl_filt_conv_wchar_2022jp() local
H A Dmbfilter_iso8859_3.c82 int s; in mbfl_filt_conv_8859_3_wchar() local
109 int s, n; in mbfl_filt_conv_wchar_8859_3() local
H A Dmbfilter_iso8859_4.c80 int s; in mbfl_filt_conv_8859_4_wchar() local
107 int s, n; in mbfl_filt_conv_wchar_8859_4() local
H A Dmbfilter_iso8859_5.c82 int s; in mbfl_filt_conv_8859_5_wchar() local
109 int s, n; in mbfl_filt_conv_wchar_8859_5() local
H A Dmbfilter_iso8859_6.c82 int s; in mbfl_filt_conv_8859_6_wchar() local
109 int s, n; in mbfl_filt_conv_wchar_8859_6() local
H A Dmbfilter_iso8859_7.c82 int s; in mbfl_filt_conv_8859_7_wchar() local
109 int s, n; in mbfl_filt_conv_wchar_8859_7() local
H A Dmbfilter_iso8859_8.c81 int s; in mbfl_filt_conv_8859_8_wchar() local
108 int s, n; in mbfl_filt_conv_wchar_8859_8() local
H A Dmbfilter_iso8859_9.c81 int s; in mbfl_filt_conv_8859_9_wchar() local
108 int s, n; in mbfl_filt_conv_wchar_8859_9() local
H A Dmbfilter_iso8859_10.c81 int s; in mbfl_filt_conv_8859_10_wchar() local
108 int s, n; in mbfl_filt_conv_wchar_8859_10() local
H A Dmbfilter_iso8859_13.c81 int s; in mbfl_filt_conv_8859_13_wchar() local
108 int s, n; in mbfl_filt_conv_wchar_8859_13() local
H A Dmbfilter_iso8859_14.c81 int s; in mbfl_filt_conv_8859_14_wchar() local
108 int s, n; in mbfl_filt_conv_wchar_8859_14() local
/PHP-5.5/ext/mbstring/oniguruma/win32/
H A Dtestc.c22 #define SLEN(s) strlen(s) argument
95 char s[ONIG_MAX_ERROR_MESSAGE_LEN]; in xx() local
106 char s[ONIG_MAX_ERROR_MESSAGE_LEN]; in xx() local

Completed in 177 milliseconds

12345678910>>...12