Lines Matching refs:small1
581 static void smallfelem_mul(longfelem out, const smallfelem small1, in smallfelem_mul() argument
587 a = ((uint128_t) small1[0]) * small2[0]; in smallfelem_mul()
593 a = ((uint128_t) small1[0]) * small2[1]; in smallfelem_mul()
599 a = ((uint128_t) small1[1]) * small2[0]; in smallfelem_mul()
605 a = ((uint128_t) small1[0]) * small2[2]; in smallfelem_mul()
611 a = ((uint128_t) small1[1]) * small2[1]; in smallfelem_mul()
617 a = ((uint128_t) small1[2]) * small2[0]; in smallfelem_mul()
623 a = ((uint128_t) small1[0]) * small2[3]; in smallfelem_mul()
629 a = ((uint128_t) small1[1]) * small2[2]; in smallfelem_mul()
635 a = ((uint128_t) small1[2]) * small2[1]; in smallfelem_mul()
641 a = ((uint128_t) small1[3]) * small2[0]; in smallfelem_mul()
647 a = ((uint128_t) small1[1]) * small2[3]; in smallfelem_mul()
653 a = ((uint128_t) small1[2]) * small2[2]; in smallfelem_mul()
659 a = ((uint128_t) small1[3]) * small2[1]; in smallfelem_mul()
665 a = ((uint128_t) small1[2]) * small2[3]; in smallfelem_mul()
671 a = ((uint128_t) small1[3]) * small2[2]; in smallfelem_mul()
677 a = ((uint128_t) small1[3]) * small2[3]; in smallfelem_mul()
694 smallfelem small1, small2; in felem_mul() local
695 felem_shrink(small1, in1); in felem_mul()
697 smallfelem_mul(out, small1, small2); in felem_mul()
708 static void felem_small_mul(longfelem out, const smallfelem small1, in felem_small_mul() argument
713 smallfelem_mul(out, small1, small2); in felem_small_mul()
1111 smallfelem small1, small2; in point_double() local
1127 felem_shrink(small1, gamma); in point_double()
1130 felem_small_mul(tmp, small1, x_in); in point_double()
1173 smallfelem_square(tmp2, small1); in point_double()
1244 smallfelem small1, small2, small3, small4, small5; in point_add() local
1257 felem_shrink(small1, ftmp); in point_add()
1315 smallfelem_mul(tmp, x2, small1); in point_add()
1331 smallfelem_mul(tmp, small1, small3); in point_add()
1343 felem_shrink(small1, ftmp5); in point_add()
1344 y_equal = smallfelem_is_zero(small1); in point_add()
1386 smallfelem_square(tmp, small1); in point_add()
1398 felem_small_mul(tmp, small1, ftmp3); in point_add()