Lines Matching refs:scratch_ptr

3360 HN_UBASE                  *scratch_ptr;  in _nx_crypto_ec_precomputation()  local
3378 scratch_ptr = *scratch_pptr; in _nx_crypto_ec_precomputation()
3379 fixed_points = (NX_CRYPTO_EC_FIXED_POINTS *)scratch_ptr; in _nx_crypto_ec_precomputation()
3380 scratch_ptr += sizeof(NX_CRYPTO_EC_FIXED_POINTS) >> HN_SIZE_SHIFT; in _nx_crypto_ec_precomputation()
3388 fixed_points -> nx_crypto_ec_fixed_points_array = (NX_CRYPTO_EC_POINT *)scratch_ptr; in _nx_crypto_ec_precomputation()
3389 scratch_ptr += (sizeof(NX_CRYPTO_EC_POINT) * (UINT)((1 << window_width) - 2)) >> HN_SIZE_SHIFT; in _nx_crypto_ec_precomputation()
3390 fixed_points -> nx_crypto_ec_fixed_points_array_2e = (NX_CRYPTO_EC_POINT *)scratch_ptr; in _nx_crypto_ec_precomputation()
3391 scratch_ptr += (sizeof(NX_CRYPTO_EC_POINT) * (UINT)((1 << window_width) - 1)) >> HN_SIZE_SHIFT; in _nx_crypto_ec_precomputation()
3397 NX_CRYPTO_EC_POINT_AFFINE, scratch_ptr, in _nx_crypto_ec_precomputation()
3403 NX_CRYPTO_EC_POINT_AFFINE, scratch_ptr, in _nx_crypto_ec_precomputation()
3407 NX_CRYPTO_HUGE_NUMBER_INITIALIZE(&d, scratch_ptr, in _nx_crypto_ec_precomputation()
3418 curve -> nx_crypto_ec_multiple(curve, g, &d, &array[0], scratch_ptr); in _nx_crypto_ec_precomputation()
3427 &array[offset - 2], scratch_ptr); in _nx_crypto_ec_precomputation()
3433 curve -> nx_crypto_ec_add(curve, &array[offset - 1], g, scratch_ptr); 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()
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()
3468 &array[offset - 1], scratch_ptr); in _nx_crypto_ec_precomputation()
3477 curve -> nx_crypto_ec_add(curve, &array[offset + j], &array[j], scratch_ptr); in _nx_crypto_ec_precomputation()
3483 *scratch_pptr = scratch_ptr; in _nx_crypto_ec_precomputation()