crypto/openssl/crypto/bn/bn_div.c
283
res = (dv == NULL) ? BN_CTX_get(ctx) : dv;
crypto/openssl/crypto/bn/bn_div.c
284
tmp = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_div.c
285
snum = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_div.c
286
sdiv = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_div.c
42
D = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_div.c
44
dv = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_div.c
46
rem = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_exp.c
1218
r = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_exp.c
1219
t = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_exp.c
1340
d = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_exp.c
1341
val[0] = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_exp.c
1359
if (((val[i] = BN_CTX_get(ctx)) == NULL) || !BN_mod_mul(val[i], val[i - 1], d, m, ctx))
crypto/openssl/crypto/bn/bn_exp.c
1371
BIGNUM *p_dup = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_exp.c
202
aa = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_exp.c
203
val[0] = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_exp.c
233
if (((val[i] = BN_CTX_get(ctx)) == NULL) || !BN_mod_mul_reciprocal(val[i], val[i - 1], aa, &recp, ctx))
crypto/openssl/crypto/bn/bn_exp.c
245
BIGNUM *p_dup = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_exp.c
351
d = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_exp.c
352
r = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_exp.c
353
val[0] = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_exp.c
385
if (((val[i] = BN_CTX_get(ctx)) == NULL) || !bn_mul_mont_fixed_top(val[i], val[i - 1], d, mont, ctx))
crypto/openssl/crypto/bn/bn_exp.c
62
rr = ((r == a) || (r == p)) ? BN_CTX_get(ctx) : r;
crypto/openssl/crypto/bn/bn_exp.c
63
v = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_exp.c
664
BIGNUM *reduced = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_exp2.c
117
if (((val2[i] = BN_CTX_get(ctx)) == NULL) || !BN_mod_mul_montgomery(val2[i], val2[i - 1], d, mont, ctx))
crypto/openssl/crypto/bn/bn_exp2.c
48
d = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_exp2.c
49
r = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_exp2.c
50
val1[0] = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_exp2.c
51
val2[0] = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_exp2.c
90
if (((val1[i] = BN_CTX_get(ctx)) == NULL) || !BN_mod_mul_montgomery(val1[i], val1[i - 1], d, mont, ctx))
crypto/openssl/crypto/bn/bn_gcd.c
222
A = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_gcd.c
223
B = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_gcd.c
224
X = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_gcd.c
225
D = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_gcd.c
226
M = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_gcd.c
227
Y = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_gcd.c
228
T = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_gcd.c
33
A = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_gcd.c
34
B = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_gcd.c
35
X = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_gcd.c
36
D = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_gcd.c
37
M = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_gcd.c
38
Y = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_gcd.c
39
T = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_gcd.c
554
tmp = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_gcd.c
604
temp = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_gcd.c
605
g = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_gf2m.c
1006
a = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_gf2m.c
1007
z = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_gf2m.c
1008
w = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_gf2m.c
1036
rho = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_gf2m.c
1037
w2 = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_gf2m.c
1038
tmp = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_gf2m.c
416
if ((s = BN_CTX_get(ctx)) == NULL)
crypto/openssl/crypto/bn/bn_gf2m.c
491
if ((s = BN_CTX_get(ctx)) == NULL)
crypto/openssl/crypto/bn/bn_gf2m.c
559
b = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_gf2m.c
560
c = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_gf2m.c
561
u = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_gf2m.c
562
v = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_gf2m.c
727
if ((b = BN_CTX_get(ctx)) == NULL)
crypto/openssl/crypto/bn/bn_gf2m.c
775
if ((field = BN_CTX_get(ctx)) == NULL)
crypto/openssl/crypto/bn/bn_gf2m.c
803
xinv = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_gf2m.c
835
if ((field = BN_CTX_get(ctx)) == NULL)
crypto/openssl/crypto/bn/bn_gf2m.c
869
if ((u = BN_CTX_get(ctx)) == NULL)
crypto/openssl/crypto/bn/bn_gf2m.c
944
if ((u = BN_CTX_get(ctx)) == NULL)
crypto/openssl/crypto/bn/bn_kron.c
36
A = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_kron.c
37
B = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_mod.c
217
if ((t = BN_CTX_get(ctx)) == NULL)
crypto/openssl/crypto/bn/bn_mont.c
181
if ((t = BN_CTX_get(ctx)) && BN_copy(t, a)) {
crypto/openssl/crypto/bn/bn_mont.c
189
t1 = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_mont.c
190
t2 = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_mont.c
269
if ((Ri = BN_CTX_get(ctx)) == NULL)
crypto/openssl/crypto/bn/bn_mont.c
60
tmp = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_mul.c
535
if ((rr = BN_CTX_get(ctx)) == NULL)
crypto/openssl/crypto/bn/bn_mul.c
579
t = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_prime.c
152
t = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_prime.c
359
g = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_prime.c
360
w1 = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_prime.c
361
w3 = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_prime.c
362
x = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_prime.c
363
m = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_prime.c
364
z = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_prime.c
365
b = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_prime.c
556
if ((t1 = BN_CTX_get(ctx)) == NULL)
crypto/openssl/crypto/bn/bn_recp.c
178
if ((t = BN_CTX_get(ctx)) == NULL)
crypto/openssl/crypto/bn/bn_recp.c
61
if ((a = BN_CTX_get(ctx)) == NULL)
crypto/openssl/crypto/bn/bn_recp.c
89
d = (dv != NULL) ? dv : BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_recp.c
90
r = (rem != NULL) ? rem : BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_recp.c
91
a = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_recp.c
92
b = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_rsa_fips186_4.c
200
p1i = (p1 != NULL) ? p1 : BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_rsa_fips186_4.c
201
p2i = (p2 != NULL) ? p2 : BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_rsa_fips186_4.c
202
Xp1i = (Xp1 != NULL) ? (BIGNUM *)Xp1 : BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_rsa_fips186_4.c
203
Xp2i = (Xp2 != NULL) ? (BIGNUM *)Xp2 : BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_rsa_fips186_4.c
287
base = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_rsa_fips186_4.c
288
range = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_rsa_fips186_4.c
289
R = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_rsa_fips186_4.c
290
tmp = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_rsa_fips186_4.c
291
r1r2x2 = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_rsa_fips186_4.c
292
y1 = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_rsa_fips186_4.c
293
r1x2 = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_sqr.c
43
rr = (a != r) ? r : BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_sqr.c
44
tmp = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_sqrt.c
63
A = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_sqrt.c
64
b = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_sqrt.c
65
q = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_sqrt.c
66
t = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_sqrt.c
67
x = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_sqrt.c
68
y = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_x931p.c
183
t = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_x931p.c
228
Xp1 = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_x931p.c
230
Xp2 = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_x931p.c
68
p1 = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_x931p.c
71
p2 = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_x931p.c
73
t = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_x931p.c
75
p1p2 = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_x931p.c
77
pm1 = BN_CTX_get(ctx);
crypto/openssl/crypto/dh/dh_check.c
170
t1 = BN_CTX_get(ctx);
crypto/openssl/crypto/dh/dh_check.c
171
t2 = BN_CTX_get(ctx);
crypto/openssl/crypto/dh/dh_check.c
81
tmp = BN_CTX_get(ctx);
crypto/openssl/crypto/dh/dh_gen.c
177
t1 = BN_CTX_get(ctx);
crypto/openssl/crypto/dh/dh_gen.c
178
t2 = BN_CTX_get(ctx);
crypto/openssl/crypto/dh/dh_key.c
67
pminus1 = BN_CTX_get(ctx);
crypto/openssl/crypto/dh/dh_key.c
68
z = BN_CTX_get(ctx);
crypto/openssl/crypto/dsa/dsa_ossl.c
110
m = BN_CTX_get(ctx);
crypto/openssl/crypto/dsa/dsa_ossl.c
111
blind = BN_CTX_get(ctx);
crypto/openssl/crypto/dsa/dsa_ossl.c
112
blindm = BN_CTX_get(ctx);
crypto/openssl/crypto/dsa/dsa_ossl.c
113
tmp = BN_CTX_get(ctx);
crypto/openssl/crypto/dsa/dsa_ossl.c
491
if ((e = BN_CTX_get(ctx)) != NULL
crypto/openssl/crypto/ec/ec2_oct.c
178
x = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec2_oct.c
179
y = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec2_oct.c
180
yxi = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec2_oct.c
325
x = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec2_oct.c
326
y = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec2_oct.c
327
yxi = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec2_oct.c
59
tmp = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec2_oct.c
60
x = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec2_oct.c
61
y = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec2_oct.c
62
z = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec2_smpl.c
195
b = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec2_smpl.c
384
x0 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec2_smpl.c
385
y0 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec2_smpl.c
386
x1 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec2_smpl.c
387
y1 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec2_smpl.c
388
x2 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec2_smpl.c
389
y2 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec2_smpl.c
390
s = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec2_smpl.c
391
t = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec2_smpl.c
537
y2 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec2_smpl.c
538
lh = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec2_smpl.c
608
aX = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec2_smpl.c
609
aY = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec2_smpl.c
610
bX = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec2_smpl.c
611
bY = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec2_smpl.c
651
x = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec2_smpl.c
652
y = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec2_smpl.c
820
t0 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec2_smpl.c
821
t1 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec2_smpl.c
822
t2 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec_backend.c
188
BIGNUM *p = BN_CTX_get(bnctx);
crypto/openssl/crypto/ec/ec_backend.c
189
BIGNUM *a = BN_CTX_get(bnctx);
crypto/openssl/crypto/ec/ec_backend.c
190
BIGNUM *b = BN_CTX_get(bnctx);
crypto/openssl/crypto/ec/ec_curve.c
3290
if ((bn[i] = BN_CTX_get(ctx)) == NULL)
crypto/openssl/crypto/ec/ec_key.c
498
x = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec_key.c
499
y = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec_key.c
712
tx = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec_key.c
713
ty = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec_lib.c
1256
if ((e = BN_CTX_get(ctx)) == NULL)
crypto/openssl/crypto/ec/ec_lib.c
1593
p = BN_CTX_get(bnctx);
crypto/openssl/crypto/ec/ec_lib.c
1594
a = BN_CTX_get(bnctx);
crypto/openssl/crypto/ec/ec_lib.c
1595
b = BN_CTX_get(bnctx);
crypto/openssl/crypto/ec/ec_lib.c
1596
order = BN_CTX_get(bnctx);
crypto/openssl/crypto/ec/ec_lib.c
1712
cofactor = BN_CTX_get(bnctx);
crypto/openssl/crypto/ec/ec_lib.c
342
if ((q = BN_CTX_get(ctx)) == NULL)
crypto/openssl/crypto/ec/ec_lib.c
650
a1 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec_lib.c
651
a2 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec_lib.c
652
a3 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec_lib.c
653
b1 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec_lib.c
654
b2 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec_lib.c
655
b3 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec_mult.c
189
cardinality = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec_mult.c
190
lambda = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec_mult.c
191
k = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecdh_ossl.c
64
x = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecdsa_ossl.c
472
u1 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecdsa_ossl.c
473
u2 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecdsa_ossl.c
474
m = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecdsa_ossl.c
475
X = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_mont.c
238
if ((e = BN_CTX_get(ctx)) == NULL)
crypto/openssl/crypto/ec/ecp_nistp224.c
1291
curve_p = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_nistp224.c
1292
curve_a = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_nistp224.c
1293
curve_b = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_nistp224.c
1415
x = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_nistp224.c
1416
y = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_nistp224.c
1417
z = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_nistp224.c
1418
tmp_scalar = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_nistp224.c
1603
x = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_nistp224.c
1604
y = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_nistp256.c
1910
curve_p = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_nistp256.c
1911
curve_a = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_nistp256.c
1912
curve_b = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_nistp256.c
2035
x = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_nistp256.c
2036
y = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_nistp256.c
2037
z = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_nistp256.c
2038
tmp_scalar = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_nistp256.c
2230
x = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_nistp256.c
2231
y = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_nistp384.c
1634
curve_p = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_nistp384.c
1635
curve_a = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_nistp384.c
1636
curve_b = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_nistp384.c
1755
x = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_nistp384.c
1756
y = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_nistp384.c
1757
z = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_nistp384.c
1758
tmp_scalar = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_nistp384.c
1942
x = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_nistp384.c
1943
y = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_nistp521.c
1724
curve_p = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_nistp521.c
1725
curve_a = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_nistp521.c
1726
curve_b = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_nistp521.c
1849
x = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_nistp521.c
1850
y = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_nistp521.c
1851
z = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_nistp521.c
1852
tmp_scalar = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_nistp521.c
2041
x = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_nistp521.c
2042
y = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_nistz256.c
1009
if ((tmp_scalar = BN_CTX_get(ctx)) == NULL)
crypto/openssl/crypto/ec/ecp_nistz256.c
1307
if ((tmp = BN_CTX_get(ctx)) == NULL
crypto/openssl/crypto/ec/ecp_nistz256.c
640
if ((mod = BN_CTX_get(ctx)) == NULL)
crypto/openssl/crypto/ec/ecp_oct.c
207
x = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_oct.c
208
y = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_oct.c
326
x = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_oct.c
327
y = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_oct.c
40
tmp1 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_oct.c
41
tmp2 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_oct.c
42
x = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_oct.c
43
y = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_s390x_nistp.c
262
x = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_s390x_nistp.c
263
y = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_s390x_nistp.c
70
x = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_s390x_nistp.c
71
y = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_sm2p256.c
479
if ((tmp = BN_CTX_get(ctx)) == NULL)
crypto/openssl/crypto/ec/ecp_smpl.c
1097
tmp1 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
1098
tmp2 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
1099
Za23 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
1100
Zb23 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
1183
x = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
1184
y = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
1224
tmp = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
1225
tmp_Z = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
1392
if ((e = BN_CTX_get(ctx)) == NULL)
crypto/openssl/crypto/ec/ecp_smpl.c
1435
lambda = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
1436
temp = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
1568
t0 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
1569
t1 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
1570
t2 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
1571
t3 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
1572
t4 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
1573
t5 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
1574
t6 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
162
tmp_a = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
1666
t0 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
1667
t1 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
1668
t2 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
1669
t3 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
1670
t4 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
1671
t5 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
1672
t6 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
266
a = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
267
b = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
268
tmp_1 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
269
tmp_2 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
270
order = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
522
Z = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
523
Z_1 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
524
Z_2 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
525
Z_3 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
641
n0 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
642
n1 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
643
n2 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
644
n3 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
645
n4 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
646
n5 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
647
n6 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
825
n0 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
826
n1 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
827
n2 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
828
n3 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
980
rh = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
981
tmp = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
982
Z4 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
983
Z6 = BN_CTX_get(ctx);
crypto/openssl/crypto/evp/ctrl_params_translate.c
1689
x = BN_CTX_get(bnctx);
crypto/openssl/crypto/evp/ctrl_params_translate.c
1690
y = BN_CTX_get(bnctx);
crypto/openssl/crypto/ffc/ffc_key_validate.c
37
tmp = BN_CTX_get(ctx);
crypto/openssl/crypto/ffc/ffc_key_validate.c
77
tmp = BN_CTX_get(ctx);
crypto/openssl/crypto/ffc/ffc_params_generate.c
203
W = BN_CTX_get(ctx);
crypto/openssl/crypto/ffc/ffc_params_generate.c
204
X = BN_CTX_get(ctx);
crypto/openssl/crypto/ffc/ffc_params_generate.c
205
c = BN_CTX_get(ctx);
crypto/openssl/crypto/ffc/ffc_params_generate.c
206
test = BN_CTX_get(ctx);
crypto/openssl/crypto/ffc/ffc_params_generate.c
207
tmp = BN_CTX_get(ctx);
crypto/openssl/crypto/ffc/ffc_params_generate.c
579
g = BN_CTX_get(ctx);
crypto/openssl/crypto/ffc/ffc_params_generate.c
580
pm1 = BN_CTX_get(ctx);
crypto/openssl/crypto/ffc/ffc_params_generate.c
581
e = BN_CTX_get(ctx);
crypto/openssl/crypto/ffc/ffc_params_generate.c
582
test = BN_CTX_get(ctx);
crypto/openssl/crypto/ffc/ffc_params_generate.c
583
tmp = BN_CTX_get(ctx);
crypto/openssl/crypto/ffc/ffc_params_generate.c
631
p = BN_CTX_get(ctx);
crypto/openssl/crypto/ffc/ffc_params_generate.c
632
q = BN_CTX_get(ctx);
crypto/openssl/crypto/ffc/ffc_params_generate.c
892
r0 = BN_CTX_get(ctx);
crypto/openssl/crypto/ffc/ffc_params_generate.c
893
g = BN_CTX_get(ctx);
crypto/openssl/crypto/ffc/ffc_params_generate.c
894
q = BN_CTX_get(ctx);
crypto/openssl/crypto/ffc/ffc_params_generate.c
895
p = BN_CTX_get(ctx);
crypto/openssl/crypto/ffc/ffc_params_generate.c
896
tmp = BN_CTX_get(ctx);
crypto/openssl/crypto/ffc/ffc_params_generate.c
897
test = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_crpt.c
130
e = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_crpt.c
97
r0 = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_crpt.c
98
r1 = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_crpt.c
99
r2 = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_gen.c
113
r0 = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_gen.c
114
r1 = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_gen.c
115
r2 = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_gen.c
316
r0 = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_gen.c
317
r1 = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_gen.c
318
r2 = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_ossl.c
128
f = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_ossl.c
129
ret = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_ossl.c
165
BIGNUM *nminus1 = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_ossl.c
323
f = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_ossl.c
324
ret = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_ossl.c
370
if (!local_blinding && ((unblind = BN_CTX_get(ctx)) == NULL)) {
crypto/openssl/crypto/rsa/rsa_ossl.c
541
f = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_ossl.c
542
ret = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_ossl.c
577
BIGNUM *nminus1 = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_ossl.c
613
if (!local_blinding && ((unblind = BN_CTX_get(ctx)) == NULL)) {
crypto/openssl/crypto/rsa/rsa_ossl.c
727
f = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_ossl.c
728
ret = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_ossl.c
809
r1 = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_ossl.c
811
r2 = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_ossl.c
813
m1 = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_ossl.c
814
vrfy = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_ossl.c
985
if ((m[i] = BN_CTX_get(ctx)) == NULL) {
crypto/openssl/crypto/rsa/rsa_sp800_56b_check.c
102
low = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_sp800_56b_check.c
148
p1 = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_sp800_56b_check.c
149
gcd = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_sp800_56b_check.c
185
r = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_sp800_56b_check.c
186
p1 = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_sp800_56b_check.c
187
q1 = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_sp800_56b_check.c
188
lcm = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_sp800_56b_check.c
189
p1q1 = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_sp800_56b_check.c
190
gcd = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_sp800_56b_check.c
37
r = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_sp800_56b_check.c
38
p1 = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_sp800_56b_check.c
39
q1 = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_sp800_56b_check.c
422
r = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_sp800_56b_gen.c
104
tmp = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_sp800_56b_gen.c
105
Xpo = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_sp800_56b_gen.c
106
Xqo = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_sp800_56b_gen.c
243
p1 = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_sp800_56b_gen.c
244
q1 = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_sp800_56b_gen.c
245
lcm = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_sp800_56b_gen.c
246
p1q1 = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_sp800_56b_gen.c
247
gcd = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_sp800_56b_gen.c
443
tmp = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_sp800_56b_gen.c
444
k = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_x931g.c
162
Xp = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_x931g.c
163
Xq = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_x931g.c
42
r0 = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_x931g.c
43
r1 = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_x931g.c
44
r2 = BN_CTX_get(ctx);
crypto/openssl/crypto/rsa/rsa_x931g.c
45
r3 = BN_CTX_get(ctx);
crypto/openssl/crypto/sm2/sm2_crypt.c
164
k = BN_CTX_get(ctx);
crypto/openssl/crypto/sm2/sm2_crypt.c
165
x1 = BN_CTX_get(ctx);
crypto/openssl/crypto/sm2/sm2_crypt.c
166
x2 = BN_CTX_get(ctx);
crypto/openssl/crypto/sm2/sm2_crypt.c
167
y1 = BN_CTX_get(ctx);
crypto/openssl/crypto/sm2/sm2_crypt.c
168
y2 = BN_CTX_get(ctx);
crypto/openssl/crypto/sm2/sm2_crypt.c
332
x2 = BN_CTX_get(ctx);
crypto/openssl/crypto/sm2/sm2_crypt.c
333
y2 = BN_CTX_get(ctx);
crypto/openssl/crypto/sm2/sm2_sign.c
239
k = BN_CTX_get(ctx);
crypto/openssl/crypto/sm2/sm2_sign.c
240
rk = BN_CTX_get(ctx);
crypto/openssl/crypto/sm2/sm2_sign.c
241
x1 = BN_CTX_get(ctx);
crypto/openssl/crypto/sm2/sm2_sign.c
242
tmp = BN_CTX_get(ctx);
crypto/openssl/crypto/sm2/sm2_sign.c
350
t = BN_CTX_get(ctx);
crypto/openssl/crypto/sm2/sm2_sign.c
351
x1 = BN_CTX_get(ctx);
crypto/openssl/crypto/sm2/sm2_sign.c
63
p = BN_CTX_get(ctx);
crypto/openssl/crypto/sm2/sm2_sign.c
64
a = BN_CTX_get(ctx);
crypto/openssl/crypto/sm2/sm2_sign.c
65
b = BN_CTX_get(ctx);
crypto/openssl/crypto/sm2/sm2_sign.c
66
xG = BN_CTX_get(ctx);
crypto/openssl/crypto/sm2/sm2_sign.c
67
yG = BN_CTX_get(ctx);
crypto/openssl/crypto/sm2/sm2_sign.c
68
xA = BN_CTX_get(ctx);
crypto/openssl/crypto/sm2/sm2_sign.c
69
yA = BN_CTX_get(ctx);
crypto/openssl/include/openssl/bn.h
214
BIGNUM *BN_CTX_get(BN_CTX *ctx);
crypto/openssl/providers/fips/self_test_kats.c
172
BIGNUM *bn = BN_CTX_get(ctx);
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
189
p = BN_CTX_get(ctx);
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
190
a = BN_CTX_get(ctx);
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
191
b = BN_CTX_get(ctx);
crypto/openssl/providers/implementations/kem/rsa_kem.c
260
nminus3 = BN_CTX_get(bnctx);
crypto/openssl/providers/implementations/kem/rsa_kem.c
261
z = BN_CTX_get(bnctx);
crypto/openssl/providers/implementations/keymgmt/ec_kmgmt.c
164
x = BN_CTX_get(bnctx);
crypto/openssl/providers/implementations/keymgmt/ec_kmgmt.c
169
y = BN_CTX_get(bnctx);
crypto/openssl/test/acvp_test.c
1171
if (!TEST_ptr(pub_bn = BN_CTX_get(bn_ctx))
crypto/openssl/test/acvp_test.c
1178
if (!TEST_ptr(priv_bn = BN_CTX_get(bn_ctx))
crypto/openssl/test/acvp_test.c
1274
|| !TEST_ptr(n_bn = BN_CTX_get(bn_ctx))
crypto/openssl/test/acvp_test.c
1280
if (!TEST_ptr(e_bn = BN_CTX_get(bn_ctx))
crypto/openssl/test/acvp_test.c
1287
if (!TEST_ptr(d_bn = BN_CTX_get(bn_ctx))
crypto/openssl/test/acvp_test.c
666
|| !TEST_ptr(p_bn = BN_CTX_get(bn_ctx))
crypto/openssl/test/acvp_test.c
675
|| !TEST_ptr(q_bn = BN_CTX_get(bn_ctx))
crypto/openssl/test/acvp_test.c
681
if (!TEST_ptr(g_bn = BN_CTX_get(bn_ctx))
crypto/openssl/test/acvp_test.c
699
if (!TEST_ptr(pub_bn = BN_CTX_get(bn_ctx))
crypto/openssl/test/bntest.c
2773
if (!TEST_ptr(b[i] = BN_CTX_get(c)))
crypto/openssl/test/bntest.c
2793
if (!TEST_ptr(b[i] = BN_CTX_get(c)))
crypto/openssl/test/ec_internal_test.c
165
p = BN_CTX_get(ctx);
crypto/openssl/test/ec_internal_test.c
166
a = BN_CTX_get(ctx);
crypto/openssl/test/ec_internal_test.c
167
if (!TEST_ptr(b = BN_CTX_get(ctx))
crypto/openssl/test/ec_internal_test.c
260
x1 = BN_CTX_get(ctx);
crypto/openssl/test/ec_internal_test.c
261
y1 = BN_CTX_get(ctx);
crypto/openssl/test/ec_internal_test.c
262
z1 = BN_CTX_get(ctx);
crypto/openssl/test/ec_internal_test.c
263
x2 = BN_CTX_get(ctx);
crypto/openssl/test/ec_internal_test.c
264
y2 = BN_CTX_get(ctx);
crypto/openssl/test/ec_internal_test.c
265
k = BN_CTX_get(ctx);
crypto/openssl/test/ec_internal_test.c
35
a = BN_CTX_get(ctx);
crypto/openssl/test/ec_internal_test.c
36
b = BN_CTX_get(ctx);
crypto/openssl/test/ec_internal_test.c
37
if (!TEST_ptr(c = BN_CTX_get(ctx))
crypto/openssl/test/ec_internal_test.c
83
p = BN_CTX_get(ctx);
crypto/openssl/test/ec_internal_test.c
84
a = BN_CTX_get(ctx);
crypto/openssl/test/ec_internal_test.c
85
if (!TEST_ptr(b = BN_CTX_get(ctx))
crypto/openssl/test/ectest.c
2243
!TEST_ptr(group_cofactor = BN_CTX_get(bn_ctx))
crypto/openssl/test/ectest.c
2244
|| !TEST_ptr(other_gen_x = BN_CTX_get(bn_ctx))
crypto/openssl/test/ectest.c
2245
|| !TEST_ptr(other_gen_y = BN_CTX_get(bn_ctx))
crypto/openssl/test/ectest.c
2246
|| !TEST_ptr(other_order = BN_CTX_get(bn_ctx))
crypto/openssl/test/ectest.c
2247
|| !TEST_ptr(other_cofactor = BN_CTX_get(bn_ctx))
crypto/openssl/test/ectest.c
2479
p = BN_CTX_get(bn_ctx);
crypto/openssl/test/ectest.c
2480
a = BN_CTX_get(bn_ctx);
crypto/openssl/test/ectest.c
2481
b = BN_CTX_get(bn_ctx);
crypto/openssl/test/ectest.c
2665
g1_p = BN_CTX_get(ctx);
crypto/openssl/test/ectest.c
2666
g1_a = BN_CTX_get(ctx);
crypto/openssl/test/ectest.c
2667
g1_b = BN_CTX_get(ctx);
crypto/openssl/test/ectest.c
2668
g1_x = BN_CTX_get(ctx);
crypto/openssl/test/ectest.c
2669
g1_y = BN_CTX_get(ctx);
crypto/openssl/test/ectest.c
2670
g1_order = BN_CTX_get(ctx);
crypto/openssl/test/ectest.c
2671
g1_cf = BN_CTX_get(ctx);
crypto/openssl/test/ectest.c
2673
if (!TEST_ptr(g2_cf = BN_CTX_get(ctx))
crypto/openssl/test/ectest.c
2898
p = BN_CTX_get(ctx);
crypto/openssl/test/ectest.c
2899
a = BN_CTX_get(ctx);
crypto/openssl/test/ectest.c
2900
b = BN_CTX_get(ctx);
crypto/openssl/test/ectest.c
3125
if (!TEST_ptr(k = BN_CTX_get(ctx))
crypto/openssl/test/ectest.c
3222
if (!TEST_ptr(p = BN_CTX_get(ctx))
crypto/openssl/test/ectest.c
3223
|| !TEST_ptr(a = BN_CTX_get(ctx))
crypto/openssl/test/ectest.c
3224
|| !TEST_ptr(b = BN_CTX_get(ctx))
crypto/openssl/test/ectest.c
3225
|| !TEST_ptr(k = BN_CTX_get(ctx)))
crypto/openssl/test/endecode_test.c
1148
return TEST_ptr(a = BN_CTX_get(bnctx))
crypto/openssl/test/endecode_test.c
1149
&& TEST_ptr(b = BN_CTX_get(bnctx))
crypto/openssl/test/endecode_test.c
1150
&& TEST_ptr(prime = BN_CTX_get(bnctx))
crypto/openssl/test/endecode_test.c
1151
&& TEST_ptr(order = BN_CTX_get(bnctx))
crypto/openssl/test/endecode_test.c
1264
return TEST_ptr(a = BN_CTX_get(bnctx))
crypto/openssl/test/endecode_test.c
1265
&& TEST_ptr(b = BN_CTX_get(bnctx))
crypto/openssl/test/endecode_test.c
1266
&& TEST_ptr(poly = BN_CTX_get(bnctx))
crypto/openssl/test/endecode_test.c
1267
&& TEST_ptr(order = BN_CTX_get(bnctx))
crypto/openssl/test/endecode_test.c
1268
&& TEST_ptr(cofactor = BN_CTX_get(bnctx))