Lines Matching refs:h7
810 int64_t h7 = load_3(s + 23) << 5; in fe_frombytes() local
828 carry7 = h7 + (1 << 24); h8 += carry7 >> 25; h7 -= carry7 & kTop39Bits; in fe_frombytes()
833 carry6 = h6 + (1 << 25); h7 += carry6 >> 26; h6 -= carry6 & kTop38Bits; in fe_frombytes()
843 h[7] = (int32_t)h7; in fe_frombytes()
881 int32_t h7 = h[7]; in fe_tobytes() local
894 q = (h7 + q) >> 25; in fe_tobytes()
908 h7 += h6 >> 26; h6 &= kBottom26Bits; in fe_tobytes()
909 h8 += h7 >> 25; h7 &= kBottom25Bits; in fe_tobytes()
942 s[22] = (uint8_t)((h6 >> 23) | ((uint32_t)(h7) << 3)); in fe_tobytes()
943 s[23] = (uint8_t) (h7 >> 5); in fe_tobytes()
944 s[24] = (uint8_t) (h7 >> 13); in fe_tobytes()
945 s[25] = (uint8_t)((h7 >> 21) | ((uint32_t)(h8) << 4)); in fe_tobytes()
1188 …int64_t h7 = f0g7 + f1g6 + f2g5 + f3g4 + f4g3 + f5g2 + f6g1 + f7g0 + f8g9_19 … in fe_mul() local
1222 carry6 = h6 + (1 << 25); h7 += carry6 >> 26; h6 -= carry6 & kTop38Bits; in fe_mul()
1229 carry7 = h7 + (1 << 24); h8 += carry7 >> 25; h7 -= carry7 & kTop39Bits; in fe_mul()
1257 h[7] = (int32_t)h7; in fe_mul()
1362 int64_t h7 = f0f7_2 + f1f6_2 + f2f5_2 + f3f4_2 + f8f9_38; in fe_sq() local
1383 carry6 = h6 + (1 << 25); h7 += carry6 >> 26; h6 -= carry6 & kTop38Bits; in fe_sq()
1386 carry7 = h7 + (1 << 24); h8 += carry7 >> 25; h7 -= carry7 & kTop39Bits; in fe_sq()
1402 h[7] = (int32_t)h7; in fe_sq()
1671 int64_t h7 = f0f7_2 + f1f6_2 + f2f5_2 + f3f4_2 + f8f9_38; in fe_sq2() local
1692 h7 += h7; in fe_sq2()
1703 carry6 = h6 + (1 << 25); h7 += carry6 >> 26; h6 -= carry6 & kTop38Bits; in fe_sq2()
1706 carry7 = h7 + (1 << 24); h8 += carry7 >> 25; h7 -= carry7 & kTop39Bits; in fe_sq2()
1722 h[7] = (int32_t)h7; in fe_sq2()
4334 int64_t h7 = f7 * (int64_t) 121666; in fe_mul121666() local
4352 carry7 = h7 + (1 << 24); h8 += carry7 >> 25; h7 -= carry7 & kTop39Bits; in fe_mul121666()
4357 carry6 = h6 + (1 << 25); h7 += carry6 >> 26; h6 -= carry6 & kTop38Bits; in fe_mul121666()
4367 h[7] = (int32_t)h7; in fe_mul121666()