Searched refs:xstrto (Results 1 - 3 of 3) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/include/
H A Dxatonum.h13 unsigned type xstrto##UT##_range_sfx(const char *str, int b, unsigned type l, unsigned type u, const struct suffix_mult *sfx); \
14 unsigned type xstrto##UT##_range(const char *str, int b, unsigned type l, unsigned type u); \
15 unsigned type xstrto##UT##_sfx(const char *str, int b, const struct suffix_mult *sfx); \
16 unsigned type xstrto##UT(const char *str, int b); \
21 type xstrto##T##_range_sfx(const char *str, int b, type l, type u, const struct suffix_mult *sfx); \
22 type xstrto##T##_range(const char *str, int b, type l, type u); \
37 unsigned narrow xstrto##UN##_range_sfx(const char *str, int b, unsigned narrow l, unsigned narrow u, const struct suffix_mult *sfx) \
38 { return xstrto##UW##_range_sfx(str, b, l, u, sfx); } \
40 unsigned narrow xstrto##UN##_range(const char *str, int b, unsigned narrow l, unsigned narrow u) \
41 { return xstrto##U
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/libbb/
H A Dxatonum_template.c6 #define xstrto(rest) xstrtol##rest
121 type xstrto(_range_sfx)(const char *numstr, int base,
149 type xstrto(_range)(const char *numstr, int base, type lower, type upper)
151 return xstrto(_range_sfx)(numstr, base, lower, upper, NULL);
159 return xstrto(_range_sfx)(numstr, 10, lower, upper, suffixes);
164 return xstrto(_range_sfx)(numstr, 10, lower, upper, NULL);
169 return xstrto(_range_sfx)(numstr, 10, XSTR_TYPE_MIN, XSTR_TYPE_MAX, suffixes);
174 return xstrto(_range_sfx)(numstr, 10, XSTR_TYPE_MIN, XSTR_TYPE_MAX, NULL);
179 #undef xstrto macro
H A Dxatonum.c14 #define xstrto(rest) xstrtoll##rest macro
26 #define xstrto(rest) xstrtol##rest macro
49 #define xstrto(rest) xstrtoi##rest macro

Completed in 151 milliseconds