Lines Matching defs:pre_comp
1637 const smallfelem pre_comp[16][3], smallfelem out[3])
1645 const u64 *inlimbs = (u64 *)&pre_comp[i][0][0];
1667 * small point multiples 0*P, 1*P, ..., 17*P are in pre_comp[], the scalars
1675 const int mixed, const smallfelem pre_comp[][17][3],
1748 select_point(digit, 17, pre_comp[num], tmp);
2034 smallfelem (*pre_comp)[17][3] = NULL;
2057 pre = group->pre_comp.nistp256;
2097 pre_comp = OPENSSL_malloc(sizeof(*pre_comp) * num_points);
2101 if ((secrets == NULL) || (pre_comp == NULL)
2112 memset(pre_comp, 0, sizeof(*pre_comp) * num_points);
2153 felem_shrink(pre_comp[i][1][0], x_out);
2154 felem_shrink(pre_comp[i][1][1], y_out);
2155 felem_shrink(pre_comp[i][1][2], z_out);
2158 point_add_small(pre_comp[i][j][0], pre_comp[i][j][1],
2159 pre_comp[i][j][2], pre_comp[i][1][0],
2160 pre_comp[i][1][1], pre_comp[i][1][2],
2161 pre_comp[i][j - 1][0],
2162 pre_comp[i][j - 1][1],
2163 pre_comp[i][j - 1][2]);
2165 point_double_small(pre_comp[i][j][0],
2166 pre_comp[i][j][1],
2167 pre_comp[i][j][2],
2168 pre_comp[i][j / 2][0],
2169 pre_comp[i][j / 2][1],
2170 pre_comp[i][j / 2][2]);
2176 make_points_affine(num_points * 17, pre_comp[0], tmp_smallfelems);
2200 mixed, (const smallfelem(*)[17][3])pre_comp, g_pre_comp);
2205 NULL, mixed, (const smallfelem(*)[17][3])pre_comp, NULL);
2223 OPENSSL_free(pre_comp);