/kernel/linux/linux-5.10/lib/ |
H A D | kstrtox.c | 114 * kstrtoull - convert a string to an unsigned long long 128 int kstrtoull(const char *s, unsigned int base, unsigned long long *res) in kstrtoull() function 134 EXPORT_SYMBOL(kstrtoull); variable 164 rv = kstrtoull(s, base, &tmp); in kstrtoll() 181 rv = kstrtoull(s, base, &tmp); in _kstrtoul() 227 rv = kstrtoull(s, base, &tmp); in kstrtouint() 272 rv = kstrtoull(s, base, &tmp); in kstrtou16() 302 rv = kstrtoull(s, base, &tmp); in kstrtou8() 405 kstrto_from_user(kstrtoull_from_user, kstrtoull, unsigned long long);
|
H A 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()
|
H A D | parser.c | 170 ret = kstrtoull(buf, base, &val); in match_u64int()
|
/kernel/linux/linux-6.6/lib/ |
H A D | kstrtox.c | 117 * kstrtoull - convert a string to an unsigned long long 132 int kstrtoull(const char *s, unsigned int base, unsigned long long *res) in kstrtoull() function 138 EXPORT_SYMBOL(kstrtoull); variable 169 rv = kstrtoull(s, base, &tmp); in kstrtoll() 186 rv = kstrtoull(s, base, &tmp); in _kstrtoul() 233 rv = kstrtoull(s, base, &tmp); in kstrtouint() 280 rv = kstrtoull(s, base, &tmp); in kstrtou16() 312 rv = kstrtoull(s, base, &tmp); in kstrtou8() 422 kstrto_from_user(kstrtoull_from_user, kstrtoull, unsigned long long);
|
H A 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()
|
H A D | parser.c | 178 ret = kstrtoull(buf, base, &val); in match_u64int()
|
/kernel/linux/linux-5.10/include/linux/ |
H A D | kstrtox.h | 12 int __must_check kstrtoull(const char *s, unsigned int base, unsigned long long *res); 38 return kstrtoull(s, base, (unsigned long long *)res); in kstrtoul() 76 return kstrtoull(s, base, res); in kstrtou64()
|
/kernel/linux/linux-6.6/include/linux/ |
H A D | kstrtox.h | 12 int __must_check kstrtoull(const char *s, unsigned int base, unsigned long long *res); 38 return kstrtoull(s, base, (unsigned long long *)res); in kstrtoul() 76 return kstrtoull(s, base, res); in kstrtou64()
|
/kernel/linux/linux-5.10/arch/x86/boot/ |
H A D | string.c | 316 * kstrtoull - convert a string to an unsigned long long 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()
|
H A D | string.h | 29 int kstrtoull(const char *s, unsigned int base, unsigned long long *res);
|
/kernel/linux/linux-6.6/arch/x86/boot/ |
H A D | string.c | 316 * kstrtoull - convert a string to an unsigned long long 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()
|
H A D | string.h | 32 int kstrtoull(const char *s, unsigned int base, unsigned long long *res);
|
/kernel/linux/linux-5.10/drivers/md/ |
H A 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-6.6/drivers/md/ |
H A D | dm-init.c | 136 if (kstrtoull(field[0], 0, &sp->sector_start)) in dm_parse_table_entry() 139 if (kstrtoull(field[1], 0, &sp->length)) in dm_parse_table_entry() 215 if (kstrtoull(field[2], 0, &dev->dmi.dev)) in dm_parse_device_entry()
|
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/gt/ |
H A 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-6.6/drivers/gpu/drm/i915/gt/ |
H A D | sysfs_engines.c | 165 err = kstrtoull(buf, 0, &duration); in max_spin_store() 216 err = kstrtoull(buf, 0, &duration); in timeslice_store() 271 err = kstrtoull(buf, 0, &duration); in stop_store() 322 err = kstrtoull(buf, 0, &timeout); in preempt_timeout_store() 380 err = kstrtoull(buf, 0, &delay); in heartbeat_store()
|
/kernel/linux/linux-5.10/arch/powerpc/sysdev/ |
H A D | fsl_85xx_l2ctlr.c | 29 if (!sram_offset || (kstrtoull(sram_offset, 0, &addr) < 0)) in get_cache_sram_params()
|
/kernel/linux/linux-5.10/drivers/misc/habanalabs/gaudi/ |
H A D | gaudi_hwmgr.c | 80 rc = kstrtoull(buf, 0, &value); in clk_max_freq_mhz_store()
|
/kernel/linux/linux-5.10/kernel/trace/ |
H A D | trace_events_inject.c | 97 ret = kstrtoull(num, 0, &val); in parse_field()
|
/kernel/linux/linux-6.6/kernel/trace/ |
H A D | trace_events_inject.c | 97 ret = kstrtoull(num, 0, &val); in parse_field()
|
/kernel/linux/linux-5.10/drivers/base/ |
H A 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-5.10/arch/um/kernel/ |
H A 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-6.6/arch/um/kernel/ |
H A D | time.c | 537 if (kstrtoull(buf, 0, &id)) { in time_travel_connect_external() 869 err = kstrtoull(str, 0, &time_travel_start); in setup_time_travel_start()
|
/kernel/linux/linux-5.10/drivers/s390/scsi/ |
H A 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()
|
/kernel/linux/linux-6.6/drivers/s390/scsi/ |
H A 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()
|