Lines Matching refs:left

2107                                              NX_CRYPTO_HUGE_NUMBER *left,  in _nx_crypto_ec_add_reduce()  argument
2113 _nx_crypto_huge_number_add_unsigned(left, right); in _nx_crypto_ec_add_reduce()
2114 if (_nx_crypto_huge_number_compare_unsigned(left, in _nx_crypto_ec_add_reduce()
2117 _nx_crypto_huge_number_subtract_unsigned(left, &curve -> nx_crypto_ec_field.fp, left); in _nx_crypto_ec_add_reduce()
2181 NX_CRYPTO_HUGE_NUMBER *left, in _nx_crypto_ec_subtract_reduce() argument
2187 if (_nx_crypto_huge_number_compare_unsigned(left, right) == NX_CRYPTO_HUGE_NUMBER_LESS) in _nx_crypto_ec_subtract_reduce()
2189 _nx_crypto_huge_number_add_unsigned(left, &curve -> nx_crypto_ec_field.fp); in _nx_crypto_ec_subtract_reduce()
2191 _nx_crypto_huge_number_subtract_unsigned(left, right, left); in _nx_crypto_ec_subtract_reduce()
2541 NX_CRYPTO_EC_POINT *left, in _nx_crypto_ec_fp_affine_add() argument
2549 if (_nx_crypto_ec_point_is_infinite(left)) in _nx_crypto_ec_fp_affine_add()
2551 NX_CRYPTO_HUGE_NUMBER_COPY(&left -> nx_crypto_ec_point_x, in _nx_crypto_ec_fp_affine_add()
2553 NX_CRYPTO_HUGE_NUMBER_COPY(&left -> nx_crypto_ec_point_y, in _nx_crypto_ec_fp_affine_add()
2565 buffer_size = left -> nx_crypto_ec_point_x.nx_crypto_huge_buffer_size; in _nx_crypto_ec_fp_affine_add()
2570 if ((_nx_crypto_huge_number_compare(&left -> nx_crypto_ec_point_x, in _nx_crypto_ec_fp_affine_add()
2572 (_nx_crypto_huge_number_compare(&left -> nx_crypto_ec_point_y, in _nx_crypto_ec_fp_affine_add()
2578 NX_CRYPTO_HUGE_NUMBER_COPY(&temp3, &left -> nx_crypto_ec_point_y); in _nx_crypto_ec_fp_affine_add()
2581 NX_CRYPTO_EC_SQUARE_REDUCE(curve, &left -> nx_crypto_ec_point_x, in _nx_crypto_ec_fp_affine_add()
2593 _nx_crypto_ec_subtract_reduce(curve, &temp1, &left -> nx_crypto_ec_point_x, scratch); in _nx_crypto_ec_fp_affine_add()
2596 _nx_crypto_ec_subtract_reduce(curve, &temp1, &left -> nx_crypto_ec_point_y, scratch); in _nx_crypto_ec_fp_affine_add()
2602 _nx_crypto_ec_subtract_reduce(curve, &temp1, &left -> nx_crypto_ec_point_x, scratch); in _nx_crypto_ec_fp_affine_add()
2604 NX_CRYPTO_HUGE_NUMBER_COPY(&temp2, &left -> nx_crypto_ec_point_x); in _nx_crypto_ec_fp_affine_add()
2605 NX_CRYPTO_HUGE_NUMBER_COPY(&left -> nx_crypto_ec_point_x, &temp1); in _nx_crypto_ec_fp_affine_add()
2610 _nx_crypto_ec_subtract_reduce(curve, &temp1, &left -> nx_crypto_ec_point_y, scratch); in _nx_crypto_ec_fp_affine_add()
2611 NX_CRYPTO_HUGE_NUMBER_COPY(&left -> nx_crypto_ec_point_y, &temp1); in _nx_crypto_ec_fp_affine_add()
2663 NX_CRYPTO_EC_POINT *left, in _nx_crypto_ec_fp_affine_subtract() argument
2676 _nx_crypto_ec_fp_affine_add(curve, left, &point, scratch); in _nx_crypto_ec_fp_affine_subtract()