Symbol: simple_strtoull
arch/s390/boot/alternative.c
121
type = simple_strtoull(str, &endp, 0);
arch/s390/boot/alternative.c
66
val = simple_strtoull(str, &endp, 0);
arch/s390/boot/alternative.c
72
endval = simple_strtoull(str, &endp, 0);
arch/s390/boot/ipl_parm.c
224
val = simple_strtoull(str, &endp, 0);
arch/s390/boot/ipl_parm.c
230
endval = simple_strtoull(str, &endp, 0);
arch/s390/boot/ipl_parm.c
326
boot_console_loglevel = simple_strtoull(val, NULL, 10);
arch/s390/boot/printk.c
136
start = simple_strtoull(pivot, &endp, 16);
arch/s390/boot/printk.c
137
size = simple_strtoull(endp + 1, &endp, 16);
arch/s390/boot/string.c
128
return -simple_strtoull(cp + 1, endp, base);
arch/s390/boot/string.c
130
return simple_strtoull(cp, endp, base);
arch/x86/boot/boot.h
306
unsigned long long simple_strtoull(const char *cp, char **endp, unsigned int base);
arch/x86/boot/compressed/kaslr.c
222
max_gb_huge_pages = simple_strtoull(p, &p, 0);
arch/x86/boot/early_serial_console.c
133
port = simple_strtoull(options + 12, &options, 0);
arch/x86/boot/early_serial_console.c
135
port = simple_strtoull(options + 8, &options, 0);
arch/x86/boot/early_serial_console.c
140
baud = simple_strtoull(options + 1, &options, 0);
arch/x86/boot/early_serial_console.c
71
port = simple_strtoull(arg + pos, &e, 16);
arch/x86/boot/early_serial_console.c
92
baud = simple_strtoull(arg + pos, &e, 0);
arch/x86/boot/string.c
140
return -simple_strtoull(cp + 1, endp, base);
arch/x86/boot/string.c
142
return simple_strtoull(cp, endp, base);
arch/x86/boot/string.h
27
extern unsigned long long simple_strtoull(const char *cp, char **endp,
arch/x86/kernel/cpu/mtrr/if.c
125
base = simple_strtoull(line + 5, &ptr, 0);
arch/x86/kernel/cpu/mtrr/if.c
131
size = simple_strtoull(ptr + 5, &ptr, 0);
arch/x86/kernel/e820.c
976
from = simple_strtoull(p + 1, &p, 0);
arch/x86/kernel/e820.c
978
to = simple_strtoull(p + 1, &p, 0);
arch/x86/kernel/early_printk.c
186
baud = simple_strtoull(s, &e, 0);
block/bfq-cgroup.c
1093
v = simple_strtoull(buf, &endp, 0);
drivers/crypto/intel/qat/qat_common/qat_uclo.c
206
ae = simple_strtoull(str, &end, 10);
drivers/firmware/efi/libstub/gop.c
46
m = simple_strtoull(option, &option, 0);
drivers/firmware/efi/libstub/gop.c
63
w = simple_strtoull(option, &option, 10);
drivers/firmware/efi/libstub/gop.c
66
h = simple_strtoull(option, &option, 10);
drivers/firmware/efi/libstub/gop.c
76
d = simple_strtoull(option, &option, 10);
drivers/firmware/efi/libstub/string.c
161
return -simple_strtoull(cp + 1, endp, base);
drivers/firmware/efi/libstub/string.c
163
return simple_strtoull(cp, endp, base);
drivers/pnp/interface.c
320
*start = simple_strtoull(buf, &buf, 0);
drivers/pnp/interface.c
325
*end = simple_strtoull(buf, &buf, 0);
drivers/s390/char/sclp_cpi_sys.c
334
level = simple_strtoull(buf, &endp, 16);
drivers/scsi/scsi_sysfs.c
126
*val = simple_strtoull(src, &last, 0);
drivers/tty/serial/serial_core.c
2140
*addr = simple_strtoull(p, NULL, 0);
drivers/usb/misc/yurex.c
480
c = c2 = simple_strtoull(data, NULL, 0);
drivers/xen/xen-balloon.c
171
target_bytes = simple_strtoull(buf, &endchar, 0) * 1024;
include/linux/kstrtox.h
148
extern unsigned long long simple_strtoull(const char *,char **,unsigned int);
lib/cmdline.c
154
unsigned long long ret = simple_strtoull(ptr, &endptr, 0);
lib/cmdline.c
64
value = -simple_strtoull(++cur, str, 0);
lib/cmdline.c
66
value = simple_strtoull(cur, str, 0);
lib/tests/scanf_kunit.c
715
test_simple_strtoxx(unsigned long long, simple_strtoull, "%llu", 10);
lib/tests/scanf_kunit.c
716
test_simple_strtoxx(unsigned long long, simple_strtoull, "%llu", 0);
lib/tests/scanf_kunit.c
717
test_simple_strtoxx(unsigned long long, simple_strtoull, "%llx", 16);
lib/tests/scanf_kunit.c
718
test_simple_strtoxx(unsigned long long, simple_strtoull, "0x%llx", 16);
lib/tests/scanf_kunit.c
719
test_simple_strtoxx(unsigned long long, simple_strtoull, "0x%llx", 0);
lib/vsprintf.c
116
EXPORT_SYMBOL(simple_strtoull);
lib/vsprintf.c
128
return simple_strtoull(cp, endp, base);
mm/mm_init.c
262
coremem = simple_strtoull(p, &endptr, 0);
security/apparmor/procattr.c
81
*token = simple_strtoull(args, &name, 16);