/openssl/crypto/rc2/ |
H A D | rc2_local.h | 18 #define c2ln(c,l1,l2,n) { \ argument 20 l1=l2=0; \ 30 case 4: l1 =((unsigned long)(*(--(c))))<<24L; \ 32 case 3: l1|=((unsigned long)(*(--(c))))<<16L; \ 34 case 2: l1|=((unsigned long)(*(--(c))))<< 8L; \ 36 case 1: l1|=((unsigned long)(*(--(c)))); \ 48 #define l2cn(l1,l2,c,n) { \ argument 59 case 4: *(--(c))=(unsigned char)(((l1)>>24L)&0xff); \ 61 case 3: *(--(c))=(unsigned char)(((l1)>>16L)&0xff); \ 63 case 2: *(--(c))=(unsigned char)(((l1)>> 8L)&0xff); \ [all …]
|
/openssl/crypto/bf/ |
H A D | bf_local.h | 15 # define n2ln(c,l1,l2,n) { \ argument 17 l1=l2=0; \ 27 case 4: l1 =((unsigned long)(*(--(c)))) ; \ 29 case 3: l1|=((unsigned long)(*(--(c))))<< 8; \ 31 case 2: l1|=((unsigned long)(*(--(c))))<<16; \ 33 case 1: l1|=((unsigned long)(*(--(c))))<<24; \ 38 # define l2nn(l1,l2,c,n) { \ argument 49 case 4: *(--(c))=(unsigned char)(((l1) )&0xff); \ 51 case 3: *(--(c))=(unsigned char)(((l1)>> 8)&0xff); \ 53 case 2: *(--(c))=(unsigned char)(((l1)>>16)&0xff); \ [all …]
|
/openssl/crypto/idea/ |
H A D | idea_local.h | 20 #define n2ln(c,l1,l2,n) { \ argument 22 l1=l2=0; \ 32 case 4: l1 =((unsigned long)(*(--(c)))) ; \ 34 case 3: l1|=((unsigned long)(*(--(c))))<< 8; \ 36 case 2: l1|=((unsigned long)(*(--(c))))<<16; \ 38 case 1: l1|=((unsigned long)(*(--(c))))<<24; \ 43 #define l2nn(l1,l2,c,n) { \ argument 54 case 4: *(--(c))=(unsigned char)(((l1) )&0xff); \ 56 case 3: *(--(c))=(unsigned char)(((l1)>> 8)&0xff); \ 58 case 2: *(--(c))=(unsigned char)(((l1)>>16)&0xff); \ [all …]
|
H A D | i_ecb.c | 29 unsigned long l0, l1, d[2]; in IDEA_ecb_encrypt() local 33 n2l(in, l1); in IDEA_ecb_encrypt() 34 d[1] = l1; in IDEA_ecb_encrypt() 38 l1 = d[1]; in IDEA_ecb_encrypt() 39 l2n(l1, out); in IDEA_ecb_encrypt() 40 l0 = l1 = d[0] = d[1] = 0; in IDEA_ecb_encrypt()
|
/openssl/test/testutil/ |
H A D | format_output.c | 53 l1 = 0; in test_fail_string_common() 67 if (l1 != l2 || strncmp(m1, m2, l1) != 0) in test_fail_string_common() 72 if (l1 > 0) { in test_fail_string_common() 73 b1[n1 = l1 > width ? width : l1] = 0; in test_fail_string_common() 114 l1 -= n1; in test_fail_string_common() 300 len = ((l1 > l2 ? l1 : l2) + bytes - 1) / bytes * bytes; in test_fail_bignum_common() 438 l1 = 0; in test_fail_memory_common() 452 if (l1 != l2 || (m1 != m2 && memcmp(m1, m2, l1) != 0)) in test_fail_memory_common() 457 if (l1 > 0) { in test_fail_memory_common() 458 n1 = l1 > bytes ? bytes : l1; in test_fail_memory_common() [all …]
|
H A D | tu_local.h | 29 const char *op, const char *m1, size_t l1, 46 const unsigned char *m1, size_t l1,
|
/openssl/crypto/rc5/ |
H A D | rc5_local.h | 20 #define c2ln(c,l1,l2,n) { \ argument 22 l1=l2=0; \ 32 case 4: l1 =((unsigned long)(*(--(c))))<<24L; \ 34 case 3: l1|=((unsigned long)(*(--(c))))<<16L; \ 36 case 2: l1|=((unsigned long)(*(--(c))))<< 8L; \ 38 case 1: l1|=((unsigned long)(*(--(c)))); \ 50 #define l2cn(l1,l2,c,n) { \ argument 61 case 4: *(--(c))=(unsigned char)(((l1)>>24L)&0xff); \ 63 case 3: *(--(c))=(unsigned char)(((l1)>>16L)&0xff); \ 65 case 2: *(--(c))=(unsigned char)(((l1)>> 8L)&0xff); \ [all …]
|
/openssl/crypto/cast/ |
H A D | cast_local.h | 15 #define n2ln(c,l1,l2,n) { \ argument 17 l1=l2=0; \ 27 case 4: l1 =((unsigned long)(*(--(c)))) ; \ 29 case 3: l1|=((unsigned long)(*(--(c))))<< 8; \ 31 case 2: l1|=((unsigned long)(*(--(c))))<<16; \ 33 case 1: l1|=((unsigned long)(*(--(c))))<<24; \ 38 #define l2nn(l1,l2,c,n) { \ argument 49 case 4: *(--(c))=(unsigned char)(((l1) )&0xff); \ 51 case 3: *(--(c))=(unsigned char)(((l1)>> 8)&0xff); \ 53 case 2: *(--(c))=(unsigned char)(((l1)>>16)&0xff); \ [all …]
|
/openssl/crypto/des/ |
H A D | des_local.h | 35 # define c2ln(c,l1,l2,n) { \ argument 37 l1=l2=0; \ 47 case 4: l1 =((DES_LONG)(*(--(c))))<<24L; \ 49 case 3: l1|=((DES_LONG)(*(--(c))))<<16L; \ 51 case 2: l1|=((DES_LONG)(*(--(c))))<< 8L; \ 53 case 1: l1|=((DES_LONG)(*(--(c)))); \ 63 # define l2cn(l1,l2,c,n) { \ argument 74 case 4: *(--(c))=(unsigned char)(((l1)>>24L)&0xff); \ 76 case 3: *(--(c))=(unsigned char)(((l1)>>16L)&0xff); \ 78 case 2: *(--(c))=(unsigned char)(((l1)>> 8L)&0xff); \ [all …]
|
H A D | ecb3_enc.c | 22 register DES_LONG l0, l1; in DES_ecb3_encrypt() local 28 c2l(in, l1); in DES_ecb3_encrypt() 30 ll[1] = l1; in DES_ecb3_encrypt() 36 l1 = ll[1]; in DES_ecb3_encrypt() 38 l2c(l1, out); in DES_ecb3_encrypt()
|
/openssl/include/internal/ |
H A D | common.h | 111 # define c2ln(c,l1,l2,n) { \ argument 113 l1=l2=0; \ 119 case 4: l1 =((unsigned long)(*(--(c))))<<24; \ 120 case 3: l1|=((unsigned long)(*(--(c))))<<16; \ 121 case 2: l1|=((unsigned long)(*(--(c))))<< 8; \ 122 case 1: l1|=((unsigned long)(*(--(c)))); \ 160 # define l2cn(l1,l2,c,n) { \ argument 167 case 4: *(--(c))=(unsigned char)(((l1)>>24)&0xff); \ 168 case 3: *(--(c))=(unsigned char)(((l1)>>16)&0xff); \ 169 case 2: *(--(c))=(unsigned char)(((l1)>> 8)&0xff); \ [all …]
|
/openssl/fuzz/ |
H A D | bignum.c | 33 size_t l1 = 0, l2 = 0, l3 = 0; in FuzzerTestOneInput() local 56 l1 = ((buf[0] * len) / 255) % 512; in FuzzerTestOneInput() 58 l2 = ((buf[0] * (len - l1)) / 255) % 512; in FuzzerTestOneInput() 60 l3 = (len - l1 - l2) % 512; in FuzzerTestOneInput() 66 OPENSSL_assert(BN_bin2bn(buf, l1, b1) == b1); 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 66 l1 = ((buf[0] & 0x3f) * len) / 0x3f; in FuzzerTestOneInput() 70 l2 = len - l1; in FuzzerTestOneInput() 72 OPENSSL_assert(BN_bin2bn(buf, l1, b1) == b1); in FuzzerTestOneInput() 74 OPENSSL_assert(BN_bin2bn(buf + l1, l2, b2) == b2); in FuzzerTestOneInput()
|
/openssl/crypto/aes/asm/ |
H A D | aes-sparcv9.pl | 51 $acc4="%l1"; 558 sll %l1,16,%l1 561 or %l1,%l0,%l0 580 sll %l1,16,%l1 583 or %l1,%l0,%l0 603 srl %o0,16,%l1 619 srl %o2,16,%l1 1104 sll %l1,16,%l1 1107 or %l1,%l0,%l0 1126 sll %l1,16,%l1 [all …]
|
/openssl/crypto/x509/ |
H A D | x509_obj.c | 29 int n, lold, l, l1, l2, num, j, type; in X509_NAME_oneline() local 70 l1 = strlen(s); in X509_NAME_oneline() 119 l += 1 + l1 + 1 + l2; in X509_NAME_oneline() 133 memcpy(p, s, (unsigned int)l1); in X509_NAME_oneline() 134 p += l1; in X509_NAME_oneline()
|
/openssl/crypto/sha/asm/ |
H A D | sha512-sparcv9.pl | 109 $B="%l1"; 178 ld [$inp+4],%l1 219 ld [%sp+STACK_BIAS+STACK_FRAME+`(($i+1+0)%16)*$SZ+4`],%l1 387 or %l1,$tmp2,$tmp2 389 ld [%sp+STACK_BIAS+STACK_FRAME+`(($i+1+0)%16)*$SZ+4`],%l1 739 ld [$ctx+`0*$SZ+4`],%l1 749 or %l1,$tmp0,$tmp0 765 ld [$ctx+`4*$SZ+4`],%l1 775 or %l1,$tmp0,$tmp0
|
H A D | sha1-sparcv9.pl | 42 $B="%l1";
|
H A D | sha1-sparcv9a.pl | 67 $B="%l1";
|
/openssl/crypto/ec/asm/ |
H A D | ecp_nistz256-sparcv9.pl | 1366 ld [$inp+4],%l1 1385 ld [$inp+4],%l1 1404 ld [$inp+4],%l1 1449 and %l1,$mask,%l1 1452 st %l1,[$out+4] 1476 and %l1,$mask,%l1 1479 st %l1,[$out+4] 1502 and %l1,$mask,%l1 1537 srl %l0,8,%l1 1576 sll %l1,8,%l1 [all …]
|
/openssl/ssl/record/methods/ |
H A D | dtls_meth.c | 19 uint64_t l1, l2; in satsub64be() local 21 n2l8(v1, l1); 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 }), 2864 foreach my $l1 (("sources", "shared_sources", "ldadd", "depends", 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/crypto/ |
H A D | sparccpuid.S | 93 clr %l1 163 clr %l1
|
/openssl/crypto/modes/asm/ |
H A D | ghash-sparcv9.pl | 69 $nlo="%l1";
|
/openssl/crypto/bn/asm/ |
H A D | sparcv9-mont.pl | 75 $j="%l1";
|
H A D | sparcv9a-mont.pl | 88 $ap_l="%l1"; # a[num],n[num] are smashed to 32-bit words and saved
|