Home
last modified time | relevance | path

Searched refs:min (Results 1 – 2 of 2) sorted by relevance

/init/
Dcalibrate.c44 int min = -1; in calibrate_delay_direct() local
109 if (min < 0 || timer_rate_max < measured_times[min]) in calibrate_delay_direct()
110 min = i; in calibrate_delay_direct()
129 if ((measured_times[max] - measured_times[min]) < maxdiff) in calibrate_delay_direct()
136 (estimate - measured_times[min])) { in calibrate_delay_direct()
139 min, measured_times[min]); in calibrate_delay_direct()
140 measured_times[min] = 0; in calibrate_delay_direct()
141 min = max; in calibrate_delay_direct()
147 max = min; in calibrate_delay_direct()
155 if (measured_times[i] < measured_times[min]) in calibrate_delay_direct()
[all …]
Ddo_mounts.c194 unsigned maj, min; in name_to_dev_t() local
196 if (sscanf(name, "%u:%u", &maj, &min) == 2) { in name_to_dev_t()
197 res = MKDEV(maj, min); in name_to_dev_t()
198 if (maj != MAJOR(res) || min != MINOR(res)) in name_to_dev_t()