• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/include/

Lines Matching refs:xato

17 unsigned type xato##UT##_range_sfx(const char *str, unsigned type l, unsigned type u, const struct suffix_mult *sfx); \
18 unsigned type xato##UT##_range(const char *str, unsigned type l, unsigned type u); \
19 unsigned type xato##UT##_sfx(const char *str, const struct suffix_mult *sfx); \
20 unsigned type xato##UT(const char *str); \
23 type xato##T##_range_sfx(const char *str, type l, type u, const struct suffix_mult *sfx); \
24 type xato##T##_range(const char *str, type l, type u); \
25 type xato##T##_sfx(const char *str, const struct suffix_mult *sfx); \
26 type xato##T(const char *str); \
49 unsigned narrow xato##UN##_range_sfx(const char *str, unsigned narrow l, unsigned narrow u, const struct suffix_mult *sfx) \
50 { return xato##UW##_range_sfx(str, l, u, sfx); } \
52 unsigned narrow xato##UN##_range(const char *str, unsigned narrow l, unsigned narrow u) \
53 { return xato##UW##_range(str, l, u); } \
55 unsigned narrow xato##UN##_sfx(const char *str, const struct suffix_mult *sfx) \
56 { return xato##UW##_sfx(str, sfx); } \
58 unsigned narrow xato##UN(const char *str) \
59 { return xato##UW(str); } \
67 narrow xato##N##_range_sfx(const char *str, narrow l, narrow u, const struct suffix_mult *sfx) \
68 { return xato##W##_range_sfx(str, l, u, sfx); } \
70 narrow xato##N##_range(const char *str, narrow l, narrow u) \
71 { return xato##W##_range(str, l, u); } \
73 narrow xato##N##_sfx(const char *str, const struct suffix_mult *sfx) \
74 { return xato##W##_sfx(str, sfx); } \
76 narrow xato##N(const char *str) \
77 { return xato##W(str); } \