secp256k1GeStorageCmov static method

void secp256k1GeStorageCmov(
  1. Secp256k1GeStorage r,
  2. Secp256k1GeStorage a,
  3. int flag
)

Implementation

static void secp256k1GeStorageCmov(
    Secp256k1GeStorage r, Secp256k1GeStorage a, int flag) {
  secp256k1FeStorageCmov(r.x, a.x, flag);
  secp256k1FeStorageCmov(r.y, a.y, flag);
}