/Linux-v5.4/lib/ |
D | kstrtox.c | 121 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);
|
D | test-kstrtox.c | 152 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()
|
D | parser.c | 169 ret = kstrtoull(buf, base, &val); in match_u64int()
|
/Linux-v5.4/drivers/md/ |
D | dm-init.c | 131 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()
|
D | dm-switch.c | 217 if (kstrtoull(dm_shift_arg(as), 10, &start) || start != (sector_t)start) { in parse_path()
|
/Linux-v5.4/arch/x86/boot/ |
D | string.h | 32 int kstrtoull(const char *s, unsigned int base, unsigned long long *res);
|
D | string.c | 332 int kstrtoull(const char *s, unsigned int base, unsigned long long *res) in kstrtoull() function
|
/Linux-v5.4/drivers/base/ |
D | memory.c | 497 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/ |
D | fsl_85xx_l2ctlr.c | 29 if (!sram_offset || (kstrtoull(sram_offset, 0, &addr) < 0)) in get_cache_sram_params()
|
/Linux-v5.4/arch/um/kernel/ |
D | time.c | 251 err = kstrtoull(str, 0, &time_travel_start); in setup_time_travel_start()
|
/Linux-v5.4/drivers/s390/scsi/ |
D | zfcp_sysfs.c | 298 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()
|
D | zfcp_aux.c | 107 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/ |
D | kernel.h | 342 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/ |
D | ds1682.c | 109 rc = kstrtoull(buf, 0, &val); in ds1682_store()
|
/Linux-v5.4/arch/x86/boot/compressed/ |
D | acpi.c | 295 if (kstrtoull(val, 16, &addr)) in get_cmdline_acpi_rsdp()
|
/Linux-v5.4/drivers/xen/ |
D | pcpu.c | 115 if (kstrtoull(buf, 0, &val) < 0) in store_online()
|
/Linux-v5.4/drivers/powercap/ |
D | powercap_sys.c | 45 err = kstrtoull(buf, 10, &value); \ 100 err = kstrtoull(buf, 10, &value); \
|
/Linux-v5.4/fs/ |
D | fs_parser.c | 186 ret = kstrtoull(param->string, 0, &result->uint_64); in fs_parse()
|
/Linux-v5.4/drivers/target/ |
D | target_core_fabric_configfs.c | 296 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/ |
D | sysfs.c | 105 ret = kstrtoull(skip_spaces(buf), 0, &val); in reserved_clusters_store()
|
/Linux-v5.4/Documentation/translations/it_IT/process/ |
D | deprecated.rst | 81 :c:func:`kstrtoul`, e :c:func:`kstrtoull` sono da considerarsi le corrette
|
/Linux-v5.4/drivers/iio/frequency/ |
D | adf4371.c | 381 ret = kstrtoull(buf, 10, &freq); in adf4371_write()
|
D | adf4350.c | 254 ret = kstrtoull(buf, 10, &readin); in adf4350_write()
|
/Linux-v5.4/drivers/scsi/ |
D | scsi_devinfo.c | 370 int ret = kstrtoull(strflags, 0, &val); in scsi_dev_info_list_add_keyed()
|
/Linux-v5.4/Documentation/process/ |
D | deprecated.rst | 76 :c:func:`kstrtoul`, and :c:func:`kstrtoull` functions tend to be the
|