/kernel/linux/linux-4.19/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 | 177 ret = kstrtoull(buf, base, &val); in match_u64int()
|
/kernel/linux/linux-5.10/lib/ |
D | kstrtox.c | 127 int kstrtoull(const char *s, unsigned int base, unsigned long long *res) in kstrtoull() function 133 EXPORT_SYMBOL(kstrtoull); 163 rv = kstrtoull(s, base, &tmp); in kstrtoll() 180 rv = kstrtoull(s, base, &tmp); in _kstrtoul() 226 rv = kstrtoull(s, base, &tmp); in kstrtouint() 271 rv = kstrtoull(s, base, &tmp); in kstrtou16() 301 rv = kstrtoull(s, base, &tmp); in kstrtou8() 404 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()
|
/kernel/linux/linux-5.10/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()
|
/kernel/linux/linux-5.10/arch/x86/boot/ |
D | string.c | 331 int kstrtoull(const char *s, unsigned int base, unsigned long long *res) in kstrtoull() function 343 rv = kstrtoull(s, base, &tmp); in _kstrtoul() 375 return kstrtoull(s, base, (unsigned long long *)res); in boot_kstrtoul()
|
D | string.h | 29 int kstrtoull(const char *s, unsigned int base, unsigned long long *res);
|
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/gt/ |
D | sysfs_engines.c | 171 err = kstrtoull(buf, 0, &duration); in max_spin_store() 221 err = kstrtoull(buf, 0, &duration); in timeslice_store() 275 err = kstrtoull(buf, 0, &duration); in stop_store() 325 err = kstrtoull(buf, 0, &timeout); in preempt_timeout_store() 382 err = kstrtoull(buf, 0, &delay); in heartbeat_store()
|
/kernel/linux/linux-5.10/drivers/misc/habanalabs/gaudi/ |
D | gaudi_hwmgr.c | 80 rc = kstrtoull(buf, 0, &value); in clk_max_freq_mhz_store()
|
/kernel/linux/linux-5.10/drivers/base/ |
D | memory.c | 422 ret = kstrtoull(buf, 0, &phys_addr); in probe_store() 464 if (kstrtoull(buf, 0, &pfn) < 0) in soft_offline_page_store() 480 if (kstrtoull(buf, 0, &pfn) < 0) in hard_offline_page_store()
|
/kernel/linux/linux-4.19/drivers/base/ |
D | memory.c | 510 ret = kstrtoull(buf, 0, &phys_addr); in memory_probe_store() 552 if (kstrtoull(buf, 0, &pfn) < 0) in store_soft_offline_page() 574 if (kstrtoull(buf, 0, &pfn) < 0) in store_hard_offline_page()
|
/kernel/linux/linux-5.10/include/linux/ |
D | kernel.h | 333 int __must_check kstrtoull(const char *s, unsigned int base, unsigned long long *res); 359 return kstrtoull(s, base, (unsigned long long *)res); in kstrtoul() 397 return kstrtoull(s, base, res); in kstrtou64()
|
/kernel/linux/linux-4.19/arch/powerpc/sysdev/ |
D | fsl_85xx_l2ctlr.c | 42 if (!sram_offset || (kstrtoull(sram_offset, 0, &addr) < 0)) in get_cache_sram_params()
|
/kernel/linux/linux-5.10/arch/powerpc/sysdev/ |
D | fsl_85xx_l2ctlr.c | 29 if (!sram_offset || (kstrtoull(sram_offset, 0, &addr) < 0)) in get_cache_sram_params()
|
/kernel/linux/linux-4.19/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()
|
/kernel/linux/linux-5.10/arch/um/kernel/ |
D | time.c | 454 if (kstrtoull(buf, 0, &id)) { in time_travel_connect_external() 751 err = kstrtoull(str, 0, &time_travel_start); in setup_time_travel_start()
|
/kernel/linux/linux-5.10/drivers/s390/scsi/ |
D | zfcp_aux.c | 109 if (!token || kstrtoull(token, 0, (unsigned long long *) &wwpn)) in zfcp_init_device_setup() 113 if (!token || kstrtoull(token, 0, (unsigned long long *) &lun)) in zfcp_init_device_setup()
|
D | zfcp_sysfs.c | 311 if (kstrtoull(buf, 0, (unsigned long long *) &wwpn)) in zfcp_sysfs_port_remove_store() 450 if (kstrtoull(buf, 0, (unsigned long long *) &fcp_lun)) in zfcp_sysfs_unit_add_store() 468 if (kstrtoull(buf, 0, (unsigned long long *) &fcp_lun)) in zfcp_sysfs_unit_remove_store()
|
/kernel/linux/linux-4.19/include/linux/ |
D | kernel.h | 348 int __must_check kstrtoull(const char *s, unsigned int base, unsigned long long *res); 375 return kstrtoull(s, base, (unsigned long long *)res); in kstrtoul() 414 return kstrtoull(s, base, res); in kstrtou64()
|
/kernel/linux/linux-4.19/drivers/misc/ |
D | ds1682.c | 112 rc = kstrtoull(buf, 0, &val); in ds1682_store()
|
/kernel/linux/linux-5.10/drivers/misc/ |
D | ds1682.c | 109 rc = kstrtoull(buf, 0, &val); in ds1682_store()
|
/kernel/linux/linux-5.10/kernel/trace/ |
D | trace_events_inject.c | 97 ret = kstrtoull(num, 0, &val); in parse_field()
|