ecc_point          73 crypto/ecc.c   static struct ecc_point *ecc_alloc_point(unsigned int ndigits)
ecc_point          75 crypto/ecc.c   	struct ecc_point *p = kmalloc(sizeof(*p), GFP_KERNEL);
ecc_point          99 crypto/ecc.c   static void ecc_free_point(struct ecc_point *p)
ecc_point         936 crypto/ecc.c   static bool ecc_point_is_zero(const struct ecc_point *point)
ecc_point        1142 crypto/ecc.c   static void ecc_point_mult(struct ecc_point *result,
ecc_point        1143 crypto/ecc.c   			   const struct ecc_point *point, const u64 *scalar,
ecc_point        1206 crypto/ecc.c   static void ecc_point_add(const struct ecc_point *result,
ecc_point        1207 crypto/ecc.c   		   const struct ecc_point *p, const struct ecc_point *q,
ecc_point        1228 crypto/ecc.c   void ecc_point_mult_shamir(const struct ecc_point *result,
ecc_point        1229 crypto/ecc.c   			   const u64 *u1, const struct ecc_point *p,
ecc_point        1230 crypto/ecc.c   			   const u64 *u2, const struct ecc_point *q,
ecc_point        1239 crypto/ecc.c   	struct ecc_point sum = ECC_POINT_INIT(sump[0], sump[1], ndigits);
ecc_point        1240 crypto/ecc.c   	const struct ecc_point *points[4];
ecc_point        1241 crypto/ecc.c   	const struct ecc_point *point;
ecc_point        1389 crypto/ecc.c   	struct ecc_point *pk;
ecc_point        1424 crypto/ecc.c   				struct ecc_point *pk)
ecc_point        1460 crypto/ecc.c   	struct ecc_point *product, *pk;
ecc_point          49 crypto/ecc.h   #define ECC_POINT_INIT(x, y, ndigits)	(struct ecc_point) { x, y, ndigits }
ecc_point          66 crypto/ecc.h   	struct ecc_point g;
ecc_point         148 crypto/ecc.h   				struct ecc_point *pk);
ecc_point         241 crypto/ecc.h   void ecc_point_mult_shamir(const struct ecc_point *result,
ecc_point         242 crypto/ecc.h   			   const u64 *x, const struct ecc_point *p,
ecc_point         243 crypto/ecc.h   			   const u64 *y, const struct ecc_point *q,
ecc_point          42 crypto/ecrdsa.c 	struct ecc_point pub_key;
ecc_point          84 crypto/ecrdsa.c 	struct ecc_point cc = ECC_POINT_INIT(s, e, ndigits); /* reuse s, e */