/kernel/linux/linux-5.10/drivers/misc/mei/ |
H A D | hw-txe-regs.h | 11 #define SEC_ALIVENESS_TIMER_TIMEOUT (5 * MSEC_PER_SEC) 12 #define SEC_ALIVENESS_WAIT_TIMEOUT (1 * MSEC_PER_SEC) 13 #define SEC_RESET_WAIT_TIMEOUT (1 * MSEC_PER_SEC) 14 #define SEC_READY_WAIT_TIMEOUT (5 * MSEC_PER_SEC) 15 #define START_MESSAGE_RESPONSE_WAIT_TIMEOUT (5 * MSEC_PER_SEC) 16 #define RESET_CANCEL_WAIT_TIMEOUT (1 * MSEC_PER_SEC)
|
/kernel/linux/linux-6.6/drivers/misc/mei/ |
H A D | hw-txe-regs.h | 11 #define SEC_ALIVENESS_TIMER_TIMEOUT (5 * MSEC_PER_SEC) 12 #define SEC_ALIVENESS_WAIT_TIMEOUT (1 * MSEC_PER_SEC) 13 #define SEC_RESET_WAIT_TIMEOUT (1 * MSEC_PER_SEC) 14 #define SEC_READY_WAIT_TIMEOUT (5 * MSEC_PER_SEC) 15 #define START_MESSAGE_RESPONSE_WAIT_TIMEOUT (5 * MSEC_PER_SEC) 16 #define RESET_CANCEL_WAIT_TIMEOUT (1 * MSEC_PER_SEC)
|
/kernel/linux/linux-5.10/include/linux/ |
H A D | jiffies.h | 302 #if HZ <= MSEC_PER_SEC && !(MSEC_PER_SEC % HZ) 310 return (m + (MSEC_PER_SEC / HZ) - 1) / (MSEC_PER_SEC / HZ); in _msecs_to_jiffies() 312 #elif HZ > MSEC_PER_SEC && !(HZ % MSEC_PER_SEC) 323 return m * (HZ / MSEC_PER_SEC); in _msecs_to_jiffies() 332 if (HZ > MSEC_PER_SEC && m > jiffies_to_msecs(MAX_JIFFY_OFFSET)) in _msecs_to_jiffies()
|
/kernel/linux/linux-6.6/include/linux/ |
H A D | jiffies.h | 452 #if HZ <= MSEC_PER_SEC && !(MSEC_PER_SEC % HZ) 460 return (m + (MSEC_PER_SEC / HZ) - 1) / (MSEC_PER_SEC / HZ); in _msecs_to_jiffies() 462 #elif HZ > MSEC_PER_SEC && !(HZ % MSEC_PER_SEC) 473 return m * (HZ / MSEC_PER_SEC); in _msecs_to_jiffies() 482 if (HZ > MSEC_PER_SEC && m > jiffies_to_msecs(MAX_JIFFY_OFFSET)) in _msecs_to_jiffies()
|
/kernel/linux/linux-5.10/drivers/hwmon/ |
H A D | lm75.c | 128 .default_sample_time = MSEC_PER_SEC / 10, 159 .default_sample_time = MSEC_PER_SEC / 6, 171 .default_sample_time = MSEC_PER_SEC / 10, 175 .default_sample_time = MSEC_PER_SEC / 10, 179 .default_sample_time = MSEC_PER_SEC / 10, 183 .default_sample_time = MSEC_PER_SEC / 10, 187 .default_sample_time = MSEC_PER_SEC / 7, 191 .default_sample_time = MSEC_PER_SEC / 7, 196 .default_sample_time = MSEC_PER_SEC / 20, 200 .default_sample_time = MSEC_PER_SEC / 1 [all...] |
/kernel/linux/linux-6.6/drivers/hwmon/ |
H A D | lm75.c | 129 .default_sample_time = MSEC_PER_SEC / 10, 168 .default_sample_time = MSEC_PER_SEC / 6, 180 .default_sample_time = MSEC_PER_SEC / 10, 184 .default_sample_time = MSEC_PER_SEC / 10, 188 .default_sample_time = MSEC_PER_SEC / 10, 192 .default_sample_time = MSEC_PER_SEC / 10, 196 .default_sample_time = MSEC_PER_SEC / 7, 200 .default_sample_time = MSEC_PER_SEC / 7, 205 .default_sample_time = MSEC_PER_SEC / 20, 209 .default_sample_time = MSEC_PER_SEC / 1 [all...] |
/kernel/linux/linux-5.10/tools/testing/selftests/intel_pstate/ |
H A D | aperf.c | 16 #define MSEC_PER_SEC 1000L macro 86 start = before.tv_sec*MSEC_PER_SEC + before.tv_nsec/NSEC_PER_MSEC; in main() 87 finish = after.tv_sec*MSEC_PER_SEC + after.tv_nsec/NSEC_PER_MSEC; in main() 90 printf("runTime: %4.2f\n", 1.0*total/MSEC_PER_SEC); in main()
|
/kernel/linux/linux-6.6/tools/testing/selftests/intel_pstate/ |
H A D | aperf.c | 16 #define MSEC_PER_SEC 1000L macro 86 start = before.tv_sec*MSEC_PER_SEC + before.tv_nsec/NSEC_PER_MSEC; in main() 87 finish = after.tv_sec*MSEC_PER_SEC + after.tv_nsec/NSEC_PER_MSEC; in main() 90 printf("runTime: %4.2f\n", 1.0*total/MSEC_PER_SEC); in main()
|
/kernel/linux/linux-5.10/kernel/time/ |
H A D | time.c | 376 #if HZ <= MSEC_PER_SEC && !(MSEC_PER_SEC % HZ) in jiffies_to_msecs() 377 return (MSEC_PER_SEC / HZ) * j; in jiffies_to_msecs() 378 #elif HZ > MSEC_PER_SEC && !(HZ % MSEC_PER_SEC) in jiffies_to_msecs() 379 return (j + (HZ / MSEC_PER_SEC) - 1)/(HZ / MSEC_PER_SEC); in jiffies_to_msecs() 394 * Hz usually doesn't go much further MSEC_PER_SEC. in jiffies_to_usecs() 702 #if HZ <= MSEC_PER_SEC && !(MSEC_PER_SEC in jiffies64_to_msecs() [all...] |
/kernel/linux/linux-6.6/kernel/time/ |
H A D | time.c | 379 #if HZ <= MSEC_PER_SEC && !(MSEC_PER_SEC % HZ) in jiffies_to_msecs() 380 return (MSEC_PER_SEC / HZ) * j; in jiffies_to_msecs() 381 #elif HZ > MSEC_PER_SEC && !(HZ % MSEC_PER_SEC) in jiffies_to_msecs() 382 return (j + (HZ / MSEC_PER_SEC) - 1)/(HZ / MSEC_PER_SEC); in jiffies_to_msecs() 403 * Hz usually doesn't go much further MSEC_PER_SEC. in jiffies_to_usecs() 773 #if HZ <= MSEC_PER_SEC && !(MSEC_PER_SEC in jiffies64_to_msecs() [all...] |
/kernel/linux/linux-5.10/drivers/net/wireguard/selftest/ |
H A D | ratelimiter.c | 16 [PACKETS_BURSTABLE + 1] = { true, MSEC_PER_SEC / PACKETS_PER_SECOND }, 18 [PACKETS_BURSTABLE + 3] = { true, (MSEC_PER_SEC / PACKETS_PER_SECOND) * 2 }, 25 unsigned int total_msecs = 2 * MSEC_PER_SEC / PACKETS_PER_SECOND / 3; in maximum_jiffies_at_index() 130 BUILD_BUG_ON(MSEC_PER_SEC % PACKETS_PER_SECOND != 0); in wg_ratelimiter_selftest()
|
/kernel/linux/linux-6.6/drivers/net/wireguard/selftest/ |
H A D | ratelimiter.c | 16 [PACKETS_BURSTABLE + 1] = { true, MSEC_PER_SEC / PACKETS_PER_SECOND }, 18 [PACKETS_BURSTABLE + 3] = { true, (MSEC_PER_SEC / PACKETS_PER_SECOND) * 2 }, 25 unsigned int total_msecs = 2 * MSEC_PER_SEC / PACKETS_PER_SECOND / 3; in maximum_jiffies_at_index() 130 BUILD_BUG_ON(MSEC_PER_SEC % PACKETS_PER_SECOND != 0); in wg_ratelimiter_selftest()
|
/kernel/linux/linux-5.10/include/linux/usb/ |
H A D | tcpm.h | 29 #define PD_ROLE_SWAP_TIMEOUT (MSEC_PER_SEC * 10) 30 #define PD_PPS_CTRL_TIMEOUT (MSEC_PER_SEC * 10)
|
/kernel/linux/linux-6.6/include/linux/usb/ |
H A D | tcpm.h | 33 #define PD_ROLE_SWAP_TIMEOUT (MSEC_PER_SEC * 10) 34 #define PD_PPS_CTRL_TIMEOUT (MSEC_PER_SEC * 10)
|
/kernel/linux/linux-5.10/tools/include/linux/ |
H A D | time64.h | 5 #define MSEC_PER_SEC 1000L macro
|
/kernel/linux/linux-5.10/include/vdso/ |
H A D | time64.h | 6 #define MSEC_PER_SEC 1000L macro
|
/kernel/linux/linux-6.6/tools/include/linux/ |
H A D | time64.h | 5 #define MSEC_PER_SEC 1000L macro
|
/kernel/linux/linux-6.6/include/vdso/ |
H A D | time64.h | 6 #define MSEC_PER_SEC 1000L macro
|
/kernel/linux/linux-5.10/drivers/nvmem/ |
H A D | jz4780-efuse.c | 96 1 * MSEC_PER_SEC, in jz4780_efuse_read() 97 50 * MSEC_PER_SEC); in jz4780_efuse_read()
|
/kernel/linux/linux-6.6/drivers/misc/ |
H A D | vcpu_stall_detector.c | 73 MSEC_PER_SEC / 2; in vcpu_stall_detect_timer_fn() 105 MSEC_PER_SEC / 2; in start_stall_detector_cpu()
|
/kernel/linux/linux-6.6/drivers/watchdog/ |
H A D | pseries-wdt.c | 108 msecs = wdd->timeout * MSEC_PER_SEC; in pseries_wdt_start() 182 pw->wd.min_timeout = DIV_ROUND_UP(msecs, MSEC_PER_SEC); in pseries_wdt_probe()
|
/kernel/linux/linux-6.6/drivers/nvmem/ |
H A D | jz4780-efuse.c | 96 1 * MSEC_PER_SEC, in jz4780_efuse_read() 97 50 * MSEC_PER_SEC); in jz4780_efuse_read()
|
/kernel/linux/linux-5.10/drivers/net/wireless/ti/wl18xx/ |
H A D | scan.c | 217 c->long_interval > req->scan_plans[0].interval * MSEC_PER_SEC) { in wl18xx_scan_sched_scan_config() 219 cpu_to_le16(req->scan_plans[0].interval * MSEC_PER_SEC); in wl18xx_scan_sched_scan_config() 225 cpu_to_le16(req->scan_plans[0].interval * MSEC_PER_SEC); in wl18xx_scan_sched_scan_config()
|
/kernel/linux/linux-6.6/drivers/net/wireless/ti/wl18xx/ |
H A D | scan.c | 217 c->long_interval > req->scan_plans[0].interval * MSEC_PER_SEC) { in wl18xx_scan_sched_scan_config() 219 cpu_to_le16(req->scan_plans[0].interval * MSEC_PER_SEC); in wl18xx_scan_sched_scan_config() 225 cpu_to_le16(req->scan_plans[0].interval * MSEC_PER_SEC); in wl18xx_scan_sched_scan_config()
|
/kernel/linux/linux-5.10/drivers/input/mouse/ |
H A D | synaptics_i2c.c | 178 #define THREAD_IRQ_SLEEP_MSECS (THREAD_IRQ_SLEEP_SECS * MSEC_PER_SEC) 184 #define NO_DATA_THRES (MSEC_PER_SEC) 185 #define NO_DATA_SLEEP_MSECS (MSEC_PER_SEC / 4) 232 touch->scan_ms = MSEC_PER_SEC / scan_rate; in set_scan_rate()
|