tls: whitespace fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
d728a30c21
commit
e52e43c72f
@ -506,12 +506,10 @@ static void sp_256_sqr_10(sp_digit* r, const sp_digit* a)
|
|||||||
break;
|
break;
|
||||||
if (j < 0)
|
if (j < 0)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
c += ((int64_t)a[i]) * a[j] * 2;
|
c += ((int64_t)a[i]) * a[j] * 2;
|
||||||
}
|
}
|
||||||
if (i == j)
|
if (i == j)
|
||||||
c += ((int64_t)a[i]) * a[i];
|
c += ((int64_t)a[i]) * a[i];
|
||||||
|
|
||||||
r[k + 2] += c >> 52;
|
r[k + 2] += c >> 52;
|
||||||
r[k + 1] = (c >> 26) & 0x3ffffff;
|
r[k + 1] = (c >> 26) & 0x3ffffff;
|
||||||
c = (c & 0x3ffffff) << 26;
|
c = (c & 0x3ffffff) << 26;
|
||||||
|
Loading…
Reference in New Issue
Block a user