Lines Matching defs:base
768 EC_POINT *tmp_point = NULL, *base = NULL, **var;
846 if (!(tmp_point = EC_POINT_new(group)) || !(base = EC_POINT_new(group)))
852 if (!EC_POINT_copy(base, generator))
860 if (!EC_POINT_dbl(group, tmp_point, base, ctx))
863 if (!EC_POINT_copy(*var++, base))
868 /* calculate odd multiples of the current base point */
875 /* get the next base (multiply current one by 2^blocksize) */
884 if (!EC_POINT_dbl(group, base, tmp_point, ctx))
888 if (!EC_POINT_dbl(group,base,base,ctx))
928 if (base)
929 EC_POINT_free(base);