Home
last modified time | relevance | path

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

123456789

/openbsd/gnu/usr.bin/binutils/gdb/testsuite/gdb.base/
H A Drestore.c133 return l1; in callee1()
142 return l1+l2; in callee2()
152 return l1+l2+l3; in callee3()
163 return l1+l2+l3+l4; in callee4()
183 n = callee0 (l1); in caller1()
184 n = callee1 (n + l1); in caller1()
185 n = callee2 (n + l1); in caller1()
186 n = callee3 (n + l1); in caller1()
189 return n+l1; in caller1()
204 return n+l1+l2; in caller2()
[all …]
/openbsd/lib/libcrypto/cast/
H A Dcast_local.h67 #define c2ln(c,l1,l2,n) { \ argument
69 l1=l2=0; \
78 case 1: l1|=((unsigned long)(*(--(c)))); \
90 #define l2cn(l1,l2,c,n) { \ argument
105 #define n2ln(c,l1,l2,n) { \ argument
107 l1=l2=0; \
113 case 4: l1 =((unsigned long)(*(--(c)))) ; \
114 case 3: l1|=((unsigned long)(*(--(c))))<< 8; \
115 case 2: l1|=((unsigned long)(*(--(c))))<<16; \
116 case 1: l1|=((unsigned long)(*(--(c))))<<24; \
[all …]
/openbsd/lib/libcrypto/rc2/
H A Drc2_local.h67 #define c2ln(c,l1,l2,n) { \ argument
69 l1=l2=0; \
75 case 4: l1 =((unsigned long)(*(--(c))))<<24L; \
76 case 3: l1|=((unsigned long)(*(--(c))))<<16L; \
77 case 2: l1|=((unsigned long)(*(--(c))))<< 8L; \
78 case 1: l1|=((unsigned long)(*(--(c)))); \
90 #define l2cn(l1,l2,c,n) { \ argument
97 case 4: *(--(c))=(unsigned char)(((l1)>>24L)&0xff);\
98 case 3: *(--(c))=(unsigned char)(((l1)>>16L)&0xff);\
99 case 2: *(--(c))=(unsigned char)(((l1)>> 8L)&0xff);\
[all …]
/openbsd/lib/libcrypto/bf/
H A Dbf_local.h65 #define n2ln(c,l1,l2,n) { \ argument
67 l1=l2=0; \
73 case 4: l1 =((unsigned long)(*(--(c)))) ; \
74 case 3: l1|=((unsigned long)(*(--(c))))<< 8; \
75 case 2: l1|=((unsigned long)(*(--(c))))<<16; \
76 case 1: l1|=((unsigned long)(*(--(c))))<<24; \
81 #define l2nn(l1,l2,c,n) { \ argument
88 case 4: *(--(c))=(unsigned char)(((l1) )&0xff); \
89 case 3: *(--(c))=(unsigned char)(((l1)>> 8)&0xff); \
90 case 2: *(--(c))=(unsigned char)(((l1)>>16)&0xff); \
[all …]
/openbsd/lib/libcrypto/idea/
H A Didea_local.h83 #define n2ln(c,l1,l2,n) { \ argument
85 l1=l2=0; \
91 case 4: l1 =((unsigned long)(*(--(c)))) ; \
92 case 3: l1|=((unsigned long)(*(--(c))))<< 8; \
93 case 2: l1|=((unsigned long)(*(--(c))))<<16; \
94 case 1: l1|=((unsigned long)(*(--(c))))<<24; \
99 #define l2nn(l1,l2,c,n) { \ argument
106 case 4: *(--(c))=(unsigned char)(((l1) )&0xff);\
107 case 3: *(--(c))=(unsigned char)(((l1)>> 8)&0xff);\
108 case 2: *(--(c))=(unsigned char)(((l1)>>16)&0xff);\
[all …]
/openbsd/lib/libc/string/
H A Dwcscasecmp.c35 wchar_t l1, l2; in wcscasecmp() local
37 while ((l1 = towlower(*s1++)) == (l2 = towlower(*s2++))) { in wcscasecmp()
38 if (l1 == 0) in wcscasecmp()
42 return ((rune_t)l1 - (rune_t)l2); in wcscasecmp()
49 wchar_t l1, l2; in wcsncasecmp() local
54 if (((l1 = towlower(*s1++))) != (l2 = towlower(*s2++))) { in wcsncasecmp()
56 return ((rune_t)l1 - (rune_t)l2); in wcsncasecmp()
58 if (l1 == 0) in wcsncasecmp()
H A Dwcscasecmp_l.c35 wchar_t l1, l2; in wcscasecmp_l() local
37 while ((l1 = towlower_l(*s1++, locale)) == in wcscasecmp_l()
39 if (l1 == 0) in wcscasecmp_l()
43 return ((rune_t)l1 - (rune_t)l2); in wcscasecmp_l()
49 wchar_t l1, l2; in wcsncasecmp_l() local
54 if (((l1 = towlower_l(*s1++, locale))) != in wcsncasecmp_l()
57 return ((rune_t)l1 - (rune_t)l2); in wcsncasecmp_l()
59 if (l1 == 0) in wcsncasecmp_l()
/openbsd/sys/crypto/
H A Decb3_enc.c57 register u_int32_t l0, l1; in des_ecb3_encrypt() local
64 c2l(in, l1); in des_ecb3_encrypt()
65 IP(l0, l1); in des_ecb3_encrypt()
67 ll[1] = l1; in des_ecb3_encrypt()
72 l1 = ll[1]; in des_ecb3_encrypt()
73 FP(l1, l0); in des_ecb3_encrypt()
75 l2c(l1, out); in des_ecb3_encrypt()
/openbsd/gnu/usr.bin/cvs/diff/
H A Ded.c39 int f0, l0, f1, l1; local
50 analyze_hunk (hunk, &f0, &l0, &f1, &l1, &deletes, &inserts);
65 for (i = f1; i <= l1; i++)
115 int f0, l0, f1, l1; local
119 analyze_hunk (hunk, &f0, &l0, &f1, &l1, &deletes, &inserts);
137 for (i = f1; i <= l1; i++)
161 int f0, l0, f1, l1; local
166 analyze_hunk (hunk, &f0, &l0, &f1, &l1, &deletes, &inserts);
189 translate_range (&files[1], f1, l1, &tf1, &tl1);
195 for (i = f1; i <= l1; i++)
/openbsd/libexec/ld.so/sparc64/
H A Dldasm.S170 sethi %hi(32768*32-8), %l1
172 or %l1, %lo(32768*32-8), %l1
173 sub %l0, %l1, %l0 /* x - y + 8 - 32768*32 */
175 sethi %hi(5120), %l1
176 sdivx %l0, %l1, %l1 /* Calculate i/5120 */
178 sllx %l1, 2, %l2
179 add %l1, %l2, %l2
187 sllx %l1, 2, %l3 /* 4 * (i/5120) */
188 add %l1, %l3, %l3 /* 5 * (i/5120) */
/openbsd/usr.bin/make/lst.lib/
H A DlstConcatDestroy.c57 Lst_ConcatDestroy(Lst l1, Lst l2) in Lst_ConcatDestroy() argument
68 l2->firstPtr->prevPtr = l1->lastPtr; in Lst_ConcatDestroy()
69 if (l1->lastPtr != NULL) in Lst_ConcatDestroy()
70 l1->lastPtr->nextPtr = l2->firstPtr; in Lst_ConcatDestroy()
72 l1->firstPtr = l2->firstPtr; in Lst_ConcatDestroy()
73 l1->lastPtr = l2->lastPtr; in Lst_ConcatDestroy()
H A DlstConcat.c60 Lst_Concat(Lst l1, Lst l2) in Lst_Concat() argument
76 for (last = l1->lastPtr, ln = l2->firstPtr; ln != NULL; in Lst_Concat()
83 l1->firstPtr = nln; in Lst_Concat()
90 l1->lastPtr = last; in Lst_Concat()
/openbsd/gnu/llvm/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_list_test.cpp143 List l1, l2; in TEST() local
144 l1.clear(); in TEST()
147 l1.append_front(&l2); in TEST()
148 CHECK(l1.empty()); in TEST()
151 l1.append_back(&l2); in TEST()
152 CHECK(l1.empty()); in TEST()
155 SetList(&l1, x); in TEST()
156 CheckList(&l1, x); in TEST()
160 l1.append_back(&l2); in TEST()
164 SetList(&l1, x, y); in TEST()
[all …]
H A Dsanitizer_deadlock_detector_test.cpp143 uptr l1 = d.newNode(1); in RunRemoveNodeTest() local
151 d.onLock(&dtls, l1); in RunRemoveNodeTest()
153 d.onUnlock(&dtls, l1); in RunRemoveNodeTest()
166 locks.insert(l1); in RunRemoveNodeTest()
207 a = l1; b = lt; in RunRemoveNodeTest()
262 d.onLock(&dtls, l1); in RunMultipleEpochsTest()
306 d.onLock(&dtls, l1); in RunCorrectEpochFlush()
337 d.onUnlock(&dtls, l1); in RunTryLockTest()
360 d.onLock(&dtls, l1); in RunOnFirstLockTest()
361 d.onUnlock(&dtls, l1); in RunOnFirstLockTest()
[all …]
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A D20021029-1.c9 static const int ar[] = { &&l1 - &&l1, &&l2 - &&l1 }; in foo()
10 void *p = &&l1 + ar[a]; in foo()
12 l1: in foo()
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A Dlabels-3.c5 static const short ar[] = { &&l1 - &&l1, &&l2 - &&l1 }; in foo()
6 void *p = &&l1 + ar[a]; in foo()
8 l1: in foo()
/openbsd/lib/libcrypto/des/
H A Decb3_enc.c67 DES_LONG l0, l1; in DES_ecb3_encrypt() local
73 c2l(in, l1); in DES_ecb3_encrypt()
75 ll[1] = l1; in DES_ecb3_encrypt()
81 l1 = ll[1]; in DES_ecb3_encrypt()
83 l2c(l1, out); in DES_ecb3_encrypt()
H A Ddes_local.h83 #define c2ln(c,l1,l2,n) { \ argument
85 l1=l2=0; \
91 case 4: l1 =((DES_LONG)(*(--(c))))<<24L; \
92 case 3: l1|=((DES_LONG)(*(--(c))))<<16L; \
93 case 2: l1|=((DES_LONG)(*(--(c))))<< 8L; \
94 case 1: l1|=((DES_LONG)(*(--(c)))); \
104 #define l2cn(l1,l2,c,n) { \ argument
111 case 4: *(--(c))=(unsigned char)(((l1)>>24L)&0xff);\
112 case 3: *(--(c))=(unsigned char)(((l1)>>16L)&0xff);\
113 case 2: *(--(c))=(unsigned char)(((l1)>> 8L)&0xff);\
[all …]
/openbsd/gnu/lib/libstdc++/libstdc++/testsuite/22_locale/
H A Dcollate_members_char.cc78 long l1; in test01() local
80 l1 = coll_c.hash(strlit1, strlit1 + size1); in test01()
82 VERIFY ( l1 != l2 ); in test01()
83 l1 = coll_c.hash(strlit1, strlit1 + size1); in test01()
85 VERIFY ( l1 != l2 ); in test01()
117 l1 = coll_de.hash(strlit3, strlit3 + size3); in test01()
119 VERIFY ( l1 != l2 ); in test01()
120 l1 = coll_de.hash(strlit3, strlit3 + size3); in test01()
122 VERIFY ( l1 != l2 ); in test01()
159 long l1 = col.hash(str1.c_str(), str1.c_str() + str1.size()); in test03() local
[all …]
H A Dcollate_members_wchar_t.cc78 long l1; in test01() local
80 l1 = coll_c.hash(strlit1, strlit1 + size1); in test01()
82 VERIFY ( l1 != l2 ); in test01()
83 l1 = coll_c.hash(strlit1, strlit1 + size1); in test01()
85 VERIFY ( l1 != l2 ); in test01()
117 l1 = coll_de.hash(strlit3, strlit3 + size3); in test01()
119 VERIFY ( l1 != l2 ); in test01()
120 l1 = coll_de.hash(strlit3, strlit3 + size3); in test01()
122 VERIFY ( l1 != l2 ); in test01()
159 long l1 = col.hash(str1.c_str(), str1.c_str() + str1.size()); in test03() local
[all …]
/openbsd/gnu/llvm/compiler-rt/lib/tsan/rtl/
H A Dtsan_fd.cpp84 uptr l1 = atomic_load(pl1, memory_order_consume); in fddesc() local
85 if (l1 == 0) { in fddesc()
91 if (atomic_compare_exchange_strong(pl1, &l1, (uptr)p, memory_order_acq_rel)) in fddesc()
92 l1 = (uptr)p; in fddesc()
96 FdDesc *fds = reinterpret_cast<FdDesc *>(l1); in fddesc()
149 for (int l1 = 0; l1 < kTableSizeL1; l1++) { in FdOnFork() local
150 FdDesc *tab = (FdDesc*)atomic_load(&fdctx.tab[l1], memory_order_relaxed); in FdOnFork()
161 for (int l1 = 0; l1 < kTableSizeL1; l1++) { in FdLocation() local
162 FdDesc *tab = (FdDesc*)atomic_load(&fdctx.tab[l1], memory_order_relaxed); in FdLocation()
168 *fd = l1 * kTableSizeL1 + l2; in FdLocation()
/openbsd/gnu/usr.bin/binutils/gas/config/
H A Dtc-msp430.c516 memset (l1, 0, sizeof (l1));
536 line = extract_operand (line, l1, sizeof (l1));
564 line = extract_operand (line, l1, sizeof (l1));
565 strncpy (l2, l1, sizeof (l2));
609 line = extract_operand (line, l1, sizeof (l1));
641 line = extract_operand (line, l1, sizeof (l1));
692 line = extract_operand (line, l1, sizeof (l1));
717 line = extract_operand (line, l1, sizeof (l1));
719 if (l1[0])
721 char *m = l1;
[all …]
/openbsd/lib/libcrypto/aes/asm/
H A Daes-sparcv9.pl44 $acc4="%l1";
559 sll %l1,16,%l1
562 or %l1,%l0,%l0
581 sll %l1,16,%l1
584 or %l1,%l0,%l0
608 srl %o0,16,%l1
624 srl %o2,16,%l1
1123 sll %l1,16,%l1
1126 or %l1,%l0,%l0
1145 sll %l1,16,%l1
[all …]
/openbsd/gnu/usr.bin/binutils-2.17/gas/config/
H A Dtc-sh.c888 if (l1 == '1') in parse_reg_without_prefix()
898 if (l1 >= '0' && l1 <= '9' in parse_reg_without_prefix()
927 if (l1 == '0') in parse_reg_without_prefix()
942 if (l1 == '1') in parse_reg_without_prefix()
975 int n = l1 - '0'; in parse_reg_without_prefix()
1005 if (l0 == 'x' && l1 >= '0' && l1 <= '1' in parse_reg_without_prefix()
1013 if (l0 == 'y' && l1 >= '0' && l1 <= '1' in parse_reg_without_prefix()
1021 if (l0 == 'm' && l1 >= '0' && l1 <= '1' in parse_reg_without_prefix()
1030 && l1 == 's' in parse_reg_without_prefix()
1448 char l0, l1; in parse_at() local
[all …]
H A Dtc-msp430.c1461 memset (l1, 0, sizeof (l1)); in msp430_operands()
1482 line = extract_operand (line, l1, sizeof (l1)); in msp430_operands()
1511 line = extract_operand (line, l1, sizeof (l1)); in msp430_operands()
1557 line = extract_operand (line, l1, sizeof (l1)); in msp430_operands()
1590 line = extract_operand (line, l1, sizeof (l1)); in msp430_operands()
1643 line = extract_operand (line, l1, sizeof (l1)); in msp430_operands()
1669 line = extract_operand (line, l1, sizeof (l1)); in msp430_operands()
1671 if (l1[0]) in msp430_operands()
1673 char *m = l1; in msp430_operands()
1761 line = extract_operand (line, l1, sizeof (l1)); in msp430_operands()
[all …]

123456789