Home
last modified time | relevance | path

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

/crypto/
Dxor.c106 struct xor_block_template *f, *fastest; in calibrate_xor_blocks() local
108 fastest = XOR_SELECT_TEMPLATE(NULL); in calibrate_xor_blocks()
110 if (fastest) { in calibrate_xor_blocks()
113 fastest->name); in calibrate_xor_blocks()
133 fastest = template_list; in calibrate_xor_blocks()
134 for (f = fastest; f; f = f->next) in calibrate_xor_blocks()
135 if (f->speed > fastest->speed) in calibrate_xor_blocks()
136 fastest = f; in calibrate_xor_blocks()
139 fastest->name, fastest->speed / 1000, fastest->speed % 1000); in calibrate_xor_blocks()
145 active_template = fastest; in calibrate_xor_blocks()