/openbsd/gnu/usr.bin/binutils/gdb/testsuite/gdb.base/ |
H A D | restore.c | 133 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 D | cast_local.h | 67 #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 D | rc2_local.h | 67 #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 D | bf_local.h | 65 #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 D | idea_local.h | 83 #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 D | wcscasecmp.c | 35 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 D | wcscasecmp_l.c | 35 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 D | ecb3_enc.c | 57 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 D | ed.c | 39 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 D | ldasm.S | 170 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 D | lstConcatDestroy.c | 57 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 D | lstConcat.c | 60 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 D | sanitizer_list_test.cpp | 143 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 D | sanitizer_deadlock_detector_test.cpp | 143 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/lib/libcrypto/des/ |
H A D | des_local.h | 83 #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/usr.bin/gcc/gcc/testsuite/gcc.dg/ |
H A D | 20021029-1.c | 9 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 D | labels-3.c | 5 static const short ar[] = { &&l1 - &&l1, &&l2 - &&l1 }; in foo() 6 void *p = &&l1 + ar[a]; in foo() 8 l1: in foo()
|
H A D | 20000518-1.c | 5 __label__ l1; in test() local 7 callit1(&&l1); in test() 9 l1: in test()
|
/openbsd/gnu/lib/libstdc++/libstdc++/testsuite/22_locale/ |
H A D | collate_members_char.cc | 78 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 D | collate_members_wchar_t.cc | 78 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 D | tsan_fd.cpp | 84 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 D | tc-msp430.c | 516 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 D | aes-sparcv9.pl | 44 $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 D | tc-sh.c | 888 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 D | tc-msp430.c | 1461 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 …]
|