Lines Matching refs:V
273 DWORD V; in multiprecision_mult() local
275 U = V = W = 0; in multiprecision_mult()
287 V = a[i] * b[j]; in multiprecision_mult()
288 V = V + U; in multiprecision_mult()
289 U = (V < U); in multiprecision_mult()
291 V = V + c[i+j]; in multiprecision_mult()
292 U += (V < c[i+j]); in multiprecision_mult()
293 c[i+j] = V; in multiprecision_mult()
302 DWORD V; in multiprecision_fast_mod() local
350 V = c[0] < U; in multiprecision_fast_mod()
351 c[1] += V; in multiprecision_fast_mod()
352 V = c[1] < V; in multiprecision_fast_mod()
353 c[2] += V; in multiprecision_fast_mod()
354 V = c[2] < V; in multiprecision_fast_mod()
356 V = c[2] < U; in multiprecision_fast_mod()
357 c[3] += V; in multiprecision_fast_mod()
358 V = c[3] < V; in multiprecision_fast_mod()
359 c[4] += V; in multiprecision_fast_mod()
360 V = c[4] < V; in multiprecision_fast_mod()
361 c[5] += V; in multiprecision_fast_mod()
362 V = c[5] < V; in multiprecision_fast_mod()
364 if (V) in multiprecision_fast_mod()