ecc_swap_digits
ecc_swap_digits(pk->x, public_key, ndigits);
ecc_swap_digits(pk->y, &public_key[ndigits], ndigits);
ecc_swap_digits(public_key, pk->x, ndigits);
ecc_swap_digits(&public_key[ndigits], pk->y, ndigits);
ecc_swap_digits(product->x, secret, ndigits);
ecc_swap_digits(in, out, ndigits);
ecc_swap_digits(priv, privkey, curve->g.ndigits);
ecc_swap_digits((const u64 *)params.key, tctx->private_key,
ecc_swap_digits(pubk_buf, pk->x, curve->g.ndigits);
ecc_swap_digits(&pubk_buf[curve->g.ndigits], pk->y, curve->g.ndigits);
ecc_swap_digits(result->x, shared_secret, result->ndigits);
ecc_swap_digits(pk->x, pubk_buf, pk->ndigits);
ecc_swap_digits(pk->y, &pubk_buf[pk->ndigits], pk->ndigits);