Lines Matching refs:V
229 uint32_t V; in multiprecision_mult() local
231 U = V = W = 0; in multiprecision_mult()
241 V = a[i] * b[j]; in multiprecision_mult()
242 V = V + U; in multiprecision_mult()
243 U = (V < U); in multiprecision_mult()
245 V = V + c[i + j]; in multiprecision_mult()
246 U += (V < c[i + j]); in multiprecision_mult()
247 c[i + j] = V; in multiprecision_mult()
255 uint32_t V; in multiprecision_fast_mod() local
303 V = c[0] < U; in multiprecision_fast_mod()
304 c[1] += V; in multiprecision_fast_mod()
305 V = c[1] < V; in multiprecision_fast_mod()
306 c[2] += V; in multiprecision_fast_mod()
307 V = c[2] < V; in multiprecision_fast_mod()
309 V = c[2] < U; in multiprecision_fast_mod()
310 c[3] += V; in multiprecision_fast_mod()
311 V = c[3] < V; in multiprecision_fast_mod()
312 c[4] += V; in multiprecision_fast_mod()
313 V = c[4] < V; in multiprecision_fast_mod()
314 c[5] += V; in multiprecision_fast_mod()
315 V = c[5] < V; in multiprecision_fast_mod()
317 if (V) { in multiprecision_fast_mod()