Home
last modified time | relevance | path

Searched refs:kstrtoull (Results 1 – 25 of 50) sorted by relevance

12

/Linux-v5.4/lib/
Dkstrtox.c121 int kstrtoull(const char *s, unsigned int base, unsigned long long *res) in kstrtoull() function
127 EXPORT_SYMBOL(kstrtoull);
158 rv = kstrtoull(s, base, &tmp); in kstrtoll()
175 rv = kstrtoull(s, base, &tmp); in _kstrtoul()
222 rv = kstrtoull(s, base, &tmp); in kstrtouint()
268 rv = kstrtoull(s, base, &tmp); in kstrtou16()
298 rv = kstrtoull(s, base, &tmp); in kstrtou8()
401 kstrto_from_user(kstrtoull_from_user, kstrtoull, unsigned long long);
Dtest-kstrtox.c152 TEST_OK(kstrtoull, unsigned long long, "%llu", test_ull_ok); in test_kstrtoull_ok()
234 TEST_FAIL(kstrtoull, unsigned long long, "%llu", test_ull_fail); in test_kstrtoull_fail()
Dparser.c169 ret = kstrtoull(buf, base, &val); in match_u64int()
/Linux-v5.4/drivers/md/
Ddm-init.c131 if (kstrtoull(field[0], 0, &sp->sector_start)) in dm_parse_table_entry()
134 if (kstrtoull(field[1], 0, &sp->length)) in dm_parse_table_entry()
210 if (kstrtoull(field[2], 0, &dev->dmi.dev)) in dm_parse_device_entry()
Ddm-switch.c217 if (kstrtoull(dm_shift_arg(as), 10, &start) || start != (sector_t)start) { in parse_path()
/Linux-v5.4/arch/x86/boot/
Dstring.h32 int kstrtoull(const char *s, unsigned int base, unsigned long long *res);
Dstring.c332 int kstrtoull(const char *s, unsigned int base, unsigned long long *res) in kstrtoull() function
/Linux-v5.4/drivers/base/
Dmemory.c497 ret = kstrtoull(buf, 0, &phys_addr); in probe_store()
538 if (kstrtoull(buf, 0, &pfn) < 0) in soft_offline_page_store()
559 if (kstrtoull(buf, 0, &pfn) < 0) in hard_offline_page_store()
/Linux-v5.4/arch/powerpc/sysdev/
Dfsl_85xx_l2ctlr.c29 if (!sram_offset || (kstrtoull(sram_offset, 0, &addr) < 0)) in get_cache_sram_params()
/Linux-v5.4/arch/um/kernel/
Dtime.c251 err = kstrtoull(str, 0, &time_travel_start); in setup_time_travel_start()
/Linux-v5.4/drivers/s390/scsi/
Dzfcp_sysfs.c298 if (kstrtoull(buf, 0, (unsigned long long *) &wwpn)) in zfcp_sysfs_port_remove_store()
355 if (kstrtoull(buf, 0, (unsigned long long *) &fcp_lun)) in zfcp_sysfs_unit_add_store()
373 if (kstrtoull(buf, 0, (unsigned long long *) &fcp_lun)) in zfcp_sysfs_unit_remove_store()
Dzfcp_aux.c107 if (!token || kstrtoull(token, 0, (unsigned long long *) &wwpn)) in zfcp_init_device_setup()
111 if (!token || kstrtoull(token, 0, (unsigned long long *) &lun)) in zfcp_init_device_setup()
/Linux-v5.4/include/linux/
Dkernel.h342 int __must_check kstrtoull(const char *s, unsigned int base, unsigned long long *res);
369 return kstrtoull(s, base, (unsigned long long *)res); in kstrtoul()
408 return kstrtoull(s, base, res); in kstrtou64()
/Linux-v5.4/drivers/misc/
Dds1682.c109 rc = kstrtoull(buf, 0, &val); in ds1682_store()
/Linux-v5.4/arch/x86/boot/compressed/
Dacpi.c295 if (kstrtoull(val, 16, &addr)) in get_cmdline_acpi_rsdp()
/Linux-v5.4/drivers/xen/
Dpcpu.c115 if (kstrtoull(buf, 0, &val) < 0) in store_online()
/Linux-v5.4/drivers/powercap/
Dpowercap_sys.c45 err = kstrtoull(buf, 10, &value); \
100 err = kstrtoull(buf, 10, &value); \
/Linux-v5.4/fs/
Dfs_parser.c186 ret = kstrtoull(param->string, 0, &result->uint_64); in fs_parse()
/Linux-v5.4/drivers/target/
Dtarget_core_fabric_configfs.c296 ret = kstrtoull(buf + 4, 0, &mapped_lun); in target_fabric_make_mappedlun()
755 errno = kstrtoull(name + 4, 0, &unpacked_lun); in target_fabric_make_lun()
/Linux-v5.4/fs/ext4/
Dsysfs.c105 ret = kstrtoull(skip_spaces(buf), 0, &val); in reserved_clusters_store()
/Linux-v5.4/Documentation/translations/it_IT/process/
Ddeprecated.rst81 :c:func:`kstrtoul`, e :c:func:`kstrtoull` sono da considerarsi le corrette
/Linux-v5.4/drivers/iio/frequency/
Dadf4371.c381 ret = kstrtoull(buf, 10, &freq); in adf4371_write()
Dadf4350.c254 ret = kstrtoull(buf, 10, &readin); in adf4350_write()
/Linux-v5.4/drivers/scsi/
Dscsi_devinfo.c370 int ret = kstrtoull(strflags, 0, &val); in scsi_dev_info_list_add_keyed()
/Linux-v5.4/Documentation/process/
Ddeprecated.rst76 :c:func:`kstrtoul`, and :c:func:`kstrtoull` functions tend to be the

12