Home
last modified time | relevance | path

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

1234567891011

/PHP-5.4/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.4/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.4/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.4/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 Dregversion.c36 static char s[12]; in onig_version() local
48 static char s[58]; in onig_copyright() local
H A Dregenc.c54 onigenc_get_right_adjust_char_head(OnigEncoding enc, const UChar* start, const UChar* s) in onigenc_get_right_adjust_char_head()
65 const UChar* start, const UChar* s, const UChar** prev) in onigenc_get_right_adjust_char_head_with_prev()
80 onigenc_get_prev_char_head(OnigEncoding enc, const UChar* start, const UChar* s) in onigenc_get_prev_char_head()
89 onigenc_step_back(OnigEncoding enc, const UChar* start, const UChar* s, int n) in onigenc_step_back()
124 onigenc_strlen_null(OnigEncoding enc, const UChar* s) in onigenc_strlen_null()
149 onigenc_str_bytelen_null(OnigEncoding enc, const UChar* s) in onigenc_str_bytelen_null()
673 onigenc_single_byte_left_adjust_char_head(const UChar* start, const UChar* s) in onigenc_single_byte_left_adjust_char_head()
679 onigenc_always_true_is_allowed_reverse_match(const UChar* s, const UChar* end) in onigenc_always_true_is_allowed_reverse_match()
685 onigenc_always_false_is_allowed_reverse_match(const UChar* s, const UChar* end) in onigenc_always_false_is_allowed_reverse_match()
1002 onigenc_get_left_adjust_char_head(OnigEncoding enc, UChar* start, UChar* s) in onigenc_get_left_adjust_char_head()
[all …]
H A Dregexec.c542 #define STATE_CHECK_POS(s,snum) \ argument
1435 UChar *s, *q, *sbegin; in match_at() local
2925 UChar *t, *p, *s, *end; in slow_search() local
2984 UChar *s, *end; in slow_search_ic() local
3008 UChar *t, *p, *s; in slow_search_backward() local
3041 UChar *s; in slow_search_backward_ic() local
3123 const UChar *s, *t, *p, *end; in bm_search() local
3183 const UChar *s, *t, *p; in bm_search_backward() local
3211 const UChar *s = text; in map_search() local
3226 const UChar *s = text_start; in map_search_backward() local
[all …]
/PHP-5.4/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
109 static void add_warning(Scanner *s, char *error) in add_warning()
118 static void add_error(Scanner *s, char *error) in add_error()
127 static char *timelib_string(Scanner *s) in timelib_string()
278 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
343 static void add_warning(Scanner *s, char *error) in add_warning()
352 static void add_error(Scanner *s, char *error) in add_error()
438 static char *timelib_string(Scanner *s) in timelib_string()
870 static int scan(Scanner *s, timelib_tz_get_wrapper tz_get_wrapper) in scan()
[all …]
/PHP-5.4/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.4/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
452 static int php_htoi(char *s) in php_htoi()
488 PHPAPI char *php_url_encode(char const *s, int len, int *new_length) in php_url_encode()
601 PHPAPI char *php_raw_url_encode(char const *s, int len, int *new_length)
749 char *s, *p; local
/PHP-5.4/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_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
H A Dmbfilter_iso8859_15.c81 int s; in mbfl_filt_conv_8859_15_wchar() local
108 int s, n; in mbfl_filt_conv_wchar_8859_15() local
H A Dmbfilter_iso8859_16.c81 int s; in mbfl_filt_conv_8859_16_wchar() local
108 int s, n; in mbfl_filt_conv_wchar_8859_16() local
H A Dmbfilter_iso8859_2.c82 int s; in mbfl_filt_conv_8859_2_wchar() local
109 int s, n; in mbfl_filt_conv_wchar_8859_2() 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

Completed in 100 milliseconds

1234567891011