Home
last modified time | relevance | path

Searched defs:r (Results 1 – 25 of 225) sorted by relevance

123456789

/openssl/test/testutil/
H A Dbasic_output.c95 int r; in test_vprintf_stdout() local
106 int r; in test_vprintf_stderr() local
117 int r; in test_flush_stdout() local
128 int r; in test_flush_stderr() local
139 int r; in test_vprintf_tapout() local
150 int r; in test_vprintf_taperr() local
161 int r; in test_flush_tapout() local
172 int r; in test_flush_taperr() local
/openssl/include/openssl/
H A Derr.h.in131 # define BIOerr(f, r) ERR_raise_data(ERR_LIB_BIO, (r), NULL) argument
132 # define BNerr(f, r) ERR_raise_data(ERR_LIB_BN, (r), NULL) argument
133 # define BUFerr(f, r) ERR_raise_data(ERR_LIB_BUF, (r), NULL) argument
134 # define CMPerr(f, r) ERR_raise_data(ERR_LIB_CMP, (r), NULL) argument
135 # define CMSerr(f, r) ERR_raise_data(ERR_LIB_CMS, (r), NULL) argument
140 # define CTerr(f, r) ERR_raise_data(ERR_LIB_CT, (r), NULL) argument
141 # define DHerr(f, r) ERR_raise_data(ERR_LIB_DH, (r), NULL) argument
142 # define DSAerr(f, r) ERR_raise_data(ERR_LIB_DSA, (r), NULL) argument
146 # define ECerr(f, r) ERR_raise_data(ERR_LIB_EC, (r), NULL) argument
168 # define TSerr(f, r) ERR_raise_data(ERR_LIB_TS, (r), NULL) argument
[all …]
/openssl/crypto/bn/
H A Dbn_mod.c13 int BN_nnmod(BIGNUM *r, const BIGNUM *m, const BIGNUM *d, BN_CTX *ctx) in BN_nnmod()
33 int BN_mod_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m, in BN_mod_add()
53 int bn_mod_add_fixed_top(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, in bn_mod_add_fixed_top()
102 int BN_mod_add_quick(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, in BN_mod_add_quick()
113 int BN_mod_sub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m, in BN_mod_sub()
135 int bn_mod_sub_fixed_top(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, in bn_mod_sub_fixed_top()
189 int BN_mod_sub_quick(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, in BN_mod_sub_quick()
234 int BN_mod_sqr(BIGNUM *r, const BIGNUM *a, const BIGNUM *m, BN_CTX *ctx) in BN_mod_sqr()
254 int BN_mod_lshift1_quick(BIGNUM *r, const BIGNUM *a, const BIGNUM *m) in BN_mod_lshift1_quick()
264 int BN_mod_lshift(BIGNUM *r, const BIGNUM *a, int n, const BIGNUM *m, in BN_mod_lshift()
[all …]
H A Dbn_shift.c14 int BN_lshift1(BIGNUM *r, const BIGNUM *a) in BN_lshift1()
45 int BN_rshift1(BIGNUM *r, const BIGNUM *a) in BN_rshift1()
81 int BN_lshift(BIGNUM *r, const BIGNUM *a, int n) in BN_lshift()
104 int bn_lshift_fixed_top(BIGNUM *r, const BIGNUM *a, int n) in bn_lshift_fixed_top()
150 int BN_rshift(BIGNUM *r, const BIGNUM *a, int n) in BN_rshift()
176 int bn_rshift_fixed_top(BIGNUM *r, const BIGNUM *a, int n) in bn_rshift_fixed_top()
H A Dbn_mul.c27 BN_ULONG bn_sub_part_words(BN_ULONG *r, in bn_sub_part_words()
175 void bn_mul_recursive(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b, int n2, in bn_mul_recursive()
322 void bn_mul_part_recursive(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b, int n, in bn_mul_part_recursive()
477 void bn_mul_low_recursive(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b, int n2, in bn_mul_low_recursive()
497 int BN_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) in BN_mul()
507 int bn_mul_fixed_top(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) in bn_mul_fixed_top()
622 void bn_mul_normal(BN_ULONG *r, BN_ULONG *a, int na, BN_ULONG *b, int nb) in bn_mul_normal()
664 void bn_mul_low_normal(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b, int n) in bn_mul_low_normal()
H A Dbn_s390x.c23 static int s390x_mod_exp_hw(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, in s390x_mod_exp_hw()
62 int s390x_mod_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, in s390x_mod_exp()
70 int s390x_crt(BIGNUM *r, const BIGNUM *i, const BIGNUM *p, const BIGNUM *q, in s390x_crt()
131 int s390x_mod_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, in s390x_mod_exp()
137 int s390x_crt(BIGNUM *r, const BIGNUM *i, const BIGNUM *p, const BIGNUM *q, in s390x_crt()
H A Dbn_gf2m.c252 int BN_GF2m_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b) in BN_GF2m_add()
292 int BN_GF2m_mod_arr(BIGNUM *r, const BIGNUM *a, const int p[]) in BN_GF2m_mod_arr()
390 int BN_GF2m_mod(BIGNUM *r, const BIGNUM *a, const BIGNUM *p) in BN_GF2m_mod()
410 int BN_GF2m_mod_mul_arr(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, in BN_GF2m_mod_mul_arr()
465 int BN_GF2m_mod_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, in BN_GF2m_mod_mul()
492 int BN_GF2m_mod_sqr_arr(BIGNUM *r, const BIGNUM *a, const int p[], in BN_GF2m_mod_sqr_arr()
557 static int BN_GF2m_mod_inv_vartime(BIGNUM *r, const BIGNUM *a, in BN_GF2m_mod_inv_vartime()
776 int BN_GF2m_mod_inv_arr(BIGNUM *r, const BIGNUM *xx, const int p[], in BN_GF2m_mod_inv_arr()
801 int BN_GF2m_mod_div(BIGNUM *r, const BIGNUM *y, const BIGNUM *x, in BN_GF2m_mod_div()
908 int BN_GF2m_mod_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, in BN_GF2m_mod_exp()
[all …]
H A Dbn_sqr.c17 int BN_sqr(BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) in BN_sqr()
27 int bn_sqr_fixed_top(BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) in bn_sqr_fixed_top()
109 void bn_sqr_normal(BN_ULONG *r, const BN_ULONG *a, int n, BN_ULONG *tmp) in bn_sqr_normal()
156 void bn_sqr_recursive(BN_ULONG *r, const BN_ULONG *a, int n2, BN_ULONG *t) in bn_sqr_recursive()
H A Dbn_add.c14 int BN_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b) in BN_add()
45 int BN_sub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b) in BN_sub()
76 int BN_uadd(BIGNUM *r, const BIGNUM *a, const BIGNUM *b) in BN_uadd()
125 int BN_usub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b) in BN_usub()
H A Drsaz_exp.h57 static ossl_inline void bn_select_words(BN_ULONG *r, BN_ULONG mask, in bn_select_words()
68 static ossl_inline BN_ULONG bn_reduce_once_in_place(BN_ULONG *r, in bn_reduce_once_in_place()
H A Dbn_rand.c131 static int bnrand_range(BNRAND_FLAG flag, BIGNUM *r, const BIGNUM *range, in bnrand_range()
203 int BN_rand_range_ex(BIGNUM *r, const BIGNUM *range, unsigned int strength, in BN_rand_range_ex()
210 int BN_rand_range(BIGNUM *r, const BIGNUM *range) in BN_rand_range()
216 int BN_priv_rand_range_ex(BIGNUM *r, const BIGNUM *range, unsigned int strength, in BN_priv_rand_range_ex()
223 int BN_priv_rand_range(BIGNUM *r, const BIGNUM *range) in BN_priv_rand_range()
234 int BN_pseudo_rand_range(BIGNUM *r, const BIGNUM *range) in BN_pseudo_rand_range()
241 int ossl_bn_priv_rand_range_fixed_top(BIGNUM *r, const BIGNUM *range, in ossl_bn_priv_rand_range_fixed_top()
H A Dbn_recp.c53 int BN_mod_mul_reciprocal(BIGNUM *r, const BIGNUM *x, const BIGNUM *y, in BN_mod_mul_reciprocal()
86 BIGNUM *a, *b, *d, *r; in BN_div_recp() local
172 int BN_reciprocal(BIGNUM *r, const BIGNUM *m, int len, BN_CTX *ctx) in BN_reciprocal()
H A Dbn_asm.c75 void bn_sqr_words(BN_ULONG *r, const BN_ULONG *a, int n) in bn_sqr_words()
168 void bn_sqr_words(BN_ULONG *r, const BN_ULONG *a, int n) in bn_sqr_words()
272 BN_ULONG bn_add_words(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b, in bn_add_words()
586 void bn_mul_comba8(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b) in bn_mul_comba8()
689 void bn_mul_comba4(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b) in bn_mul_comba4()
728 void bn_sqr_comba8(BN_ULONG *r, const BN_ULONG *a) in bn_sqr_comba8()
803 void bn_sqr_comba4(BN_ULONG *r, const BN_ULONG *a) in bn_sqr_comba4()
958 void bn_sqr_comba4(BN_ULONG *r, const BN_ULONG *a) in bn_sqr_comba4()
964 void bn_sqr_comba8(BN_ULONG *r, const BN_ULONG *a) in bn_sqr_comba8()
970 void bn_mul_comba4(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b) in bn_mul_comba4()
[all …]
/openssl/crypto/rsa/
H A Drsa_lib.c136 void RSA_free(RSA *r) in RSA_free()
189 int RSA_up_ref(RSA *r) in RSA_up_ref()
257 uint64_t r = 0; in icbrt64() local
281 uint32_t i, r = 0; in ilog_e() local
554 void RSA_get0_key(const RSA *r, in RSA_get0_key()
605 void RSA_get0_crt_params(const RSA *r, in RSA_get0_crt_params()
645 const BIGNUM *RSA_get0_n(const RSA *r) in RSA_get0_n()
650 const BIGNUM *RSA_get0_e(const RSA *r) in RSA_get0_e()
722 void RSA_set_flags(RSA *r, int flags) in RSA_set_flags()
727 int RSA_get_version(RSA *r) in RSA_get_version()
[all …]
H A Drsa_acvp_test_params.c79 int ossl_rsa_acvp_test_set_params(RSA *r, const OSSL_PARAM params[]) in ossl_rsa_acvp_test_set_params()
125 int ossl_rsa_acvp_test_get_params(RSA *r, OSSL_PARAM params[]) in ossl_rsa_acvp_test_get_params()
/openssl/include/internal/
H A Dring_buf.h55 static ossl_inline void ring_buf_destroy(struct ring_buf *r, int cleanse) in ring_buf_destroy()
65 static ossl_inline size_t ring_buf_used(struct ring_buf *r) in ring_buf_used()
70 static ossl_inline size_t ring_buf_avail(struct ring_buf *r) in ring_buf_avail()
75 static ossl_inline int ring_buf_write_at(struct ring_buf *r, in ring_buf_write_at()
113 static ossl_inline size_t ring_buf_push(struct ring_buf *r, in ring_buf_push()
146 static ossl_inline const unsigned char *ring_buf_get_ptr(const struct ring_buf *r, in ring_buf_get_ptr()
172 static ossl_inline int ring_buf_get_buf_at(const struct ring_buf *r, in ring_buf_get_buf_at()
199 static ossl_inline void ring_buf_cpop_range(struct ring_buf *r, in ring_buf_cpop_range()
231 static ossl_inline int ring_buf_resize(struct ring_buf *r, size_t num_bytes, in ring_buf_resize()
H A Dtime.h59 OSSL_TIME r; in OSSL_SAFE_MATH_UNSIGNED() local
173 OSSL_TIME r; in ossl_time_add() local
183 OSSL_TIME r; in ossl_time_subtract() local
201 OSSL_TIME r; in ossl_time_multiply() local
211 OSSL_TIME r; in ossl_time_divide() local
221 OSSL_TIME r; in ossl_time_muldiv() local
/openssl/crypto/ec/
H A Decp_mont.c196 int ossl_ec_GFp_mont_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, in ossl_ec_GFp_mont_field_mul()
207 int ossl_ec_GFp_mont_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, in ossl_ec_GFp_mont_field_sqr()
223 int ossl_ec_GFp_mont_field_inv(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, in ossl_ec_GFp_mont_field_inv()
267 int ossl_ec_GFp_mont_field_encode(const EC_GROUP *group, BIGNUM *r, in ossl_ec_GFp_mont_field_encode()
278 int ossl_ec_GFp_mont_field_decode(const EC_GROUP *group, BIGNUM *r, in ossl_ec_GFp_mont_field_decode()
289 int ossl_ec_GFp_mont_field_set_to_one(const EC_GROUP *group, BIGNUM *r, in ossl_ec_GFp_mont_field_set_to_one()
H A Dec2_smpl.c356 int ossl_ec_GF2m_simple_add(const EC_GROUP *group, EC_POINT *r, in ossl_ec_GF2m_simple_add()
477 int ossl_ec_GF2m_simple_dbl(const EC_GROUP *group, EC_POINT *r, in ossl_ec_GF2m_simple_dbl()
695 int ossl_ec_GF2m_simple_field_mul(const EC_GROUP *group, BIGNUM *r, in ossl_ec_GF2m_simple_field_mul()
702 int ossl_ec_GF2m_simple_field_sqr(const EC_GROUP *group, BIGNUM *r, in ossl_ec_GF2m_simple_field_sqr()
709 int ossl_ec_GF2m_simple_field_div(const EC_GROUP *group, BIGNUM *r, in ossl_ec_GF2m_simple_field_div()
723 EC_POINT *r, EC_POINT *s, in ec_GF2m_simple_ladder_pre()
776 EC_POINT *r, EC_POINT *s, in ec_GF2m_simple_ladder_step()
806 EC_POINT *r, EC_POINT *s, in ec_GF2m_simple_ladder_post()
868 int ec_GF2m_simple_points_mul(const EC_GROUP *group, EC_POINT *r, in ec_GF2m_simple_points_mul()
929 static int ec_GF2m_simple_field_inv(const EC_GROUP *group, BIGNUM *r, in ec_GF2m_simple_field_inv()
/openssl/crypto/asn1/
H A Da_int.c216 uint64_t r; in asn1_get_uint64() local
258 uint64_t r; in asn1_get_int64() local
290 size_t r; in ossl_c2i_ASN1_INTEGER() local
341 static int asn1_string_set_int64(ASN1_STRING *a, int64_t r, int itype) in asn1_string_set_int64()
380 static int asn1_string_set_uint64(ASN1_STRING *a, uint64_t r, int itype) in asn1_string_set_uint64()
528 int ASN1_INTEGER_set_int64(ASN1_INTEGER *a, int64_t r) in ASN1_INTEGER_set_int64()
538 int ASN1_INTEGER_set_uint64(ASN1_INTEGER *a, uint64_t r) in ASN1_INTEGER_set_uint64()
551 int64_t r; in ASN1_INTEGER_get() local
577 int ASN1_ENUMERATED_set_int64(ASN1_ENUMERATED *a, int64_t r) in ASN1_ENUMERATED_set_int64()
590 int64_t r; in ASN1_ENUMERATED_get() local
[all …]
/openssl/fuzz/
H A Dprovider.c106 int r = 1; in read_uint() local
124 int r = 1; in read_int() local
142 int r = 1; in read_double() local
161 int r; in read_utf8_string() local
195 int r; in read_octet_string() local
433 int r = 1; in do_evp_kdf() local
461 int r = 1; in do_evp_mac() local
497 int r = 1; in do_evp_rand() local
548 int r = 1; in do_evp_md() local
597 int r = 1; in FuzzerTestOneInput() local
/openssl/crypto/bn/asm/
H A Dx86_64-gcc.c74 # define mul_add(r,a,word,carry) do { \ argument
91 # define mul(r,a,word,carry) do { \ argument
169 void bn_sqr_words(BN_ULONG *r, const BN_ULONG *a, int n) in bn_sqr_words()
260 BN_ULONG bn_sub_words(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b, int n) in bn_sub_words()
393 void bn_mul_comba8(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b) in bn_mul_comba8()
496 void bn_mul_comba4(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b) in bn_mul_comba4()
535 void bn_sqr_comba8(BN_ULONG *r, const BN_ULONG *a) in bn_sqr_comba8()
610 void bn_sqr_comba4(BN_ULONG *r, const BN_ULONG *a) in bn_sqr_comba4()
/openssl/crypto/des/
H A Ddes_enc.c22 register DES_LONG l, r, t, u; in DES_encrypt1() local
93 register DES_LONG l, r, t, u; in DES_encrypt2() local
158 register DES_LONG l, r; in DES_encrypt3() local
178 register DES_LONG l, r; in DES_decrypt3() local
/openssl/test/
H A Dcrltest.c311 int r; in test_basic_crl() local
336 int r; in test_bad_issuer_crl() local
350 int r; in test_known_critical_crl() local
363 int r; in test_unknown_critical_crl() local
/openssl/crypto/idea/
H A Di_skey.c63 int r; in IDEA_set_decrypt_key() local
93 long n1, n2, q, r, b1, b2, t; in inverse() local

Completed in 86 milliseconds

123456789