| /netbsd-src/external/bsd/less/dist/lesstest/lt/ |
| H A D | proc-special.lt | 33 here are _b_a_c_k spaces. 35 and some tabs here ok. 38 …here are @02back@00 spaces._______________________________________________________________________… 40 …here are @02back@00 spaces._______________________________________________________________________… 42 …here are @02back@00 spaces._______________________________________________________________________… 44 …here are @02back@00 spaces._______________________________________________________________________… 46 …here are @02back@00 spaces._______________________________________________________________________… 48 …here are @02back@00 spaces._______________________________________________________________________… 50 …here are @02back@00 spaces._______________________________________________________________________… 52 …here are @02b@06ack@04 s@00paces._________________________________________________________________… [all …]
|
| /netbsd-src/external/gpl3/binutils/dist/zlib/contrib/infback9/ |
| H A D | infback9.c | 244 code here; /* current decoding table entry */ local 385 here = lencode[BITS(lenbits)]; 386 if ((unsigned)(here.bits) <= bits) break; 389 if (here.val < 16) { 390 NEEDBITS(here.bits); 391 DROPBITS(here.bits); 392 state->lens[state->have++] = here.val; 395 if (here.val == 16) { 396 NEEDBITS(here.bits + 2); 397 DROPBITS(here.bits); [all …]
|
| /netbsd-src/external/gpl3/gdb/dist/zlib/contrib/infback9/ |
| H A D | infback9.c | 244 code here; /* current decoding table entry */ local 385 here = lencode[BITS(lenbits)]; 386 if ((unsigned)(here.bits) <= bits) break; 389 if (here.val < 16) { 390 NEEDBITS(here.bits); 391 DROPBITS(here.bits); 392 state->lens[state->have++] = here.val; 395 if (here.val == 16) { 396 NEEDBITS(here.bits + 2); 397 DROPBITS(here.bits); [all …]
|
| /netbsd-src/external/gpl3/binutils.old/dist/zlib/contrib/infback9/ |
| H A D | infback9.c | 244 code here; /* current decoding table entry */ local 385 here = lencode[BITS(lenbits)]; 386 if ((unsigned)(here.bits) <= bits) break; 389 if (here.val < 16) { 390 NEEDBITS(here.bits); 391 DROPBITS(here.bits); 392 state->lens[state->have++] = here.val; 395 if (here.val == 16) { 396 NEEDBITS(here.bits + 2); 397 DROPBITS(here.bits); [all …]
|
| /netbsd-src/external/gpl3/gdb.old/dist/zlib/contrib/infback9/ |
| H A D | infback9.c | 244 code here; /* current decoding table entry */ local 385 here = lencode[BITS(lenbits)]; 386 if ((unsigned)(here.bits) <= bits) break; 389 if (here.val < 16) { 390 NEEDBITS(here.bits); 391 DROPBITS(here.bits); 392 state->lens[state->have++] = here.val; 395 if (here.val == 16) { 396 NEEDBITS(here.bits + 2); 397 DROPBITS(here.bits); [all …]
|
| /netbsd-src/games/battlestar/ |
| H A D | room.c | 80 whichway(struct room here) in whichway() argument 85 left = here.west; in whichway() 86 right = here.east; in whichway() 87 ahead = here.north; in whichway() 88 back = here.south; in whichway() 92 left = here.east; in whichway() 93 right = here.west; in whichway() 94 ahead = here.south; in whichway() 95 back = here.north; in whichway() 99 left = here.north; in whichway() [all …]
|
| /netbsd-src/external/gpl3/gdb/dist/zlib/ |
| H A D | infback.c | 265 code here; /* current decoding table entry */ local 401 here = state->lencode[BITS(state->lenbits)]; 402 if ((unsigned)(here.bits) <= bits) break; 405 if (here.val < 16) { 406 DROPBITS(here.bits); 407 state->lens[state->have++] = here.val; 410 if (here.val == 16) { 411 NEEDBITS(here.bits + 2); 412 DROPBITS(here.bits); 422 else if (here.val == 17) { [all …]
|
| H A D | inftrees.c | 53 code here; /* table entry for duplication */ local 118 here.op = (unsigned char)64; /* invalid code marker */ 119 here.bits = (unsigned char)1; 120 here.val = (unsigned short)0; 121 *(*table)++ = here; /* make a table to force an error */ 122 *(*table)++ = here; 216 here.bits = (unsigned char)(len - drop); 218 here.op = (unsigned char)0; 219 here.val = work[sym]; 222 here.op = (unsigned char)(extra[work[sym] - match]); [all …]
|
| H A D | inffast.c | 73 code const *here; /* retrieved table entry */ local 110 here = lcode + (hold & lmask); 112 op = (unsigned)(here->bits); 115 op = (unsigned)(here->op); 117 Tracevv((stderr, here->val >= 0x20 && here->val < 0x7f ? 119 "inflate: literal 0x%02x\n", here->val)); 120 *out++ = (unsigned char)(here->val); 123 len = (unsigned)(here->val); 141 here = dcode + (hold & dmask); 143 op = (unsigned)(here->bits); [all …]
|
| H A D | inflate.c | 636 code here; /* current decoding table entry */ local 977 here = state->lencode[BITS(state->lenbits)]; 978 if ((unsigned)(here.bits) <= bits) break; 981 if (here.val < 16) { 982 DROPBITS(here.bits); 983 state->lens[state->have++] = here.val; 986 if (here.val == 16) { 987 NEEDBITS(here.bits + 2); 988 DROPBITS(here.bits); 998 else if (here.val == 17) { [all …]
|
| /netbsd-src/external/gpl3/binutils.old/dist/zlib/ |
| H A D | infback.c | 265 code here; /* current decoding table entry */ local 401 here = state->lencode[BITS(state->lenbits)]; 402 if ((unsigned)(here.bits) <= bits) break; 405 if (here.val < 16) { 406 DROPBITS(here.bits); 407 state->lens[state->have++] = here.val; 410 if (here.val == 16) { 411 NEEDBITS(here.bits + 2); 412 DROPBITS(here.bits); 422 else if (here.val == 17) { [all …]
|
| H A D | inftrees.c | 53 code here; /* table entry for duplication */ local 118 here.op = (unsigned char)64; /* invalid code marker */ 119 here.bits = (unsigned char)1; 120 here.val = (unsigned short)0; 121 *(*table)++ = here; /* make a table to force an error */ 122 *(*table)++ = here; 216 here.bits = (unsigned char)(len - drop); 218 here.op = (unsigned char)0; 219 here.val = work[sym]; 222 here.op = (unsigned char)(extra[work[sym] - match]); [all …]
|
| H A D | inffast.c | 73 code const *here; /* retrieved table entry */ local 110 here = lcode + (hold & lmask); 112 op = (unsigned)(here->bits); 115 op = (unsigned)(here->op); 117 Tracevv((stderr, here->val >= 0x20 && here->val < 0x7f ? 119 "inflate: literal 0x%02x\n", here->val)); 120 *out++ = (unsigned char)(here->val); 123 len = (unsigned)(here->val); 141 here = dcode + (hold & dmask); 143 op = (unsigned)(here->bits); [all …]
|
| H A D | inflate.c | 636 code here; /* current decoding table entry */ local 977 here = state->lencode[BITS(state->lenbits)]; 978 if ((unsigned)(here.bits) <= bits) break; 981 if (here.val < 16) { 982 DROPBITS(here.bits); 983 state->lens[state->have++] = here.val; 986 if (here.val == 16) { 987 NEEDBITS(here.bits + 2); 988 DROPBITS(here.bits); 998 else if (here.val == 17) { [all …]
|
| /netbsd-src/external/gpl3/binutils/dist/zlib/ |
| H A D | infback.c | 265 code here; /* current decoding table entry */ local 401 here = state->lencode[BITS(state->lenbits)]; 402 if ((unsigned)(here.bits) <= bits) break; 405 if (here.val < 16) { 406 DROPBITS(here.bits); 407 state->lens[state->have++] = here.val; 410 if (here.val == 16) { 411 NEEDBITS(here.bits + 2); 412 DROPBITS(here.bits); 422 else if (here.val == 17) { [all …]
|
| H A D | inftrees.c | 53 code here; /* table entry for duplication */ local 118 here.op = (unsigned char)64; /* invalid code marker */ 119 here.bits = (unsigned char)1; 120 here.val = (unsigned short)0; 121 *(*table)++ = here; /* make a table to force an error */ 122 *(*table)++ = here; 216 here.bits = (unsigned char)(len - drop); 218 here.op = (unsigned char)0; 219 here.val = work[sym]; 222 here.op = (unsigned char)(extra[work[sym] - match]); [all …]
|
| H A D | inffast.c | 73 code const *here; /* retrieved table entry */ local 110 here = lcode + (hold & lmask); 112 op = (unsigned)(here->bits); 115 op = (unsigned)(here->op); 117 Tracevv((stderr, here->val >= 0x20 && here->val < 0x7f ? 119 "inflate: literal 0x%02x\n", here->val)); 120 *out++ = (unsigned char)(here->val); 123 len = (unsigned)(here->val); 141 here = dcode + (hold & dmask); 143 op = (unsigned)(here->bits); [all …]
|
| H A D | inflate.c | 636 code here; /* current decoding table entry */ local 977 here = state->lencode[BITS(state->lenbits)]; 978 if ((unsigned)(here.bits) <= bits) break; 981 if (here.val < 16) { 982 DROPBITS(here.bits); 983 state->lens[state->have++] = here.val; 986 if (here.val == 16) { 987 NEEDBITS(here.bits + 2); 988 DROPBITS(here.bits); 998 else if (here.val == 17) { [all …]
|
| /netbsd-src/games/adventure/ |
| H A D | main.c | 201 if (limit <= 30 && here(batter) && prop[batter] == 0 in main() 202 && here(lamp)) { in main() 223 if (lmwarn || !here(lamp)) in main() 326 if (here(clam)) in main() 328 if (here(oyster)) in main() 334 if (obj != 0 && here(chain)) in main() 336 if (here(chain)) in main() 354 if (!here(food)) in main() 414 if (here(eggs)) in main() 427 if (here(magazine)) in main() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/ |
| H A D | atomic.d | 223 T atomicExchange(MemoryOrder ms = MemoryOrder.seq,T,V)(T* here, V exchangeWith) pure nothrow @nogc … 225 in (atomicPtrIsProperlyAligned(here), "Argument `here` is not properly aligned") in atomicPtrIsProperlyAligned() argument 233 IntTy r = core.internal.atomic.atomicExchange!ms(cast(IntTy*)here, *cast(IntTy*)&arg); in atomicPtrIsProperlyAligned() 237 return core.internal.atomic.atomicExchange!ms(here, arg); in atomicPtrIsProperlyAligned() 241 TailShared!T atomicExchange(MemoryOrder ms = MemoryOrder.seq,T,V)(shared(T)* here, V exchangeWith) … 243 in (atomicPtrIsProperlyAligned(here), "Argument `here` is not properly aligned") in atomicPtrIsProperlyAligned() argument 253 return atomicExchange!ms(cast(T*)here, *cast(Thunk*)&exchangeWith); in atomicPtrIsProperlyAligned() 257 shared(T) atomicExchange(MemoryOrder ms = MemoryOrder.seq,T,V)(shared(T)* here, shared(V) exchangeW… 259 in (atomicPtrIsProperlyAligned(here), "Argument `here` is not properly aligned") in atomicPtrIsProperlyAligned() argument 263 return cast(shared)core.internal.atomic.atomicExchange!ms(cast(T*)here, cast(V)exchangeWith); in atomicPtrIsProperlyAligned() [all …]
|
| /netbsd-src/external/gpl3/gdb/dist/sim/testsuite/bfin/ |
| H A D | cec-raise-reti.S | 47 # We activate the interrupt here ... 50 # ... but we should RETI here 58 # We activate the interrupt here ... 62 # ... but we should RETI here 73 # We activate the interrupt here ... 78 # ... but we should RETI here 89 # We activate the interrupt here ... 97 # ... but we should RETI here
|
| /netbsd-src/usr.bin/make/unit-tests/ |
| H A D | export-all.mk | 11 here := ${.PARSEDIR} 14 UT_BADDIR= ${${here}/../${here:T}:L:${M_tAbad}:T} 16 UT_OKDIR= ${${here}/../${here:T}:L:${M_tA}:T}
|
| /netbsd-src/tests/lib/libc/gen/ |
| H A D | t_dir.c | 56 long here; in ATF_TC_BODY() local 90 here = telldir(dp); in ATF_TC_BODY() 91 ATF_REQUIRE_MSG(here != -1, "telldir failed: %s", strerror(errno)); in ATF_TC_BODY() 108 seekdir(dp, here); in ATF_TC_BODY() 116 seekdir(dp, here); in ATF_TC_BODY() 117 here = telldir(dp); in ATF_TC_BODY() 125 seekdir(dp, here); in ATF_TC_BODY()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
| H A D | regexec.c | 76 #define FWD(dst, src, n) ((dst) |= ((unsigned long)(src)&(here)) << (n)) 77 #define BACK(dst, src, n) ((dst) |= ((unsigned long)(src)&(here)) >> (n)) 78 #define ISSETBACK(v, n) (((v) & ((unsigned long)here >> (n))) != 0) 125 #define FWD(dst, src, n) ((dst)[here+(n)] |= (src)[here]) 126 #define BACK(dst, src, n) ((dst)[here-(n)] |= (src)[here]) 127 #define ISSETBACK(v, n) ((v)[here - (n)])
|
| /netbsd-src/external/bsd/nvi/dist/regex/ |
| H A D | regexec.c | 91 #define FWD(dst, src, n) ((dst) |= ((unsigned)(src)&(here)) << (n)) 92 #define BACK(dst, src, n) ((dst) |= ((unsigned)(src)&(here)) >> (n)) 93 #define ISSETBACK(v, n) ((v) & ((unsigned)here >> (n))) 140 #define FWD(dst, src, n) ((dst)[here+(n)] |= (src)[here]) 141 #define BACK(dst, src, n) ((dst)[here-(n)] |= (src)[here]) 142 #define ISSETBACK(v, n) ((v)[here - (n)])
|