Home | History | Annotate | Download | only in cipher

Lines Matching full:high

46 //   the coefficient of x?? can be obtained by v.high >> 63.
47 // the coefficient of x¹²? can be obtained by v.high & 1.
49 low, high uint64
177 return gcmFieldElement{x.low ^ y.low, x.high ^ y.high}
182 msbSet := x.high&1 == 1
185 double.high = x.high >> 1
186 double.high |= x.low << 63
213 word := y.high
221 msw := z.high & 0xf
222 z.high >>= 4
223 z.high |= z.low << 60
233 z.high ^= t.high
246 y.high ^= getUint64(blocks[8:])
327 y.high ^= uint64(len(nonce)) * 8
330 putUint64(counter[8:], y.high)
342 y.high ^= uint64(len(ciphertext)) * 8
347 putUint64(out[8:], y.high)