/openssl/crypto/rc2/ |
H A D | rc2_local.h | 18 #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 D | bf_local.h | 15 # 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 D | idea_local.h | 20 #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 D | format_output.c | 55 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 D | tu_local.h | 30 const char *m2, size_t l2); 47 const unsigned char *m2, size_t l2);
|
/openssl/crypto/rc5/ |
H A D | rc5_local.h | 20 #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 D | cast_local.h | 15 #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 D | des_local.h | 35 # 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 D | common.h | 111 # 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 D | aes-sparcv9.pl | 56 $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 D | bignum.c | 33 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 D | bndiv.c | 49 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 D | x509_obj.c | 29 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 D | ddd-05-mem-nonblocking.c | 299 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 D | sha512-sparcv9.pl | 110 $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 D | sha1-sparcv9.pl | 43 $C="%l2";
|
H A D | sha1-sparcv9a.pl | 68 $C="%l2";
|
/openssl/crypto/ec/asm/ |
H A D | ecp_nistz256-sparcv9.pl | 1367 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 D | dtls_meth.c | 19 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 D | Configure | 2223 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 D | quic_record_rx.c | 667 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 D | quic_wire_pkt.c | 843 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 D | quic_record_tx.c | 493 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 D | sparccpuid.S | 95 clr %l2 164 clr %l2
|
/openssl/crypto/modes/asm/ |
H A D | ghash-sparcv9.pl | 70 $xi0="%l2";
|