Home
last modified time | relevance | path

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

/crypto/
Dxor.c122 struct xor_block_template *f, *fastest; in calibrate_xor_blocks() local
124 fastest = XOR_SELECT_TEMPLATE(NULL); in calibrate_xor_blocks()
126 if (fastest) { in calibrate_xor_blocks()
129 fastest->name); in calibrate_xor_blocks()
150 fastest = template_list; in calibrate_xor_blocks()
151 for (f = fastest; f; f = f->next) in calibrate_xor_blocks()
152 if (f->speed > fastest->speed) in calibrate_xor_blocks()
153 fastest = f; in calibrate_xor_blocks()
156 fastest->name, fastest->speed); in calibrate_xor_blocks()
162 active_template = fastest; in calibrate_xor_blocks()