Lines Matching refs:result
221 struct ecc_point *result,
286 /* Read result. */
287 ocs_ecc_read_cx_out(ecc_dev, result->x, nbytes);
288 ocs_ecc_read_cy_out(ecc_dev, result->y, nbytes);
583 struct ecc_point *pk, *result;
617 result = ecc_alloc_point(pk->ndigits);
618 if (!result) {
624 rc = kmb_ecc_point_mult(ecc_dev, result, pk, tctx->private_key, curve);
628 if (ecc_point_is_zero(result)) {
634 ecc_swap_digits(result->x, shared_secret, result->ndigits);
649 ecc_free_point(result);