Home
last modified time | relevance | path

Searched refs:max_n_batch_points (Results 1 – 22 of 22) sorted by relevance

/dports/net-p2p/bitcoin-utils/bitcoin-22.0/src/secp256k1/src/
H A Decmult_impl.h1016 …batch_size_helper(size_t *n_batches, size_t *n_batch_points, size_t max_n_batch_points, size_t n) { in secp256k1_ecmult_multi_batch_size_helper() argument
1017 if (max_n_batch_points == 0) { in secp256k1_ecmult_multi_batch_size_helper()
1020 if (max_n_batch_points > ECMULT_MAX_POINTS_PER_BATCH) { in secp256k1_ecmult_multi_batch_size_helper()
1021 max_n_batch_points = ECMULT_MAX_POINTS_PER_BATCH; in secp256k1_ecmult_multi_batch_size_helper()
1029 *n_batches = 1 + (n - 1) / max_n_batch_points; in secp256k1_ecmult_multi_batch_size_helper()
H A Dtests.c3945 size_t n_batches, n_batch_points, max_n_batch_points, n; in test_ecmult_multi_batch_size_helper() local
3947 max_n_batch_points = 0; in test_ecmult_multi_batch_size_helper()
3949 …CHECK(secp256k1_ecmult_multi_batch_size_helper(&n_batches, &n_batch_points, max_n_batch_points, n)… in test_ecmult_multi_batch_size_helper()
3951 max_n_batch_points = 1; in test_ecmult_multi_batch_size_helper()
3953 …CHECK(secp256k1_ecmult_multi_batch_size_helper(&n_batches, &n_batch_points, max_n_batch_points, n)… in test_ecmult_multi_batch_size_helper()
3957 max_n_batch_points = 2; in test_ecmult_multi_batch_size_helper()
3959 …CHECK(secp256k1_ecmult_multi_batch_size_helper(&n_batches, &n_batch_points, max_n_batch_points, n)… in test_ecmult_multi_batch_size_helper()
3963 max_n_batch_points = ECMULT_MAX_POINTS_PER_BATCH; in test_ecmult_multi_batch_size_helper()
3969 max_n_batch_points = ECMULT_MAX_POINTS_PER_BATCH + 1; in test_ecmult_multi_batch_size_helper()
3975 max_n_batch_points = 1; in test_ecmult_multi_batch_size_helper()
[all …]
/dports/net-p2p/bitcoin/bitcoin-22.0/src/secp256k1/src/
H A Decmult_impl.h1016 …batch_size_helper(size_t *n_batches, size_t *n_batch_points, size_t max_n_batch_points, size_t n) { in secp256k1_ecmult_multi_batch_size_helper() argument
1017 if (max_n_batch_points == 0) { in secp256k1_ecmult_multi_batch_size_helper()
1020 if (max_n_batch_points > ECMULT_MAX_POINTS_PER_BATCH) { in secp256k1_ecmult_multi_batch_size_helper()
1021 max_n_batch_points = ECMULT_MAX_POINTS_PER_BATCH; in secp256k1_ecmult_multi_batch_size_helper()
1029 *n_batches = 1 + (n - 1) / max_n_batch_points; in secp256k1_ecmult_multi_batch_size_helper()
H A Dtests.c3945 size_t n_batches, n_batch_points, max_n_batch_points, n;
3947 max_n_batch_points = 0;
3949 …CHECK(secp256k1_ecmult_multi_batch_size_helper(&n_batches, &n_batch_points, max_n_batch_points, n)…
3951 max_n_batch_points = 1;
3953 …CHECK(secp256k1_ecmult_multi_batch_size_helper(&n_batches, &n_batch_points, max_n_batch_points, n)…
3957 max_n_batch_points = 2;
3959 …CHECK(secp256k1_ecmult_multi_batch_size_helper(&n_batches, &n_batch_points, max_n_batch_points, n)…
3963 max_n_batch_points = ECMULT_MAX_POINTS_PER_BATCH;
3969 max_n_batch_points = ECMULT_MAX_POINTS_PER_BATCH + 1;
3975 max_n_batch_points = 1;
[all …]
/dports/net-p2p/bitcoin-daemon/bitcoin-22.0/src/secp256k1/src/
H A Decmult_impl.h1016 …batch_size_helper(size_t *n_batches, size_t *n_batch_points, size_t max_n_batch_points, size_t n) { in secp256k1_ecmult_multi_batch_size_helper() argument
1017 if (max_n_batch_points == 0) { in secp256k1_ecmult_multi_batch_size_helper()
1020 if (max_n_batch_points > ECMULT_MAX_POINTS_PER_BATCH) { in secp256k1_ecmult_multi_batch_size_helper()
1021 max_n_batch_points = ECMULT_MAX_POINTS_PER_BATCH; in secp256k1_ecmult_multi_batch_size_helper()
1029 *n_batches = 1 + (n - 1) / max_n_batch_points; in secp256k1_ecmult_multi_batch_size_helper()
H A Dtests.c3945 size_t n_batches, n_batch_points, max_n_batch_points, n; in test_ecmult_multi_batch_size_helper() local
3947 max_n_batch_points = 0; in test_ecmult_multi_batch_size_helper()
3949 …CHECK(secp256k1_ecmult_multi_batch_size_helper(&n_batches, &n_batch_points, max_n_batch_points, n)… in test_ecmult_multi_batch_size_helper()
3951 max_n_batch_points = 1; in test_ecmult_multi_batch_size_helper()
3953 …CHECK(secp256k1_ecmult_multi_batch_size_helper(&n_batches, &n_batch_points, max_n_batch_points, n)… in test_ecmult_multi_batch_size_helper()
3957 max_n_batch_points = 2; in test_ecmult_multi_batch_size_helper()
3959 …CHECK(secp256k1_ecmult_multi_batch_size_helper(&n_batches, &n_batch_points, max_n_batch_points, n)… in test_ecmult_multi_batch_size_helper()
3963 max_n_batch_points = ECMULT_MAX_POINTS_PER_BATCH; in test_ecmult_multi_batch_size_helper()
3969 max_n_batch_points = ECMULT_MAX_POINTS_PER_BATCH + 1; in test_ecmult_multi_batch_size_helper()
3975 max_n_batch_points = 1; in test_ecmult_multi_batch_size_helper()
[all …]
/dports/net-p2p/namecoin/namecoin-core-nc0.21.0.1/src/secp256k1/src/
H A Decmult_impl.h1016 …batch_size_helper(size_t *n_batches, size_t *n_batch_points, size_t max_n_batch_points, size_t n) { in secp256k1_ecmult_multi_batch_size_helper() argument
1017 if (max_n_batch_points == 0) { in secp256k1_ecmult_multi_batch_size_helper()
1020 if (max_n_batch_points > ECMULT_MAX_POINTS_PER_BATCH) { in secp256k1_ecmult_multi_batch_size_helper()
1021 max_n_batch_points = ECMULT_MAX_POINTS_PER_BATCH; in secp256k1_ecmult_multi_batch_size_helper()
1029 *n_batches = 1 + (n - 1) / max_n_batch_points; in secp256k1_ecmult_multi_batch_size_helper()
H A Dtests.c3167 size_t n_batches, n_batch_points, max_n_batch_points, n; in test_ecmult_multi_batch_size_helper() local
3169 max_n_batch_points = 0; in test_ecmult_multi_batch_size_helper()
3171 …CHECK(secp256k1_ecmult_multi_batch_size_helper(&n_batches, &n_batch_points, max_n_batch_points, n)… in test_ecmult_multi_batch_size_helper()
3173 max_n_batch_points = 1; in test_ecmult_multi_batch_size_helper()
3175 …CHECK(secp256k1_ecmult_multi_batch_size_helper(&n_batches, &n_batch_points, max_n_batch_points, n)… in test_ecmult_multi_batch_size_helper()
3179 max_n_batch_points = 2; in test_ecmult_multi_batch_size_helper()
3181 …CHECK(secp256k1_ecmult_multi_batch_size_helper(&n_batches, &n_batch_points, max_n_batch_points, n)… in test_ecmult_multi_batch_size_helper()
3185 max_n_batch_points = ECMULT_MAX_POINTS_PER_BATCH; in test_ecmult_multi_batch_size_helper()
3191 max_n_batch_points = ECMULT_MAX_POINTS_PER_BATCH + 1; in test_ecmult_multi_batch_size_helper()
3197 max_n_batch_points = 1; in test_ecmult_multi_batch_size_helper()
[all …]
/dports/net-p2p/namecoin-daemon/namecoin-core-nc0.21.0.1/src/secp256k1/src/
H A Decmult_impl.h1016 …batch_size_helper(size_t *n_batches, size_t *n_batch_points, size_t max_n_batch_points, size_t n) { in secp256k1_ecmult_multi_batch_size_helper() argument
1017 if (max_n_batch_points == 0) { in secp256k1_ecmult_multi_batch_size_helper()
1020 if (max_n_batch_points > ECMULT_MAX_POINTS_PER_BATCH) { in secp256k1_ecmult_multi_batch_size_helper()
1021 max_n_batch_points = ECMULT_MAX_POINTS_PER_BATCH; in secp256k1_ecmult_multi_batch_size_helper()
1029 *n_batches = 1 + (n - 1) / max_n_batch_points; in secp256k1_ecmult_multi_batch_size_helper()
H A Dtests.c3167 size_t n_batches, n_batch_points, max_n_batch_points, n; in test_ecmult_multi_batch_size_helper() local
3169 max_n_batch_points = 0; in test_ecmult_multi_batch_size_helper()
3171 …CHECK(secp256k1_ecmult_multi_batch_size_helper(&n_batches, &n_batch_points, max_n_batch_points, n)… in test_ecmult_multi_batch_size_helper()
3173 max_n_batch_points = 1; in test_ecmult_multi_batch_size_helper()
3175 …CHECK(secp256k1_ecmult_multi_batch_size_helper(&n_batches, &n_batch_points, max_n_batch_points, n)… in test_ecmult_multi_batch_size_helper()
3179 max_n_batch_points = 2; in test_ecmult_multi_batch_size_helper()
3181 …CHECK(secp256k1_ecmult_multi_batch_size_helper(&n_batches, &n_batch_points, max_n_batch_points, n)… in test_ecmult_multi_batch_size_helper()
3185 max_n_batch_points = ECMULT_MAX_POINTS_PER_BATCH; in test_ecmult_multi_batch_size_helper()
3191 max_n_batch_points = ECMULT_MAX_POINTS_PER_BATCH + 1; in test_ecmult_multi_batch_size_helper()
3197 max_n_batch_points = 1; in test_ecmult_multi_batch_size_helper()
[all …]
/dports/net-p2p/qtum/qtum-mainnet-fastlane-v0.20.3/src/secp256k1/src/
H A Decmult_impl.h1116 …batch_size_helper(size_t *n_batches, size_t *n_batch_points, size_t max_n_batch_points, size_t n) { in secp256k1_ecmult_multi_batch_size_helper() argument
1117 if (max_n_batch_points == 0) { in secp256k1_ecmult_multi_batch_size_helper()
1120 if (max_n_batch_points > ECMULT_MAX_POINTS_PER_BATCH) { in secp256k1_ecmult_multi_batch_size_helper()
1121 max_n_batch_points = ECMULT_MAX_POINTS_PER_BATCH; in secp256k1_ecmult_multi_batch_size_helper()
1129 *n_batches = 1 + (n - 1) / max_n_batch_points; in secp256k1_ecmult_multi_batch_size_helper()
H A Dtests.c2858 size_t n_batches, n_batch_points, max_n_batch_points, n; in test_ecmult_multi_batch_size_helper() local
2860 max_n_batch_points = 0; in test_ecmult_multi_batch_size_helper()
2862 …CHECK(secp256k1_ecmult_multi_batch_size_helper(&n_batches, &n_batch_points, max_n_batch_points, n)… in test_ecmult_multi_batch_size_helper()
2864 max_n_batch_points = 1; in test_ecmult_multi_batch_size_helper()
2866 …CHECK(secp256k1_ecmult_multi_batch_size_helper(&n_batches, &n_batch_points, max_n_batch_points, n)… in test_ecmult_multi_batch_size_helper()
2870 max_n_batch_points = 2; in test_ecmult_multi_batch_size_helper()
2872 …CHECK(secp256k1_ecmult_multi_batch_size_helper(&n_batches, &n_batch_points, max_n_batch_points, n)… in test_ecmult_multi_batch_size_helper()
2876 max_n_batch_points = ECMULT_MAX_POINTS_PER_BATCH; in test_ecmult_multi_batch_size_helper()
2882 max_n_batch_points = ECMULT_MAX_POINTS_PER_BATCH + 1; in test_ecmult_multi_batch_size_helper()
2888 max_n_batch_points = 1; in test_ecmult_multi_batch_size_helper()
[all …]
/dports/math/secp256k1/secp256k1-aa15154/src/
H A Decmult_impl.h1116 …batch_size_helper(size_t *n_batches, size_t *n_batch_points, size_t max_n_batch_points, size_t n) { in secp256k1_ecmult_multi_batch_size_helper() argument
1117 if (max_n_batch_points == 0) { in secp256k1_ecmult_multi_batch_size_helper()
1120 if (max_n_batch_points > ECMULT_MAX_POINTS_PER_BATCH) { in secp256k1_ecmult_multi_batch_size_helper()
1121 max_n_batch_points = ECMULT_MAX_POINTS_PER_BATCH; in secp256k1_ecmult_multi_batch_size_helper()
1129 *n_batches = 1 + (n - 1) / max_n_batch_points; in secp256k1_ecmult_multi_batch_size_helper()
H A Dtests.c2858 size_t n_batches, n_batch_points, max_n_batch_points, n; in test_ecmult_multi_batch_size_helper() local
2860 max_n_batch_points = 0; in test_ecmult_multi_batch_size_helper()
2862 …CHECK(secp256k1_ecmult_multi_batch_size_helper(&n_batches, &n_batch_points, max_n_batch_points, n)… in test_ecmult_multi_batch_size_helper()
2864 max_n_batch_points = 1; in test_ecmult_multi_batch_size_helper()
2866 …CHECK(secp256k1_ecmult_multi_batch_size_helper(&n_batches, &n_batch_points, max_n_batch_points, n)… in test_ecmult_multi_batch_size_helper()
2870 max_n_batch_points = 2; in test_ecmult_multi_batch_size_helper()
2872 …CHECK(secp256k1_ecmult_multi_batch_size_helper(&n_batches, &n_batch_points, max_n_batch_points, n)… in test_ecmult_multi_batch_size_helper()
2876 max_n_batch_points = ECMULT_MAX_POINTS_PER_BATCH; in test_ecmult_multi_batch_size_helper()
2882 max_n_batch_points = ECMULT_MAX_POINTS_PER_BATCH + 1; in test_ecmult_multi_batch_size_helper()
2888 max_n_batch_points = 1; in test_ecmult_multi_batch_size_helper()
[all …]
/dports/security/py-coincurve/coincurve-16.0.0/libsecp256k1/src/
H A Decmult_impl.h1016 …batch_size_helper(size_t *n_batches, size_t *n_batch_points, size_t max_n_batch_points, size_t n) { in secp256k1_ecmult_multi_batch_size_helper() argument
1017 if (max_n_batch_points == 0) { in secp256k1_ecmult_multi_batch_size_helper()
1020 if (max_n_batch_points > ECMULT_MAX_POINTS_PER_BATCH) { in secp256k1_ecmult_multi_batch_size_helper()
1021 max_n_batch_points = ECMULT_MAX_POINTS_PER_BATCH; in secp256k1_ecmult_multi_batch_size_helper()
1029 *n_batches = 1 + (n - 1) / max_n_batch_points; in secp256k1_ecmult_multi_batch_size_helper()
H A Dtests.c3167 size_t n_batches, n_batch_points, max_n_batch_points, n; in test_ecmult_multi_batch_size_helper() local
3169 max_n_batch_points = 0; in test_ecmult_multi_batch_size_helper()
3171 …CHECK(secp256k1_ecmult_multi_batch_size_helper(&n_batches, &n_batch_points, max_n_batch_points, n)… in test_ecmult_multi_batch_size_helper()
3173 max_n_batch_points = 1; in test_ecmult_multi_batch_size_helper()
3175 …CHECK(secp256k1_ecmult_multi_batch_size_helper(&n_batches, &n_batch_points, max_n_batch_points, n)… in test_ecmult_multi_batch_size_helper()
3179 max_n_batch_points = 2; in test_ecmult_multi_batch_size_helper()
3181 …CHECK(secp256k1_ecmult_multi_batch_size_helper(&n_batches, &n_batch_points, max_n_batch_points, n)… in test_ecmult_multi_batch_size_helper()
3185 max_n_batch_points = ECMULT_MAX_POINTS_PER_BATCH; in test_ecmult_multi_batch_size_helper()
3191 max_n_batch_points = ECMULT_MAX_POINTS_PER_BATCH + 1; in test_ecmult_multi_batch_size_helper()
3197 max_n_batch_points = 1; in test_ecmult_multi_batch_size_helper()
[all …]
/dports/net-p2p/namecoin-utils/namecoin-core-nc0.21.0.1/src/secp256k1/src/
H A Decmult_impl.h1016 …batch_size_helper(size_t *n_batches, size_t *n_batch_points, size_t max_n_batch_points, size_t n) { in secp256k1_ecmult_multi_batch_size_helper() argument
1017 if (max_n_batch_points == 0) { in secp256k1_ecmult_multi_batch_size_helper()
1020 if (max_n_batch_points > ECMULT_MAX_POINTS_PER_BATCH) { in secp256k1_ecmult_multi_batch_size_helper()
1021 max_n_batch_points = ECMULT_MAX_POINTS_PER_BATCH; in secp256k1_ecmult_multi_batch_size_helper()
1029 *n_batches = 1 + (n - 1) / max_n_batch_points; in secp256k1_ecmult_multi_batch_size_helper()
H A Dtests.c3167 size_t n_batches, n_batch_points, max_n_batch_points, n; in test_ecmult_multi_batch_size_helper() local
3169 max_n_batch_points = 0; in test_ecmult_multi_batch_size_helper()
3171 …CHECK(secp256k1_ecmult_multi_batch_size_helper(&n_batches, &n_batch_points, max_n_batch_points, n)… in test_ecmult_multi_batch_size_helper()
3173 max_n_batch_points = 1; in test_ecmult_multi_batch_size_helper()
3175 …CHECK(secp256k1_ecmult_multi_batch_size_helper(&n_batches, &n_batch_points, max_n_batch_points, n)… in test_ecmult_multi_batch_size_helper()
3179 max_n_batch_points = 2; in test_ecmult_multi_batch_size_helper()
3181 …CHECK(secp256k1_ecmult_multi_batch_size_helper(&n_batches, &n_batch_points, max_n_batch_points, n)… in test_ecmult_multi_batch_size_helper()
3185 max_n_batch_points = ECMULT_MAX_POINTS_PER_BATCH; in test_ecmult_multi_batch_size_helper()
3191 max_n_batch_points = ECMULT_MAX_POINTS_PER_BATCH + 1; in test_ecmult_multi_batch_size_helper()
3197 max_n_batch_points = 1; in test_ecmult_multi_batch_size_helper()
[all …]
/dports/net-p2p/c-lightning/lightning-0.10.2/external/libwally-core/src/secp256k1/src/
H A Decmult_impl.h1016 …batch_size_helper(size_t *n_batches, size_t *n_batch_points, size_t max_n_batch_points, size_t n) { in secp256k1_ecmult_multi_batch_size_helper() argument
1017 if (max_n_batch_points == 0) { in secp256k1_ecmult_multi_batch_size_helper()
1020 if (max_n_batch_points > ECMULT_MAX_POINTS_PER_BATCH) { in secp256k1_ecmult_multi_batch_size_helper()
1021 max_n_batch_points = ECMULT_MAX_POINTS_PER_BATCH; in secp256k1_ecmult_multi_batch_size_helper()
1029 *n_batches = 1 + (n - 1) / max_n_batch_points; in secp256k1_ecmult_multi_batch_size_helper()
H A Dtests.c3400 size_t n_batches, n_batch_points, max_n_batch_points, n; in test_ecmult_multi_batch_size_helper() local
3402 max_n_batch_points = 0; in test_ecmult_multi_batch_size_helper()
3404 …CHECK(secp256k1_ecmult_multi_batch_size_helper(&n_batches, &n_batch_points, max_n_batch_points, n)… in test_ecmult_multi_batch_size_helper()
3406 max_n_batch_points = 1; in test_ecmult_multi_batch_size_helper()
3408 …CHECK(secp256k1_ecmult_multi_batch_size_helper(&n_batches, &n_batch_points, max_n_batch_points, n)… in test_ecmult_multi_batch_size_helper()
3412 max_n_batch_points = 2; in test_ecmult_multi_batch_size_helper()
3414 …CHECK(secp256k1_ecmult_multi_batch_size_helper(&n_batches, &n_batch_points, max_n_batch_points, n)… in test_ecmult_multi_batch_size_helper()
3418 max_n_batch_points = ECMULT_MAX_POINTS_PER_BATCH; in test_ecmult_multi_batch_size_helper()
3424 max_n_batch_points = ECMULT_MAX_POINTS_PER_BATCH + 1; in test_ecmult_multi_batch_size_helper()
3430 max_n_batch_points = 1; in test_ecmult_multi_batch_size_helper()
[all …]
/dports/devel/dtool/dtool-0.11.0/cargo-crates/secp256k1-sys-0.4.1/depend/secp256k1/src/
H A Decmult_impl.h1016 …batch_size_helper(size_t *n_batches, size_t *n_batch_points, size_t max_n_batch_points, size_t n) { in rustsecp256k1_v0_4_1_ecmult_multi_batch_size_helper() argument
1017 if (max_n_batch_points == 0) { in rustsecp256k1_v0_4_1_ecmult_multi_batch_size_helper()
1020 if (max_n_batch_points > ECMULT_MAX_POINTS_PER_BATCH) { in rustsecp256k1_v0_4_1_ecmult_multi_batch_size_helper()
1021 max_n_batch_points = ECMULT_MAX_POINTS_PER_BATCH; in rustsecp256k1_v0_4_1_ecmult_multi_batch_size_helper()
1029 *n_batches = 1 + (n - 1) / max_n_batch_points; in rustsecp256k1_v0_4_1_ecmult_multi_batch_size_helper()
H A Dtests.c3959 size_t n_batches, n_batch_points, max_n_batch_points, n; in test_ecmult_multi_batch_size_helper() local
3961 max_n_batch_points = 0; in test_ecmult_multi_batch_size_helper()
3963 …k1_v0_4_1_ecmult_multi_batch_size_helper(&n_batches, &n_batch_points, max_n_batch_points, n) == 0); in test_ecmult_multi_batch_size_helper()
3965 max_n_batch_points = 1; in test_ecmult_multi_batch_size_helper()
3967 …k1_v0_4_1_ecmult_multi_batch_size_helper(&n_batches, &n_batch_points, max_n_batch_points, n) == 1); in test_ecmult_multi_batch_size_helper()
3971 max_n_batch_points = 2; in test_ecmult_multi_batch_size_helper()
3973 …k1_v0_4_1_ecmult_multi_batch_size_helper(&n_batches, &n_batch_points, max_n_batch_points, n) == 1); in test_ecmult_multi_batch_size_helper()
3977 max_n_batch_points = ECMULT_MAX_POINTS_PER_BATCH; in test_ecmult_multi_batch_size_helper()
3983 max_n_batch_points = ECMULT_MAX_POINTS_PER_BATCH + 1; in test_ecmult_multi_batch_size_helper()
3989 max_n_batch_points = 1; in test_ecmult_multi_batch_size_helper()
[all …]