geCachedCmov static method

void geCachedCmov(
  1. GroupElementCached t,
  2. GroupElementCached u,
  3. int b
)

Implementation

static void geCachedCmov(GroupElementCached t, GroupElementCached u, int b) {
  feCmov(t.yPlusX, u.yPlusX, b);
  feCmov(t.yMinusX, u.yMinusX, b);
  feCmov(t.z, u.z, b);
  feCmov(t.t2d, u.t2d, b);
}