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