Lines Matching refs:array

3358 NX_CRYPTO_EC_POINT        *array;  in _nx_crypto_ec_precomputation()  local
3412 array = fixed_points -> nx_crypto_ec_fixed_points_array; in _nx_crypto_ec_precomputation()
3418 curve -> nx_crypto_ec_multiple(curve, g, &d, &array[0], scratch_ptr); in _nx_crypto_ec_precomputation()
3426 curve -> nx_crypto_ec_multiple(curve, &array[(1 << (i - 1)) - 2], &d, in _nx_crypto_ec_precomputation()
3427 &array[offset - 2], scratch_ptr); in _nx_crypto_ec_precomputation()
3429 NX_CRYPTO_HUGE_NUMBER_COPY(&array[offset - 1].nx_crypto_ec_point_x, in _nx_crypto_ec_precomputation()
3430 &array[offset - 2].nx_crypto_ec_point_x); in _nx_crypto_ec_precomputation()
3431 NX_CRYPTO_HUGE_NUMBER_COPY(&array[offset - 1].nx_crypto_ec_point_y, in _nx_crypto_ec_precomputation()
3432 &array[offset - 2].nx_crypto_ec_point_y); in _nx_crypto_ec_precomputation()
3433 curve -> nx_crypto_ec_add(curve, &array[offset - 1], g, scratch_ptr); in _nx_crypto_ec_precomputation()
3437 NX_CRYPTO_HUGE_NUMBER_COPY(&array[offset + j - 1].nx_crypto_ec_point_x, in _nx_crypto_ec_precomputation()
3438 &array[offset - 2].nx_crypto_ec_point_x); in _nx_crypto_ec_precomputation()
3439 NX_CRYPTO_HUGE_NUMBER_COPY(&array[offset + j - 1].nx_crypto_ec_point_y, in _nx_crypto_ec_precomputation()
3440 &array[offset - 2].nx_crypto_ec_point_y); in _nx_crypto_ec_precomputation()
3441 curve -> nx_crypto_ec_add(curve, &array[offset + j - 1], &array[j - 1], scratch_ptr); in _nx_crypto_ec_precomputation()
3447 array = fixed_points -> nx_crypto_ec_fixed_points_array_2e; in _nx_crypto_ec_precomputation()
3453 curve -> nx_crypto_ec_multiple(curve, g, &d, &array[0], scratch_ptr); in _nx_crypto_ec_precomputation()
3459 curve -> nx_crypto_ec_multiple(curve, &array[0], &d, &array[1], scratch_ptr); in _nx_crypto_ec_precomputation()
3467 curve -> nx_crypto_ec_multiple(curve, &array[(1 << (i - 1)) - 1], &d, in _nx_crypto_ec_precomputation()
3468 &array[offset - 1], scratch_ptr); in _nx_crypto_ec_precomputation()
3473 NX_CRYPTO_HUGE_NUMBER_COPY(&array[offset + j].nx_crypto_ec_point_x, in _nx_crypto_ec_precomputation()
3474 &array[offset - 1].nx_crypto_ec_point_x); in _nx_crypto_ec_precomputation()
3475 NX_CRYPTO_HUGE_NUMBER_COPY(&array[offset + j].nx_crypto_ec_point_y, in _nx_crypto_ec_precomputation()
3476 &array[offset - 1].nx_crypto_ec_point_y); in _nx_crypto_ec_precomputation()
3477 curve -> nx_crypto_ec_add(curve, &array[offset + j], &array[j], scratch_ptr); in _nx_crypto_ec_precomputation()