Home
last modified time | relevance | path

Searched refs:l1 (Results 1 – 25 of 29) sorted by relevance

12

/openssl/crypto/rc2/
H A Drc2_local.h18 #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
70 #define n2ln(c,l1,l2,n) { \ argument
72 l1=l2=0; \
82 case 4: l1 =((unsigned long)(*(--(c)))) ; \
[all …]
/openssl/crypto/rc5/
H A Drc5_local.h20 #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
72 #define n2ln(c,l1,l2,n) { \ argument
74 l1=l2=0; \
84 case 4: l1 =((unsigned long)(*(--(c)))) ; \
[all …]
/openssl/crypto/cast/
H A Dcast_local.h22 #define c2ln(c,l1,l2,n) { \ argument
24 l1=l2=0; \
30 case 4: l1 =((unsigned long)(*(--(c))))<<24L; \
31 case 3: l1|=((unsigned long)(*(--(c))))<<16L; \
32 case 2: l1|=((unsigned long)(*(--(c))))<< 8L; \
33 case 1: l1|=((unsigned long)(*(--(c)))); \
45 #define l2cn(l1,l2,c,n) { \ argument
60 #define n2ln(c,l1,l2,n) { \ argument
62 l1=l2=0; \
72 case 4: l1 =((unsigned long)(*(--(c)))) ; \
[all …]
/openssl/crypto/bf/
H A Dbf_local.h15 # 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 Didea_local.h21 #define n2ln(c,l1,l2,n) { \ argument
23 l1=l2=0; \
33 case 4: l1 =((unsigned long)(*(--(c)))) ; \
35 case 3: l1|=((unsigned long)(*(--(c))))<< 8; \
37 case 2: l1|=((unsigned long)(*(--(c))))<<16; \
39 case 1: l1|=((unsigned long)(*(--(c))))<<24; \
44 #define l2nn(l1,l2,c,n) { \ argument
55 case 4: *(--(c))=(unsigned char)(((l1) )&0xff); \
57 case 3: *(--(c))=(unsigned char)(((l1)>> 8)&0xff); \
59 case 2: *(--(c))=(unsigned char)(((l1)>>16)&0xff); \
[all …]
H A Di_ecb.c29 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 Dformat_output.c54 l1 = 0; in test_fail_string_common()
68 if (l1 != l2 || strncmp(m1, m2, l1) != 0) in test_fail_string_common()
73 if (l1 > 0) { in test_fail_string_common()
74 b1[n1 = l1 > width ? width : l1] = 0; in test_fail_string_common()
115 l1 -= n1; in test_fail_string_common()
301 len = ((l1 > l2 ? l1 : l2) + bytes - 1) / bytes * bytes; in test_fail_bignum_common()
439 l1 = 0; in test_fail_memory_common()
453 if (l1 != l2 || (m1 != m2 && memcmp(m1, m2, l1) != 0)) in test_fail_memory_common()
458 if (l1 > 0) { in test_fail_memory_common()
459 n1 = l1 > bytes ? bytes : l1; in test_fail_memory_common()
[all …]
H A Dtu_local.h29 const char *op, const char *m1, size_t l1,
46 const unsigned char *m1, size_t l1,
/openssl/fuzz/
H A Dbignum.c33 size_t l1 = 0, l2 = 0, l3 = 0; in FuzzerTestOneInput() local
55 l1 = (buf[0] * len) / 255; in FuzzerTestOneInput()
57 l2 = (buf[0] * (len - l1)) / 255; in FuzzerTestOneInput()
59 l3 = len - l1 - l2; in FuzzerTestOneInput()
65 OPENSSL_assert(BN_bin2bn(buf, l1, b1) == b1); in FuzzerTestOneInput()
67 OPENSSL_assert(BN_bin2bn(buf + l1, l2, b2) == b2); in FuzzerTestOneInput()
68 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
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/des/
H A Ddes_local.h35 # 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)))); \
78 # define l2cn(l1,l2,c,n) { \ argument
89 case 4: *(--(c))=(unsigned char)(((l1)>>24L)&0xff); \
91 case 3: *(--(c))=(unsigned char)(((l1)>>16L)&0xff); \
93 case 2: *(--(c))=(unsigned char)(((l1)>> 8L)&0xff); \
[all …]
H A Decb3_enc.c22 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/ssl/record/
H A Ddtls1_bitmap.c17 uint64_t l1, l2; in satsub64be() local
19 n2l8(v1, l1); in satsub64be()
22 ret = l1 - l2; in satsub64be()
25 if (l1 > l2 && ret < 0) in satsub64be()
27 else if (l2 > l1 && ret > 0) in satsub64be()
/openssl/crypto/aes/asm/
H A Daes-sparcv9.pl51 $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 Dx509_obj.c29 int n, lold, l, l1, l2, num, j, type; in X509_NAME_oneline() local
71 l1 = strlen(s); in X509_NAME_oneline()
120 l += 1 + l1 + 1 + l2; in X509_NAME_oneline()
134 memcpy(p, s, (unsigned int)l1); in X509_NAME_oneline()
135 p += l1; in X509_NAME_oneline()
/openssl/crypto/sha/asm/
H A Dsha512-sparcv9.pl109 $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 Dsha1-sparcv9.pl42 $B="%l1";
H A Dsha1-sparcv9a.pl67 $B="%l1";
/openssl/crypto/ec/asm/
H A Decp_nistz256-sparcv9.pl1366 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 Ddtls_meth.c18 uint64_t l1, l2; in satsub64be() local
20 n2l8(v1, l1); in satsub64be()
23 ret = l1 - l2; in satsub64be()
26 if (l1 > l2 && ret < 0) in satsub64be()
28 else if (l2 > l1 && ret > 0) in satsub64be()
/openssl/
H A DConfigure2108 qr/\\$/ => sub { my $l1 = shift; my $l2 = shift;
2109 $l1 =~ s/\\$//; $l1.$l2 }),
2717 foreach my $l1 (("sources", "shared_sources", "ldadd", "depends",
2719 foreach my $l2 (sort keys %{$unified_info{$l1}}) {
2722 grep { $unified_info{$l1}->{$l2}->{$_} > 0 }
2723 keys %{$unified_info{$l1}->{$l2}};
2725 $unified_info{$l1}->{$l2} = [ @items ];
2727 delete $unified_info{$l1}->{$l2};
/openssl/ssl/
H A Dssl_local.h52 # define c2ln(c,l1,l2,n) { \ argument
54 l1=l2=0; \
60 case 4: l1 =((unsigned long)(*(--(c))))<<24; \
61 case 3: l1|=((unsigned long)(*(--(c))))<<16; \
62 case 2: l1|=((unsigned long)(*(--(c))))<< 8; \
63 case 1: l1|=((unsigned long)(*(--(c)))); \
109 # define l2cn(l1,l2,c,n) { \ argument
116 case 4: *(--(c))=(unsigned char)(((l1)>>24)&0xff); \
117 case 3: *(--(c))=(unsigned char)(((l1)>>16)&0xff); \
118 case 2: *(--(c))=(unsigned char)(((l1)>> 8)&0xff); \
[all …]
/openssl/crypto/
H A Dsparccpuid.S93 clr %l1
163 clr %l1
/openssl/crypto/modes/asm/
H A Dghash-sparcv9.pl69 $nlo="%l1";
/openssl/crypto/bn/asm/
H A Dsparcv9-mont.pl75 $j="%l1";

Completed in 67 milliseconds

12