Home
last modified time | relevance | path

Searched refs:l2 (Results 1 – 25 of 30) sorted by relevance

12

/openssl/crypto/rc2/
H A Drc2_local.h18 #define c2ln(c,l1,l2,n) { \ argument
20 l1=l2=0; \
22 case 8: l2 =((unsigned long)(*(--(c))))<<24L; \
24 case 7: l2|=((unsigned long)(*(--(c))))<<16L; \
26 case 6: l2|=((unsigned long)(*(--(c))))<< 8L; \
28 case 5: l2|=((unsigned long)(*(--(c)))); \
48 #define l2cn(l1,l2,c,n) { \ argument
51 case 8: *(--(c))=(unsigned char)(((l2)>>24L)&0xff); \
53 case 7: *(--(c))=(unsigned char)(((l2)>>16L)&0xff); \
55 case 6: *(--(c))=(unsigned char)(((l2)>> 8L)&0xff); \
[all …]
/openssl/crypto/bf/
H A Dbf_local.h15 # define n2ln(c,l1,l2,n) { \ argument
17 l1=l2=0; \
19 case 8: l2 =((unsigned long)(*(--(c)))) ; \
21 case 7: l2|=((unsigned long)(*(--(c))))<< 8; \
23 case 6: l2|=((unsigned long)(*(--(c))))<<16; \
25 case 5: l2|=((unsigned long)(*(--(c))))<<24; \
38 # define l2nn(l1,l2,c,n) { \ argument
41 case 8: *(--(c))=(unsigned char)(((l2) )&0xff); \
43 case 7: *(--(c))=(unsigned char)(((l2)>> 8)&0xff); \
45 case 6: *(--(c))=(unsigned char)(((l2)>>16)&0xff); \
[all …]
/openssl/crypto/idea/
H A Didea_local.h20 #define n2ln(c,l1,l2,n) { \ argument
22 l1=l2=0; \
24 case 8: l2 =((unsigned long)(*(--(c)))) ; \
26 case 7: l2|=((unsigned long)(*(--(c))))<< 8; \
28 case 6: l2|=((unsigned long)(*(--(c))))<<16; \
30 case 5: l2|=((unsigned long)(*(--(c))))<<24; \
43 #define l2nn(l1,l2,c,n) { \ argument
46 case 8: *(--(c))=(unsigned char)(((l2) )&0xff); \
48 case 7: *(--(c))=(unsigned char)(((l2)>> 8)&0xff); \
50 case 6: *(--(c))=(unsigned char)(((l2)>>16)&0xff); \
[all …]
/openssl/test/testutil/
H A Dformat_output.c55 l2 = 0; in test_fail_string_common()
56 if (l1 == 0 && l2 == 0) { in test_fail_string_common()
70 while (l1 > 0 || l2 > 0) { in test_fail_string_common()
77 if (l2 > 0) { in test_fail_string_common()
78 b2[n2 = l2 > width ? width : l2] = 0; in test_fail_string_common()
115 l2 -= n2; in test_fail_string_common()
300 len = ((l1 > l2 ? l1 : l2) + bytes - 1) / bytes * bytes; in test_fail_bignum_common()
440 l2 = 0; in test_fail_memory_common()
461 if (l2 > 0) { in test_fail_memory_common()
462 n2 = l2 > bytes ? bytes : l2; in test_fail_memory_common()
[all …]
H A Dtu_local.h30 const char *m2, size_t l2);
47 const unsigned char *m2, size_t l2);
/openssl/crypto/rc5/
H A Drc5_local.h20 #define c2ln(c,l1,l2,n) { \ argument
22 l1=l2=0; \
24 case 8: l2 =((unsigned long)(*(--(c))))<<24L; \
26 case 7: l2|=((unsigned long)(*(--(c))))<<16L; \
28 case 6: l2|=((unsigned long)(*(--(c))))<< 8L; \
30 case 5: l2|=((unsigned long)(*(--(c)))); \
50 #define l2cn(l1,l2,c,n) { \ argument
53 case 8: *(--(c))=(unsigned char)(((l2)>>24L)&0xff); \
55 case 7: *(--(c))=(unsigned char)(((l2)>>16L)&0xff); \
57 case 6: *(--(c))=(unsigned char)(((l2)>> 8L)&0xff); \
[all …]
/openssl/crypto/cast/
H A Dcast_local.h15 #define n2ln(c,l1,l2,n) { \ argument
17 l1=l2=0; \
19 case 8: l2 =((unsigned long)(*(--(c)))) ; \
21 case 7: l2|=((unsigned long)(*(--(c))))<< 8; \
23 case 6: l2|=((unsigned long)(*(--(c))))<<16; \
25 case 5: l2|=((unsigned long)(*(--(c))))<<24; \
38 #define l2nn(l1,l2,c,n) { \ argument
41 case 8: *(--(c))=(unsigned char)(((l2) )&0xff); \
43 case 7: *(--(c))=(unsigned char)(((l2)>> 8)&0xff); \
45 case 6: *(--(c))=(unsigned char)(((l2)>>16)&0xff); \
[all …]
/openssl/crypto/des/
H A Ddes_local.h35 # define c2ln(c,l1,l2,n) { \ argument
37 l1=l2=0; \
39 case 8: l2 =((DES_LONG)(*(--(c))))<<24L; \
41 case 7: l2|=((DES_LONG)(*(--(c))))<<16L; \
43 case 6: l2|=((DES_LONG)(*(--(c))))<< 8L; \
45 case 5: l2|=((DES_LONG)(*(--(c)))); \
63 # define l2cn(l1,l2,c,n) { \ argument
66 case 8: *(--(c))=(unsigned char)(((l2)>>24L)&0xff); \
68 case 7: *(--(c))=(unsigned char)(((l2)>>16L)&0xff); \
70 case 6: *(--(c))=(unsigned char)(((l2)>> 8L)&0xff); \
[all …]
/openssl/include/internal/
H A Dcommon.h111 # define c2ln(c,l1,l2,n) { \ argument
113 l1=l2=0; \
115 case 8: l2 =((unsigned long)(*(--(c))))<<24; \
116 case 7: l2|=((unsigned long)(*(--(c))))<<16; \
117 case 6: l2|=((unsigned long)(*(--(c))))<< 8; \
118 case 5: l2|=((unsigned long)(*(--(c)))); \
160 # define l2cn(l1,l2,c,n) { \ argument
163 case 8: *(--(c))=(unsigned char)(((l2)>>24)&0xff); \
164 case 7: *(--(c))=(unsigned char)(((l2)>>16)&0xff); \
165 case 6: *(--(c))=(unsigned char)(((l2)>> 8)&0xff); \
[all …]
/openssl/crypto/aes/asm/
H A Daes-sparcv9.pl56 $acc8="%l2";
560 sll %l2,8,%l2
564 or %l3,%l2,%l2
582 sll %l2,8,%l2
586 or %l3,%l2,%l2
605 srl %o0,8,%l2
621 srl %o2,8,%l2
1106 sll %l2,8,%l2
1110 or %l3,%l2,%l2
1128 sll %l2,8,%l2
[all …]
/openssl/fuzz/
H A Dbignum.c33 size_t l1 = 0, l2 = 0, l3 = 0; in FuzzerTestOneInput() local
58 l2 = ((buf[0] * (len - l1)) / 255) % 512; in FuzzerTestOneInput()
60 l3 = (len - l1 - l2) % 512; in FuzzerTestOneInput()
68 OPENSSL_assert(BN_bin2bn(buf + l1, l2, b2) == b2); in FuzzerTestOneInput()
69 OPENSSL_assert(BN_bin2bn(buf + l1 + l2, l3, b3) == b3); in FuzzerTestOneInput()
H A Dbndiv.c49 size_t l1 = 0, l2 = 0; in FuzzerTestOneInput() local
70 l2 = len - l1; in FuzzerTestOneInput()
74 OPENSSL_assert(BN_bin2bn(buf + l1, l2, b2) == b2); in FuzzerTestOneInput()
/openssl/crypto/x509/
H A Dx509_obj.c29 int n, lold, l, l1, l2, num, j, type; in X509_NAME_oneline() local
107 for (l2 = j = 0; j < num; j++) { in X509_NAME_oneline()
110 l2++; in X509_NAME_oneline()
112 l2++; /* char needs to be escaped */ in X509_NAME_oneline()
115 l2 += 3; in X509_NAME_oneline()
119 l += 1 + l1 + 1 + l2; in X509_NAME_oneline()
/openssl/doc/designs/ddd/
H A Dddd-05-mem-nonblocking.c299 int l, l2; local
333 l2 = write_net_rx(conn, buf, l);
334 if (l2 < l)
335 fprintf(stderr, "short write %d %d\n", l2, l);
344 l2 = write(fd, buf, l);
345 if (l2 < l)
346 fprintf(stderr, "short read %d %d\n", l2, l);
/openssl/crypto/sha/asm/
H A Dsha512-sparcv9.pl110 $C="%l2";
179 ld [$inp+8],%l2
204 ld [%sp+STACK_BIAS+STACK_FRAME+`(($i+1+1)%16)*$SZ+0`],%l2
351 sllx %l2,32,$tmp0 !! Xupdate($i)
355 ld [%sp+STACK_BIAS+STACK_FRAME+`(($i+1+1)%16)*$SZ+0`],%l2
740 ld [$ctx+`1*$SZ+0`],%l2
748 sllx %l2,32,$tmp1
766 ld [$ctx+`5*$SZ+0`],%l2
774 sllx %l2,32,$tmp1
H A Dsha1-sparcv9.pl43 $C="%l2";
H A Dsha1-sparcv9a.pl68 $C="%l2";
/openssl/crypto/ec/asm/
H A Decp_nistz256-sparcv9.pl1367 ld [$inp+8],%l2
1386 ld [$inp+8],%l2
1405 ld [$inp+8],%l2
1451 and %l2,$mask,%l2
1454 st %l2,[$out+8]
1478 and %l2,$mask,%l2
1481 st %l2,[$out+8]
1504 and %l2,$mask,%l2
1539 srl %l0,16,%l2
1577 sll %l2,16,%l2
[all …]
/openssl/ssl/record/methods/
H A Ddtls_meth.c19 uint64_t l1, l2; in satsub64be() local
22 n2l8(v2, l2); in satsub64be()
24 ret = l1 - l2; in satsub64be()
27 if (l1 > l2 && ret < 0) in satsub64be()
29 else if (l2 > l1 && ret > 0) in satsub64be()
/openssl/
H A DConfigure2223 qr/\\$/ => sub { my $l1 = shift; my $l2 = shift;
2224 $l1 =~ s/\\$//; $l1.$l2 }),
2866 foreach my $l2 (sort keys %{$unified_info{$l1}}) {
2869 grep { $unified_info{$l1}->{$l2}->{$_} > 0 }
2870 keys %{$unified_info{$l1}->{$l2}};
2872 $unified_info{$l1}->{$l2} = [ @items ];
2874 delete $unified_info{$l1}->{$l2};
/openssl/ssl/quic/
H A Dquic_record_rx.c667 int l = 0, l2 = 0, is_old_key, nonce_len; in qrx_decrypt_pkt_body() local
747 if (EVP_CipherFinal_ex(cctx, NULL, &l2) != 1) { in qrx_decrypt_pkt_body()
752 if (EVP_CipherFinal_ex(cctx, NULL, &l2) != 1) { in qrx_decrypt_pkt_body()
H A Dquic_wire_pkt.c843 int ok = 0, l = 0, l2 = 0, wpkt_valid = 0; in ossl_quic_calculate_retry_integrity_tag() local
925 if (EVP_CipherFinal_ex(cctx, NULL, &l2) != 1) { in ossl_quic_calculate_retry_integrity_tag()
H A Dquic_record_tx.c493 int l = 0, l2 = 0, nonce_len; in qtx_encrypt_into_txe() local
574 if (EVP_CipherFinal_ex(cctx, NULL, &l2) != 1) { in qtx_encrypt_into_txe()
/openssl/crypto/
H A Dsparccpuid.S95 clr %l2
164 clr %l2
/openssl/crypto/modes/asm/
H A Dghash-sparcv9.pl70 $xi0="%l2";

Completed in 85 milliseconds

12