Lines Matching refs:str
15 unsigned type xstrto##UT##_range_sfx(const char *str, int b, unsigned type l, unsigned type u, cons…
16 unsigned type xstrto##UT##_range(const char *str, int b, unsigned type l, unsigned type u) FAST_FUN…
17 unsigned type xstrto##UT##_sfx(const char *str, int b, const struct suffix_mult *sfx) FAST_FUNC; \
18 unsigned type xstrto##UT(const char *str, int b) FAST_FUNC; \
19 unsigned type xato##UT##_range_sfx(const char *str, unsigned type l, unsigned type u, const struct …
20 unsigned type xato##UT##_range(const char *str, unsigned type l, unsigned type u) FAST_FUNC; \
21 unsigned type xato##UT##_sfx(const char *str, const struct suffix_mult *sfx) FAST_FUNC; \
22 unsigned type xato##UT(const char *str) FAST_FUNC; \
23 type xstrto##T##_range_sfx(const char *str, int b, type l, type u, const struct suffix_mult *sfx) F…
24 type xstrto##T##_range(const char *str, int b, type l, type u) FAST_FUNC; \
25 type xstrto##T(const char *str, int b) FAST_FUNC; \
26 type xato##T##_range_sfx(const char *str, type l, type u, const struct suffix_mult *sfx) FAST_FUNC;…
27 type xato##T##_range(const char *str, type l, type u) FAST_FUNC; \
28 type xato##T##_sfx(const char *str, const struct suffix_mult *sfx) FAST_FUNC; \
29 type xato##T(const char *str) FAST_FUNC; \
40 unsigned narrow xstrto##UN##_range_sfx(const char *str, int b, unsigned narrow l, unsigned narrow u…
41 { return xstrto##UW##_range_sfx(str, b, l, u, sfx); } \
43 unsigned narrow xstrto##UN##_range(const char *str, int b, unsigned narrow l, unsigned narrow u) \
44 { return xstrto##UW##_range(str, b, l, u); } \
46 unsigned narrow xstrto##UN##_sfx(const char *str, int b, const struct suffix_mult *sfx) \
47 { return xstrto##UW##_sfx(str, b, sfx); } \
49 unsigned narrow xstrto##UN(const char *str, int b) \
50 { return xstrto##UW(str, b); } \
52 unsigned narrow xato##UN##_range_sfx(const char *str, unsigned narrow l, unsigned narrow u, const s…
53 { return xato##UW##_range_sfx(str, l, u, sfx); } \
55 unsigned narrow xato##UN##_range(const char *str, unsigned narrow l, unsigned narrow u) \
56 { return xato##UW##_range(str, l, u); } \
58 unsigned narrow xato##UN##_sfx(const char *str, const struct suffix_mult *sfx) \
59 { return xato##UW##_sfx(str, sfx); } \
61 unsigned narrow xato##UN(const char *str) \
62 { return xato##UW(str); } \
64 narrow xstrto##N##_range_sfx(const char *str, int b, narrow l, narrow u, const struct suffix_mult *…
65 { return xstrto##W##_range_sfx(str, b, l, u, sfx); } \
67 narrow xstrto##N##_range(const char *str, int b, narrow l, narrow u) \
68 { return xstrto##W##_range(str, b, l, u); } \
70 narrow xstrto##N(const char *str, int b) \
71 { return xstrto##W(str, b); } \
73 narrow xato##N##_range_sfx(const char *str, narrow l, narrow u, const struct suffix_mult *sfx) \
74 { return xato##W##_range_sfx(str, l, u, sfx); } \
76 narrow xato##N##_range(const char *str, narrow l, narrow u) \
77 { return xato##W##_range(str, l, u); } \
79 narrow xato##N##_sfx(const char *str, const struct suffix_mult *sfx) \
80 { return xato##W##_sfx(str, sfx); } \
82 narrow xato##N(const char *str) \
83 { return xato##W(str); } \