Searched refs:simple_strtoull (Results 1 – 3 of 3) sorted by relevance
/DragonStub/apps/lib/ |
H A D | cmdline.c | 63 value = -simple_strtoull(++cur, str, 0); in get_option() 65 value = simple_strtoull(cur, str, 0); in get_option() 151 unsigned long long ret = simple_strtoull(ptr, &endptr, 0); in memparse()
|
H A D | string.c | 53 unsigned long long simple_strtoull(const char *cp, char **endp, in simple_strtoull() function 82 return -simple_strtoull(cp + 1, endp, base); in simple_strtol() 84 return simple_strtoull(cp, endp, base); in simple_strtol()
|
/DragonStub/inc/dragonstub/ |
H A D | dragonstub.h | 153 unsigned long long simple_strtoull(const char *cp, char **endp, 157 #define strtoul(cp, endp, base) simple_strtoull(cp, endp, base)
|