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