Lines Matching refs:FieldElement
57 FieldElement x = {Get64(key), Get64(key+8)};
134 GaloisHash::FieldElement GaloisHash::Add(
135 const FieldElement& x,
136 const FieldElement& y) {
138 FieldElement z = {x.low^y.low, x.hi^y.hi};
143 GaloisHash::FieldElement GaloisHash::Double(const FieldElement& x) {
146 FieldElement xx;
164 void GaloisHash::MulAfterPrecomputation(const FieldElement* table,
165 FieldElement* x) {
166 FieldElement z = {0, 0};
189 const FieldElement& t = table[word & 0xf];
212 void GaloisHash::Mul16(FieldElement* x) {