Searched refs:kstrtoull (Results 1 - 25 of 62) sorted by relevance

123

/linux-master/lib/
H A Dkstrtox.c117 * kstrtoull - convert a string to an unsigned long long
132 int kstrtoull(const char *s, unsigned int base, unsigned long long *res) function
138 EXPORT_SYMBOL(kstrtoull); variable
169 rv = kstrtoull(s, base, &tmp);
186 rv = kstrtoull(s, base, &tmp);
233 rv = kstrtoull(s, base, &tmp);
280 rv = kstrtoull(s, base, &tmp);
312 rv = kstrtoull(s, base, &tmp);
422 kstrto_from_user(kstrtoull_from_user, kstrtoull, unsigned long long);
H A Dtest-kstrtox.c152 TEST_OK(kstrtoull, unsigned long long, "%llu", test_ull_ok);
234 TEST_FAIL(kstrtoull, unsigned long long, "%llu", test_ull_fail);
H A Dparser.c178 ret = kstrtoull(buf, base, &val);
/linux-master/include/linux/
H A Dkstrtox.h12 int __must_check kstrtoull(const char *s, unsigned int base, unsigned long long *res);
38 return kstrtoull(s, base, (unsigned long long *)res);
76 return kstrtoull(s, base, res);
/linux-master/arch/x86/boot/
H A Dstring.h32 int kstrtoull(const char *s, unsigned int base, unsigned long long *res);
H A Dstring.c316 * kstrtoull - convert a string to an unsigned long long
331 int kstrtoull(const char *s, unsigned int base, unsigned long long *res) function
343 rv = kstrtoull(s, base, &tmp);
375 return kstrtoull(s, base, (unsigned long long *)res);
/linux-master/kernel/trace/
H A Dtrace_events_inject.c97 ret = kstrtoull(num, 0, &val);
/linux-master/drivers/md/
H A Ddm-init.c136 if (kstrtoull(field[0], 0, &sp->sector_start))
139 if (kstrtoull(field[1], 0, &sp->length))
215 if (kstrtoull(field[2], 0, &dev->dmi.dev))
H A Ddm-switch.c218 if (kstrtoull(dm_shift_arg(as), 10, &start) || start != (sector_t)start) {
/linux-master/drivers/gpu/drm/i915/gt/
H A Dsysfs_engines.c165 err = kstrtoull(buf, 0, &duration);
216 err = kstrtoull(buf, 0, &duration);
271 err = kstrtoull(buf, 0, &duration);
322 err = kstrtoull(buf, 0, &timeout);
380 err = kstrtoull(buf, 0, &delay);
/linux-master/drivers/s390/scsi/
H A Dzfcp_aux.c109 if (!token || kstrtoull(token, 0, (unsigned long long *) &wwpn))
113 if (!token || kstrtoull(token, 0, (unsigned long long *) &lun))
H A Dzfcp_sysfs.c311 if (kstrtoull(buf, 0, (unsigned long long *) &wwpn))
450 if (kstrtoull(buf, 0, (unsigned long long *) &fcp_lun))
468 if (kstrtoull(buf, 0, (unsigned long long *) &fcp_lun))
/linux-master/arch/um/kernel/
H A Dtime.c537 if (kstrtoull(buf, 0, &id)) {
869 err = kstrtoull(str, 0, &time_travel_start);
/linux-master/drivers/misc/
H A Dds1682.c109 rc = kstrtoull(buf, 0, &val);
/linux-master/drivers/powercap/
H A Dpowercap_sys.c46 err = kstrtoull(buf, 10, &value); \
101 err = kstrtoull(buf, 10, &value); \
/linux-master/drivers/xen/
H A Dpcpu.c119 if (kstrtoull(buf, 0, &val) < 0)
/linux-master/fs/
H A Dfs_parser.c247 if (kstrtoull(param->string, 0, &result->uint_64) < 0)
/linux-master/drivers/base/
H A Dmemory.c557 ret = kstrtoull(buf, 0, &phys_addr);
599 if (kstrtoull(buf, 0, &pfn) < 0)
615 if (kstrtoull(buf, 0, &pfn) < 0)
/linux-master/drivers/hwtracing/coresight/
H A Dcoresight-syscfg-configfs.c299 err = kstrtoull(page, 0, &value);
/linux-master/drivers/virt/acrn/
H A Dhsm.c441 if (kstrtoull(buf, 0, &cpu) < 0)
/linux-master/drivers/accel/habanalabs/common/
H A Dsysfs.c42 rc = kstrtoull(buf, 0, &value);
/linux-master/sound/core/
H A Dcontrol_led.c462 if (kstrtoull(s, 10, &res))
/linux-master/drivers/target/
H A Dtarget_core_fabric_configfs.c297 ret = kstrtoull(buf + 4, 0, &mapped_lun);
756 errno = kstrtoull(name + 4, 0, &unpacked_lun);
/linux-master/mm/
H A Dbacking-dev.c254 ret = kstrtoull(buf, 10, &bytes);
282 ret = kstrtoull(buf, 10, &bytes);
/linux-master/drivers/dax/
H A Dbus.c1131 rc = kstrtoull(buf, 0, &val);
1179 rc = kstrtoull(start, 16, &addr);
1184 rc = kstrtoull(end, 16, &addr);

Completed in 260 milliseconds

123