geDoubleScalarMultPrecompVartime static method

void geDoubleScalarMultPrecompVartime(
  1. GroupElementP2 r,
  2. List<int> a,
  3. GroupElementP3 A,
  4. List<int> b,
  5. List<GroupElementCached> bI,
)

Implementation

static void geDoubleScalarMultPrecompVartime(GroupElementP2 r, List<int> a,
    GroupElementP3 A, List<int> b, List<GroupElementCached> bI) {
  a.asMin32("geDoubleScalarMultPrecompVartime");
  b.asMin32("geDoubleScalarMultPrecompVartime");
  final List<GroupElementCached> aI = GroupElementCached.dsmp;
  geDsmPrecomp(aI, A);
  geDoubleScalarMultPrecompVartime2(r, a, aI, b, bI);
}