Symbol: vli_sub
crypto/ecc.c
1071
vli_sub(a, a, b, ndigits);
crypto/ecc.c
1077
vli_sub(u, u, v, ndigits);
crypto/ecc.c
1085
vli_sub(b, b, a, ndigits);
crypto/ecc.c
1091
vli_sub(v, v, u, ndigits);
crypto/ecc.c
1483
vli_sub(res, curve->n, one, ndigits);
crypto/ecc.c
1484
vli_sub(res, res, one, ndigits);
crypto/ecc.c
343
EXPORT_SYMBOL(vli_sub);
crypto/ecc.c
517
vli_sub(result, result, mod, ndigits);
crypto/ecc.c
526
u64 borrow = vli_sub(result, left, right, ndigits);
crypto/ecc.c
561
vli_sub(r, r, t, ndigits * 2);
crypto/ecc.c
611
vli_sub(r, r, qc, ndigits * 2);
crypto/ecc.c
618
vli_sub(r, r, m, ndigits * 2);
crypto/ecc.c
689
vli_sub(r, product, r, ndigits * 2);
crypto/ecc.c
694
carry = vli_sub(r, r, mod, ndigits);
crypto/ecc.c
725
carry -= vli_sub(result, result, curve_prime, ndigits);
crypto/ecc.c
774
carry -= vli_sub(result, result, tmp, ndigits);
crypto/ecc.c
781
carry -= vli_sub(result, result, tmp, ndigits);
crypto/ecc.c
788
carry -= vli_sub(result, result, tmp, ndigits);
crypto/ecc.c
795
carry -= vli_sub(result, result, tmp, ndigits);
crypto/ecc.c
803
carry -= vli_sub(result, result, curve_prime, ndigits);
crypto/ecc.c
885
carry -= vli_sub(result, result, tmp, ndigits);
crypto/ecc.c
894
carry -= vli_sub(result, result, tmp, ndigits);
crypto/ecc.c
903
carry -= vli_sub(result, result, tmp, ndigits);
crypto/ecc.c
911
carry -= vli_sub(result, result, curve_prime, ndigits);
crypto/ecdsa.c
55
vli_sub(res.x, res.x, curve->n, ndigits);
crypto/ecrdsa.c
117
vli_sub(e, e, ctx->curve->n, ndigits);
crypto/ecrdsa.c
126
vli_sub(_r, ctx->curve->n, r, ndigits);
crypto/ecrdsa.c
133
vli_sub(cc.x, cc.x, ctx->curve->n, ndigits);
drivers/crypto/intel/keembay/keembay-ocs-ecc.c
471
vli_sub(res, curve->n, one, ndigits);
drivers/crypto/intel/keembay/keembay-ocs-ecc.c
472
vli_sub(res, res, one, ndigits);
include/crypto/internal/ecc.h
209
u64 vli_sub(u64 *result, const u64 *left, const u64 *right,