Lines Matching full:base
766 EC_POINT *tmp_point = NULL, *base = NULL, **var;
844 if (!(tmp_point = EC_POINT_new(group)) || !(base = EC_POINT_new(group)))
850 if (!EC_POINT_copy(base, generator))
858 if (!EC_POINT_dbl(group, tmp_point, base, ctx))
861 if (!EC_POINT_copy(*var++, base))
866 /* calculate odd multiples of the current base point */
873 /* get the next base (multiply current one by 2^blocksize) */
882 if (!EC_POINT_dbl(group, base, tmp_point, ctx))
886 if (!EC_POINT_dbl(group,base,base,ctx))
926 if (base)
927 EC_POINT_free(base);