• Home
  • Raw
  • Download

Lines Matching refs:small1

479 static void smallfelem_mul(longfelem out, const smallfelem small1,  in smallfelem_mul()  argument
484 a = ((uint128_t)small1[0]) * small2[0]; in smallfelem_mul()
490 a = ((uint128_t)small1[0]) * small2[1]; in smallfelem_mul()
496 a = ((uint128_t)small1[1]) * small2[0]; in smallfelem_mul()
502 a = ((uint128_t)small1[0]) * small2[2]; in smallfelem_mul()
508 a = ((uint128_t)small1[1]) * small2[1]; in smallfelem_mul()
514 a = ((uint128_t)small1[2]) * small2[0]; in smallfelem_mul()
520 a = ((uint128_t)small1[0]) * small2[3]; in smallfelem_mul()
526 a = ((uint128_t)small1[1]) * small2[2]; in smallfelem_mul()
532 a = ((uint128_t)small1[2]) * small2[1]; in smallfelem_mul()
538 a = ((uint128_t)small1[3]) * small2[0]; in smallfelem_mul()
544 a = ((uint128_t)small1[1]) * small2[3]; in smallfelem_mul()
550 a = ((uint128_t)small1[2]) * small2[2]; in smallfelem_mul()
556 a = ((uint128_t)small1[3]) * small2[1]; in smallfelem_mul()
562 a = ((uint128_t)small1[2]) * small2[3]; in smallfelem_mul()
568 a = ((uint128_t)small1[3]) * small2[2]; in smallfelem_mul()
574 a = ((uint128_t)small1[3]) * small2[3]; in smallfelem_mul()
588 smallfelem small1, small2; in felem_mul() local
589 felem_shrink(small1, in1); in felem_mul()
591 smallfelem_mul(out, small1, small2); in felem_mul()
600 static void felem_small_mul(longfelem out, const smallfelem small1, in felem_small_mul() argument
604 smallfelem_mul(out, small1, small2); in felem_small_mul()
926 smallfelem small1, small2; in point_double() local
942 felem_shrink(small1, gamma); in point_double()
945 felem_small_mul(tmp, small1, x_in); in point_double()
988 smallfelem_square(tmp2, small1); in point_double()
1048 smallfelem small1, small2, small3, small4, small5; in point_add() local
1060 felem_shrink(small1, ftmp); in point_add()
1116 smallfelem_mul(tmp, x2, small1); in point_add()
1132 smallfelem_mul(tmp, small1, small3); in point_add()
1144 felem_shrink(small1, ftmp5); in point_add()
1145 y_equal = smallfelem_is_zero(small1); in point_add()
1168 smallfelem_square(tmp, small1); in point_add()
1180 felem_small_mul(tmp, small1, ftmp3); in point_add()