Lines Matching +full:10 +full:ms
73 /* We come here every 100ms in the worst case, so that's 100M ns of in led_activity_function()
100 * (typically 10ms every second, or 10ms ON, 990ms OFF). Then we want in led_activity_function()
103 * core systems. At this point it should reach 10 Hz with a 10/90 duty in led_activity_function()
104 * cycle (10ms ON, 90ms OFF). After this point, the blinking frequency in led_activity_function()
105 * remains stable (10 Hz) and only the duty cycle increases to report in led_activity_function()
106 * the activity, up to the point where we have 90ms ON, 10ms OFF when in led_activity_function()
112 * - a target CPU usage of min(50%, 100%/#CPU) for a 10% duty cycle in led_activity_function()
113 * (10ms ON, 90ms OFF) in led_activity_function()
115 * ON_ms = 10 in led_activity_function()
118 * ON_ms = 10 + (usage-target)/(100%-target) * 80 in led_activity_function()
122 * 100 ms and keep track of the sleep time left. This allows us to in led_activity_function()
139 10 : /* ON */ in led_activity_function()
143 10 + 80 * (usage - target) / (100 - target) : /* ON */ in led_activity_function()