Lines Matching refs:scratch_ptr
3359 HN_UBASE *scratch_ptr; in _nx_crypto_ec_precomputation() local
3377 scratch_ptr = *scratch_pptr; in _nx_crypto_ec_precomputation()
3378 fixed_points = (NX_CRYPTO_EC_FIXED_POINTS *)scratch_ptr; in _nx_crypto_ec_precomputation()
3379 scratch_ptr += sizeof(NX_CRYPTO_EC_FIXED_POINTS) >> HN_SIZE_SHIFT; in _nx_crypto_ec_precomputation()
3387 fixed_points -> nx_crypto_ec_fixed_points_array = (NX_CRYPTO_EC_POINT *)scratch_ptr; in _nx_crypto_ec_precomputation()
3388 scratch_ptr += (sizeof(NX_CRYPTO_EC_POINT) * (UINT)((1 << window_width) - 2)) >> HN_SIZE_SHIFT; in _nx_crypto_ec_precomputation()
3389 fixed_points -> nx_crypto_ec_fixed_points_array_2e = (NX_CRYPTO_EC_POINT *)scratch_ptr; in _nx_crypto_ec_precomputation()
3390 scratch_ptr += (sizeof(NX_CRYPTO_EC_POINT) * (UINT)((1 << window_width) - 1)) >> HN_SIZE_SHIFT; in _nx_crypto_ec_precomputation()
3396 NX_CRYPTO_EC_POINT_AFFINE, scratch_ptr, in _nx_crypto_ec_precomputation()
3402 NX_CRYPTO_EC_POINT_AFFINE, scratch_ptr, in _nx_crypto_ec_precomputation()
3406 NX_CRYPTO_HUGE_NUMBER_INITIALIZE(&d, scratch_ptr, in _nx_crypto_ec_precomputation()
3417 curve -> nx_crypto_ec_multiple(curve, g, &d, &array[0], scratch_ptr); in _nx_crypto_ec_precomputation()
3426 &array[offset - 2], scratch_ptr); in _nx_crypto_ec_precomputation()
3432 curve -> nx_crypto_ec_add(curve, &array[offset - 1], g, scratch_ptr); in _nx_crypto_ec_precomputation()
3440 curve -> nx_crypto_ec_add(curve, &array[offset + j - 1], &array[j - 1], scratch_ptr); in _nx_crypto_ec_precomputation()
3452 curve -> nx_crypto_ec_multiple(curve, g, &d, &array[0], scratch_ptr); in _nx_crypto_ec_precomputation()
3458 curve -> nx_crypto_ec_multiple(curve, &array[0], &d, &array[1], scratch_ptr); in _nx_crypto_ec_precomputation()
3467 &array[offset - 1], scratch_ptr); in _nx_crypto_ec_precomputation()
3476 curve -> nx_crypto_ec_add(curve, &array[offset + j], &array[j], scratch_ptr); in _nx_crypto_ec_precomputation()
3482 *scratch_pptr = scratch_ptr; in _nx_crypto_ec_precomputation()