Home
last modified time | relevance | path

Searched defs:w (Results 1 – 25 of 40) sorted by relevance

12

/openssl/providers/implementations/digests/
H A Dblake2_impl.h25 uint32_t w; in load32() local
29 uint32_t w = ((uint32_t)src[0]) in load32() local
42 uint64_t w; in load64() local
46 uint64_t w = ((uint64_t)src[0]) in load64() local
58 static ossl_inline void store32(uint8_t *dst, uint32_t w) in store32()
73 static ossl_inline void store64(uint8_t *dst, uint64_t w) in store64()
90 uint64_t w = ((uint64_t)src[0]) in load48() local
99 static ossl_inline void store48(uint8_t *dst, uint64_t w) in store48()
110 static ossl_inline uint32_t rotr32(const uint32_t w, const unsigned int c) in rotr32()
115 static ossl_inline uint64_t rotr64(const uint64_t w, const unsigned int c) in rotr64()
/openssl/crypto/bn/
H A Dbn_word.c13 BN_ULONG BN_mod_word(const BIGNUM *a, BN_ULONG w) in BN_mod_word()
61 BN_ULONG BN_div_word(BIGNUM *a, BN_ULONG w) in BN_div_word()
98 int BN_add_word(BIGNUM *a, BN_ULONG w) in BN_add_word()
134 int BN_sub_word(BIGNUM *a, BN_ULONG w) in BN_sub_word()
181 int BN_mul_word(BIGNUM *a, BN_ULONG w) in BN_mul_word()
H A Dbn_prime.c234 int BN_is_prime_fasttest_ex(const BIGNUM *w, int checks, BN_CTX *ctx, in BN_is_prime_fasttest_ex()
242 int ossl_bn_check_prime(const BIGNUM *w, int checks, BN_CTX *ctx, in ossl_bn_check_prime()
258 int ossl_bn_check_generated_prime(const BIGNUM *w, int checks, BN_CTX *ctx, in ossl_bn_check_generated_prime()
275 static int bn_is_prime_int(const BIGNUM *w, int checks, BN_CTX *ctx, in bn_is_prime_int()
347 int ossl_bn_miller_rabin_is_prime(const BIGNUM *w, int iterations, BN_CTX *ctx, in ossl_bn_miller_rabin_is_prime()
H A Dbn_gf2m.c26 # define SQR_nibble(w) ((((w) & 8) << 3) \ argument
34 # define SQR1(w) \ argument
39 # define SQR0(w) \ argument
46 # define SQR1(w) \ argument
49 # define SQR0(w) \ argument
1005 BIGNUM *a, *z, *rho, *w, *w2, *tmp; in BN_GF2m_mod_solve_quad_arr() local
H A Dbn_local.h483 # define mul_add(r,a,w,c) { \ argument
490 # define mul(r,a,w,c) { \ argument
505 # define mul_add(r,a,w,c) { \ argument
517 # define mul(r,a,w,c) { \ argument
532 # define mul_add(r,a,w,c) { \ argument
545 # define mul(r,a,w,c) { \ argument
H A Dbn_intern.c22 signed char *bn_compute_wNAF(const BIGNUM *scalar, int w, size_t *ret_len) in bn_compute_wNAF()
H A Dbn_lib.c417 int BN_set_word(BIGNUM *a, BN_ULONG w) in BN_set_word()
848 int b, w; in ossl_bn_mask_bits_fixed_top() local
1031 int BN_abs_is_word(const BIGNUM *a, const BN_ULONG w) in BN_abs_is_word()
1046 int BN_is_word(const BIGNUM *a, const BN_ULONG w) in BN_is_word()
1051 int ossl_bn_is_word_fixed_top(const BIGNUM *a, const BN_ULONG w) in ossl_bn_is_word_fixed_top()
H A Dbn_asm.c18 BN_ULONG w) in bn_mul_add_words()
47 BN_ULONG bn_mul_words(BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w) in bn_mul_words()
104 BN_ULONG w) in bn_mul_add_words()
136 BN_ULONG bn_mul_words(BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w) in bn_mul_words()
H A Dbn_exp.c1169 BN_ULONG w, next_w; in BN_mod_exp_mont_word() local
1172 #define BN_MOD_MUL_WORD(r, w, m) \ in BN_mod_exp_mont_word() argument
1186 #define BN_TO_MONTGOMERY_WORD(r, w, mont) \ in BN_mod_exp_mont_word() argument
/openssl/crypto/ripemd/
H A Drmd_local.h64 #define RIP1(a,b,c,d,e,w,s) { \ argument
69 #define RIP2(a,b,c,d,e,w,s,K) { \ argument
74 #define RIP3(a,b,c,d,e,w,s,K) { \ argument
79 #define RIP4(a,b,c,d,e,w,s,K) { \ argument
84 #define RIP5(a,b,c,d,e,w,s,K) { \ argument
/openssl/util/
H A Dcheck-format-test-positives.c58 enum { /*@1 extra space in intra-line comment, no more reported */
H A Dcheck-format-test-negatives.c378 w = 0 enumerator
382 w = 0 enumerator
385 w = 0 enumerator
390 w = 0 enumerator
396 w = 0 enumerator
399 w = 0 enumerator
/openssl/crypto/aes/
H A Daes_core.c65 u32 w[2]; member
73 static void XtimeWord(u32 *w) in XtimeWord()
86 static void XtimeLong(u64 *w) in XtimeLong()
145 static void SubWord(u32 *w) in SubWord()
236 static void SubLong(u64 *w) in SubLong()
330 static void InvSubLong(u64 *w) in InvSubLong()
527 static void AddRoundKey(u64 *state, const u64 *w) in AddRoundKey()
534 const u64 *w, int nr) in Cipher()
560 const u64 *w, int nr) in InvCipher()
599 static void KeyExpansion(const unsigned char *key, u64 *w, in KeyExpansion()
/openssl/crypto/asn1/
H A Da_bitstr.c145 int w, v, iv; in ASN1_BIT_STRING_set_bit() local
181 int w, v; in ASN1_BIT_STRING_get_bit() local
/openssl/crypto/ec/
H A Dec_mult.c42 size_t w; /* window size */ member
279 #define EC_POINT_CSWAP(c, a, b, w, t) do { \ in ossl_ec_scalar_mul_ladder() argument
782 signed char **w; in ossl_ec_wNAF_mul() local
824 size_t i, bits, w, pre_points_per_block, blocksize, numblocks, num; in ossl_ec_wNAF_precompute_mult() local
/openssl/ssl/quic/
H A Dquic_reactor.c46 void ossl_quic_reactor_set_poll_w(QUIC_REACTOR *rtor, const BIO_POLL_DESCRIPTOR *w) in ossl_quic_reactor_set_poll_w()
322 const BIO_POLL_DESCRIPTOR *w, int w_want_write, in poll_two_descriptors()
/openssl/crypto/bn/asm/
H A Dx86_64-gcc.c111 BN_ULONG w) in bn_mul_add_words()
141 BN_ULONG bn_mul_words(BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w) in bn_mul_words()
/openssl/providers/implementations/include/prov/
H A Dciphercommon_gcm.h32 unsigned int w; member
44 unsigned int w[4]; member
/openssl/providers/implementations/macs/
H A Dkmac_prov.c266 int w = EVP_MD_get_block_size(digest); in kmac_setkey() local
600 const unsigned char *in2, size_t in2_len, size_t w) in bytepad()
645 size_t w) in kmac_bytepad_encode_key()
/openssl/crypto/sha/
H A Dkeccak1600.c1073 size_t i, w = r / 8; in SHA3_absorb() local
1107 size_t i, w = r / 8; in SHA3_squeeze() local
/openssl/crypto/
H A Dpunycode.c151 unsigned int w = 1; in ossl_punycode_decode() local
/openssl/crypto/ec/curve448/
H A Dfield.h122 static ossl_inline void gf_mulw(gf c, const gf a, int32_t w) in gf_mulw()
/openssl/providers/implementations/encode_decode/
H A Ddecode_pem2der.c79 static int pem2der_pass_helper(char *buf, int num, int w, void *data) in pem2der_pass_helper()
/openssl/test/testutil/
H A Dtests.c415 const BIGNUM *a, BN_ULONG w) in test_BN_eq_word()
429 const char *ws, const BIGNUM *a, BN_ULONG w) in test_BN_abs_eq_word()
/openssl/test/
H A Dbioprinttest.c173 const char *w; member

Completed in 44 milliseconds

12