Lines Matching refs:fastest
110 struct xor_block_template *f, *fastest; in calibrate_xor_blocks() local
129 fastest = NULL; in calibrate_xor_blocks()
132 fastest = XOR_SELECT_TEMPLATE(fastest); in calibrate_xor_blocks()
137 if (fastest) { in calibrate_xor_blocks()
140 xor_speed(fastest); in calibrate_xor_blocks()
145 fastest = template_list; in calibrate_xor_blocks()
146 for (f = fastest; f; f = f->next) in calibrate_xor_blocks()
147 if (f->speed > fastest->speed) in calibrate_xor_blocks()
148 fastest = f; in calibrate_xor_blocks()
152 fastest->name, fastest->speed / 1000, fastest->speed % 1000); in calibrate_xor_blocks()
159 active_template = fastest; in calibrate_xor_blocks()