Home
last modified time | relevance | path

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

/external/boringssl/src/ssl/test/runner/hrss/
Dhrss.go28 bitsInLastWord = N % bitsPerWord const
63 p.s[wordsPerPoly-1] &= (1 << bitsInLastWord) - 1
64 p.a[wordsPerPoly-1] &= (1 << bitsInLastWord) - 1
291 out[n+i] = carry | in[i]<<bitsInLastWord
292 carry = in[i] >> (bitsPerWord - bitsInLastWord)
301 …if (bits == 0 || (bits & (bits - 1)) != 0 || bits > bitsPerWord/2 || bitsInLastWord < bitsPerWord/…
312 out[wordsPerPoly-1] = carry>>(bitsPerWord-bitsInLastWord) | in[wordsPerPoly-1]>>bits
363 factora := uint(int(p.s[wordsPerPoly-1]<<(bitsPerWord-bitsInLastWord)) >> (bitsPerWord - 1))
364 factors := uint(int(p.a[wordsPerPoly-1]<<(bitsPerWord-bitsInLastWord)) >> (bitsPerWord - 1))
386 carrys := (p.s[wordsPerPoly-1] >> (bitsInLastWord - 1)) & 1
[all …]