| /openbsd/src/gnu/usr.bin/binutils/gdb/testsuite/gdb.base/ |
| D | restore.c | 132 register int l1 = increment (n); /* callee1 prologue */ in callee1() local 133 return l1; in callee1() 140 register int l1 = increment (n); /* callee2 prologue */ in callee2() local 141 register int l2 = increment (l1); in callee2() 142 return l1+l2; in callee2() 149 register int l1 = increment (n); /* callee3 prologue */ in callee3() local 150 register int l2 = increment (l1); in callee3() 152 return l1+l2+l3; in callee3() 159 register int l1 = increment (n); /* callee4 prologue */ in callee4() local 160 register int l2 = increment (l1); in callee4() [all …]
|
| /openbsd/src/lib/libcrypto/cast/ |
| D | cast_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/src/lib/libcrypto/rc2/ |
| 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/src/lib/libcrypto/bf/ |
| 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/src/lib/libcrypto/idea/ |
| 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/src/lib/libc/string/ |
| 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()
|
| 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/src/sys/crypto/ |
| 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/src/gnu/usr.bin/cvs/diff/ |
| 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/src/libexec/ld.so/sparc64/ |
| 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/src/usr.bin/make/lst.lib/ |
| 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()
|
| 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/src/gnu/llvm/compiler-rt/lib/sanitizer_common/tests/ |
| 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() 158 SetList(&l1, x, y, z); in TEST() 160 l1.append_back(&l2); in TEST() [all …]
|
| 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() 260 uptr l1 = d.newNode(0); in RunMultipleEpochsTest() local 262 d.onLock(&dtls, l1); in RunMultipleEpochsTest() 303 uptr l1 = d.newNode(0); in RunCorrectEpochFlush() local 306 d.onLock(&dtls, l1); in RunCorrectEpochFlush() 326 uptr l1 = d.newNode(0); in RunTryLockTest() local [all …]
|
| /openbsd/src/lib/libcrypto/des/ |
| 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/src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/ |
| 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()
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/ |
| 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/src/gnu/lib/libstdc++/libstdc++/testsuite/22_locale/ |
| 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 …]
|
| 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 …]
|
| /openbsd/src/gnu/llvm/compiler-rt/lib/tsan/rtl/ |
| 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/src/gnu/usr.bin/binutils/gas/config/ |
| D | tc-msp430.c | 482 char l1[MAX_OP_LEN], l2[MAX_OP_LEN]; local 516 memset (l1, 0, sizeof (l1)); 536 line = extract_operand (line, l1, sizeof (l1)); 537 res = msp430_dstoperand (&op1, l1, opcode->bin_opcode); 564 line = extract_operand (line, l1, sizeof (l1)); 565 strncpy (l2, l1, sizeof (l2)); 567 res = msp430_srcoperand (&op1, l1, opcode->bin_opcode, &imm_op); 609 line = extract_operand (line, l1, sizeof (l1)); 611 res = msp430_srcoperand (&op1, l1, opcode->bin_opcode, &imm_op); 641 line = extract_operand (line, l1, sizeof (l1)); [all …]
|
| D | tc-sh.c | 878 char l1 = l0 ? TOLOWER (src[1]) : 0; in parse_reg() local 886 if (l1 == '1') in parse_reg() 896 if (l1 >= '0' && l1 <= '9' in parse_reg() 900 *reg = (l1 - '0'); in parse_reg() 903 if (l1 >= '0' && l1 <= '7' && strncasecmp (&src[2], "_bank", 5) == 0 in parse_reg() 907 *reg = (l1 - '0'); in parse_reg() 911 if (l1 == 'e' && ! IDENT_CHAR ((unsigned char) src[2])) in parse_reg() 916 if (l1 == 's' && ! IDENT_CHAR ((unsigned char) src[2])) in parse_reg() 925 if (l1 == '0') in parse_reg() 940 if (l1 == '1') in parse_reg() [all …]
|
| /openbsd/src/lib/libcrypto/aes/asm/ |
| D | aes-sparcv9.pl | 44 $acc4="%l1"; 554 ldub [%i0+1],%l1 559 sll %l1,16,%l1 562 or %l1,%l0,%l0 575 ldub [%i0+9],%l1 581 sll %l1,16,%l1 584 or %l1,%l0,%l0 608 srl %o0,16,%l1 611 stb %l1,[%i1+1] 624 srl %o2,16,%l1 [all …]
|
| /openbsd/src/gnu/usr.bin/binutils-2.17/gas/config/ |
| D | tc-sh.c | 880 char l1 = l0 ? TOLOWER (src[1]) : 0; in parse_reg_without_prefix() local 888 if (l1 == '1') in parse_reg_without_prefix() 898 if (l1 >= '0' && l1 <= '9' in parse_reg_without_prefix() 902 *reg = (l1 - '0'); in parse_reg_without_prefix() 905 if (l1 >= '0' && l1 <= '7' && strncasecmp (&src[2], "_bank", 5) == 0 in parse_reg_without_prefix() 909 *reg = (l1 - '0'); in parse_reg_without_prefix() 913 if (l1 == 'e' && ! IDENT_CHAR ((unsigned char) src[2])) in parse_reg_without_prefix() 918 if (l1 == 's' && ! IDENT_CHAR ((unsigned char) src[2])) in parse_reg_without_prefix() 927 if (l1 == '0') in parse_reg_without_prefix() 942 if (l1 == '1') in parse_reg_without_prefix() [all …]
|
| D | tc-msp430.c | 1427 char l1[MAX_OP_LEN], l2[MAX_OP_LEN]; in msp430_operands() local 1461 memset (l1, 0, sizeof (l1)); in msp430_operands() 1482 line = extract_operand (line, l1, sizeof (l1)); in msp430_operands() 1483 res = msp430_dstoperand (&op1, l1, opcode->bin_opcode); in msp430_operands() 1511 line = extract_operand (line, l1, sizeof (l1)); in msp430_operands() 1512 strncpy (l2, l1, sizeof (l2)); in msp430_operands() 1514 res = msp430_srcoperand (&op1, l1, opcode->bin_opcode, &imm_op); in msp430_operands() 1557 line = extract_operand (line, l1, sizeof (l1)); in msp430_operands() 1559 res = msp430_srcoperand (&op1, l1, opcode->bin_opcode, &imm_op); in msp430_operands() 1590 line = extract_operand (line, l1, sizeof (l1)); in msp430_operands() [all …]
|