Home
last modified time | relevance | path

Searched defs:l (Results 1 – 25 of 192) sorted by relevance

12345678

/openssl/include/crypto/
H A Dmd32_common.h126 # define HOST_c2l(c,l) (l =(((unsigned long)(*((c)++)))<<24), \ argument
130 # define HOST_l2c(l,c) (*((c)++)=(unsigned char)(((l)>>24)&0xff), \ argument
138 # define HOST_c2l(c,l) (l =(((unsigned long)(*((c)++))) ), \ argument
142 # define HOST_l2c(l,c) (*((c)++)=(unsigned char)(((l) )&0xff), \ argument
158 HASH_LONG l; in HASH_UPDATE() local
/openssl/crypto/idea/
H A Didea_local.h65 #define n2l(c,l) (l =((unsigned long)(*((c)++)))<<24L, \ argument
71 #define l2n(l,c) (*((c)++)=(unsigned char)(((l)>>24L)&0xff), \ argument
77 #define s2n(l,c) (*((c)++)=(unsigned char)(((l) )&0xff), \ argument
81 #define n2s(c,l) (l =((IDEA_INT)(*((c)++)))<< 8L, \ argument
/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
209 register long l = length; in DES_ede3_cbc_encrypt() local
H A Ddes_local.h29 # define c2l(c,l) (l =((DES_LONG)(*((c)++))) , \ argument
57 # define l2c(l,c) (*((c)++)=(unsigned char)(((l) )&0xff), \ argument
199 # define IP(l,r) \ argument
209 # define FP(l,r) \ argument
H A Dcfb64ede.c30 register long l = length; in DES_ede3_cfb64_encrypt() local
97 register unsigned long l = length, n = ((unsigned int)numbits + 7) / 8; in DES_ede3_cfb_encrypt() local
/openssl/include/internal/
H A Dcommon.h105 # define c2l(c,l) (l = ((unsigned long)(*((c)++))) , \ argument
126 # define l2c(l,c) (*((c)++)=(unsigned char)(((l) )&0xff), \ argument
131 # define n2l(c,l) (l =((unsigned long)(*((c)++)))<<24, \ argument
136 # define n2l8(c,l) (l =((uint64_t)(*((c)++)))<<56, \ argument
145 # define l2n(l,c) (*((c)++)=(unsigned char)(((l)>>24)&0xff), \ argument
150 # define l2n8(l,c) (*((c)++)=(unsigned char)(((l)>>56)&0xff), \ argument
179 # define n2l3(c,l) ((l =(((unsigned long)((c)[0]))<<16)| \ argument
183 # define l2n3(l,c) (((c)[0]=(unsigned char)(((l)>>16)&0xff), \ argument
H A Dlist.h27 # define OSSL_LIST_FOREACH(p, name, l) \ argument
34 # define OSSL_LIST_FOREACH_REV(p, name, l) \ argument
41 #define OSSL_LIST_FOREACH_DELSAFE(p, pn, name, l) \ argument
48 # define OSSL_LIST_FOREACH_REV_DELSAFE(p, pn, name, l) \ argument
H A Dring_buf.h80 size_t avail, idx, l; in ring_buf_write_at() local
117 size_t pushed = 0, avail, idx, l; in ring_buf_push() local
178 size_t idx, l; in ring_buf_get_buf_at() local
211 size_t l; in ring_buf_cpop_range() local
/openssl/crypto/bf/
H A Dbf_enc.c32 register BF_LONG l, r; in BF_encrypt() local
71 register BF_LONG l, r; in BF_decrypt() local
113 register long l = length; in BF_cbc_encrypt() local
H A Dbf_local.h60 # define n2l(c,l) (l =((unsigned long)(*((c)++)))<<24L, \ argument
66 # define l2n(l,c) (*((c)++)=(unsigned char)(((l)>>24L)&0xff), \ argument
H A Dbf_ecb.c34 BF_LONG l, d[2]; in BF_ecb_encrypt() local
/openssl/crypto/cast/
H A Dc_enc.c21 CAST_LONG l, r, t; in CAST_encrypt() local
53 CAST_LONG l, r, t; in CAST_decrypt() local
89 register long l = length; in CAST_cbc_encrypt() local
H A Dc_skey.c20 #define CAST_exp(l,A,a,n) \ argument
38 CAST_LONG l, *K; in CAST_set_key() local
H A Dc_ecb.c23 CAST_LONG l, d[2]; in CAST_ecb_encrypt() local
/openssl/crypto/rc2/
H A Drc2_local.h11 #define c2l(c,l) (l =((unsigned long)(*((c)++))) , \ argument
41 #define l2c(l,c) (*((c)++)=(unsigned char)(((l) )&0xff), \ argument
H A Drc2_cbc.c24 register long l = length; in RC2_cbc_encrypt() local
99 unsigned long l; in RC2_encrypt() local
145 unsigned long l; in RC2_decrypt() local
H A Drc2_ecb.c31 unsigned long l, d[2]; in RC2_ecb_encrypt() local
/openssl/crypto/bn/
H A Dbn_word.c82 BN_ULONG l, d; in BN_div_word() local
100 BN_ULONG l; in BN_add_word() local
/openssl/ssl/quic/
H A Dquic_cfq.c99 static void list_remove(QUIC_CFQ_ITEM_LIST *l, QUIC_CFQ_ITEM_EX *n) in list_remove()
112 static void list_insert_head(QUIC_CFQ_ITEM_LIST *l, QUIC_CFQ_ITEM_EX *n) in list_insert_head()
123 static void list_insert_tail(QUIC_CFQ_ITEM_LIST *l, QUIC_CFQ_ITEM_EX *n) in list_insert_tail()
134 static void list_insert_after(QUIC_CFQ_ITEM_LIST *l, in list_insert_after()
147 static void list_insert_sorted(QUIC_CFQ_ITEM_LIST *l, QUIC_CFQ_ITEM_EX *n, in list_insert_sorted()
192 static void free_list_items(QUIC_CFQ_ITEM_LIST *l) in free_list_items()
H A Dquic_stream_map.c22 static void list_insert_tail(QUIC_STREAM_LIST_NODE *l, in list_insert_tail()
35 static void list_remove(QUIC_STREAM_LIST_NODE *l, in list_remove()
46 static QUIC_STREAM *list_next(QUIC_STREAM_LIST_NODE *l, QUIC_STREAM_LIST_NODE *n, in list_next()
65 #define active_next(l, s) list_next((l), &(s)->active_node, \ argument
67 #define accept_next(l, s) list_next((l), &(s)->accept_node, \ argument
69 #define ready_for_gc_next(l, s) list_next((l), &(s)->ready_for_gc_node, \ argument
71 #define accept_head(l) list_next((l), (l), \ argument
73 #define ready_for_gc_head(l) list_next((l), (l), \ argument
/openssl/include/openssl/
H A Ddes.h64 # define DES_ede2_cbc_encrypt(i,o,l,k1,k2,iv,e) \ argument
67 # define DES_ede2_cfb64_encrypt(i,o,l,k1,k2,iv,n,e) \ argument
70 # define DES_ede2_ofb64_encrypt(i,o,l,k1,k2,iv,n) \ argument
/openssl/doc/designs/ddd/
H A Dddd-05-mem-nonblocking.c141 int rc, l; local
170 int rc, l; local
299 int l, l2; local
359 int l, tx_len; local
H A Dddd-02-conn-nonblocking-threads.c142 int l; in tx() local
167 int l; in rx() local
264 int res = 1, l, tx_len; in main() local
/openssl/crypto/rc5/
H A Drc5_ecb.c23 unsigned long l, d[2]; in RC5_32_ecb_encrypt() local
/openssl/crypto/mdc2/
H A Dmdc2dgst.c24 #define c2l(c,l) (l =((DES_LONG)(*((c)++))) , \ argument
30 #define l2c(l,c) (*((c)++)=(unsigned char)(((l) )&0xff), \ argument

Completed in 49 milliseconds

12345678