• Home
  • Raw
  • Download

Lines Matching refs:h6

799     int64_t h6 =  load_3(s + 20) << 7;  in fe_frombytes()  local
817 carry5 = h5 + (1 << 24); h6 += carry5 >> 25; h5 -= carry5 & kTop39Bits; in fe_frombytes()
823 carry6 = h6 + (1 << 25); h7 += carry6 >> 26; h6 -= carry6 & kTop38Bits; in fe_frombytes()
832 h[6] = (int32_t)h6; in fe_frombytes()
870 int32_t h6 = h[6]; in fe_tobytes() local
883 q = (h6 + q) >> 26; in fe_tobytes()
897 h6 += h5 >> 25; h5 &= kBottom25Bits; in fe_tobytes()
898 h7 += h6 >> 26; h6 &= kBottom26Bits; in fe_tobytes()
929 s[19] = (uint8_t)((h5 >> 24) | ((uint32_t)(h6) << 1)); in fe_tobytes()
930 s[20] = (uint8_t) (h6 >> 7); in fe_tobytes()
931 s[21] = (uint8_t) (h6 >> 15); in fe_tobytes()
932 s[22] = (uint8_t)((h6 >> 23) | ((uint32_t)(h7) << 3)); in fe_tobytes()
1177 …int64_t h6 = f0g6 + f1g5_2 + f2g4 + f3g3_2 + f4g2 + f5g1_2 + f6g0 + f7g9_38 + f8g8_19 … in fe_mul() local
1205 carry5 = h5 + (1 << 24); h6 += carry5 >> 25; h5 -= carry5 & kTop39Bits; in fe_mul()
1212 carry6 = h6 + (1 << 25); h7 += carry6 >> 26; h6 -= carry6 & kTop38Bits; in fe_mul()
1246 h[6] = (int32_t)h6; in fe_mul()
1351 int64_t h6 = f0f6_2 + f1f5_4 + f2f4_2 + f3f3_2 + f7f9_76 + f8f8_19; in fe_sq() local
1370 carry5 = h5 + (1 << 24); h6 += carry5 >> 25; h5 -= carry5 & kTop39Bits; in fe_sq()
1373 carry6 = h6 + (1 << 25); h7 += carry6 >> 26; h6 -= carry6 & kTop38Bits; in fe_sq()
1391 h[6] = (int32_t)h6; in fe_sq()
1660 int64_t h6 = f0f6_2 + f1f5_4 + f2f4_2 + f3f3_2 + f7f9_76 + f8f8_19; in fe_sq2() local
1681 h6 += h6; in fe_sq2()
1690 carry5 = h5 + (1 << 24); h6 += carry5 >> 25; h5 -= carry5 & kTop39Bits; in fe_sq2()
1693 carry6 = h6 + (1 << 25); h7 += carry6 >> 26; h6 -= carry6 & kTop38Bits; in fe_sq2()
1711 h[6] = (int32_t)h6; in fe_sq2()
4328 int64_t h6 = f6 * (int64_t) 121666; in fe_mul121666() local
4346 carry5 = h5 + (1 << 24); h6 += carry5 >> 25; h5 -= carry5 & kTop39Bits; in fe_mul121666()
4352 carry6 = h6 + (1 << 25); h7 += carry6 >> 26; h6 -= carry6 & kTop38Bits; in fe_mul121666()
4361 h[6] = (int32_t)h6; in fe_mul121666()