| /freebsd-12-stable/sys/contrib/zlib/ |
| D | infback.c | 266 code here; /* current decoding table entry */ local 402 here = state->lencode[BITS(state->lenbits)]; 403 if ((unsigned)(here.bits) <= bits) break; 406 if (here.val < 16) { 407 DROPBITS(here.bits); 408 state->lens[state->have++] = here.val; 411 if (here.val == 16) { 412 NEEDBITS(here.bits + 2); 413 DROPBITS(here.bits); 423 else if (here.val == 17) { [all …]
|
| 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 …]
|
| 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 …]
|
| D | inflate.c | 638 code here; /* current decoding table entry */ local 980 here = state->lencode[BITS(state->lenbits)]; 981 if ((unsigned)(here.bits) <= bits) break; 984 if (here.val < 16) { 985 DROPBITS(here.bits); 986 state->lens[state->have++] = here.val; 989 if (here.val == 16) { 990 NEEDBITS(here.bits + 2); 991 DROPBITS(here.bits); 1001 else if (here.val == 17) { [all …]
|
| /freebsd-12-stable/contrib/apr/include/ |
| D | apr_ring.h | 419 struct elem *here = start; \ 422 fprintf(stderr, "\telem %p\n", here); \ 424 APR_RING_NEXT(here, link)); \ 426 APR_RING_PREV(here, link)); \ 428 APR_RING_PREV(APR_RING_NEXT(here, link), link)); \ 430 APR_RING_NEXT(APR_RING_PREV(here, link), link)); \ 431 if (APR_RING_PREV(APR_RING_NEXT(here, link), link) != here) { \ 435 if (APR_RING_NEXT(APR_RING_PREV(here, link), link) != here) { \ 439 here = APR_RING_NEXT(here, link); \ 440 } while (here != start); \ [all …]
|
| /freebsd-12-stable/stand/ficl/ |
| D | dict.c | 89 pDict->here = (CELL *)pFW->name; in dictAbortDefinition() 121 pDict->here = alignPtr(pDict->here); in dictAlign() 132 char *cp = (char *)pDict->here; in dictAllot() 152 pDict->here = PTRtoCELL cp; in dictAllot() 168 pDict->here += nCells; in dictAllotCells() 176 pDict->here -= nCells; in dictAllotCells() 178 pDict->here -= dictCellsUsed(pDict); in dictAllotCells() 181 pDict->here += nCells; in dictAllotCells() 193 *pDict->here++ = c; in dictAppendCell() 204 char *cp = (char *)pDict->here; in dictAppendChar() [all …]
|
| /freebsd-12-stable/bin/sh/tests/builtins/ |
| D | type1.0 | 2 command -v not-here && exit 1 3 command -v /not-here && exit 1 4 command -V not-here && exit 1 5 command -V /not-here && exit 1 6 type not-here && exit 1 7 type /not-here && exit 1
|
| D | type1.0.stderr | 1 not-here: not found 2 /not-here: No such file or directory 3 not-here: not found 4 /not-here: No such file or directory
|
| /freebsd-12-stable/contrib/bmake/unit-tests/ |
| 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}
|
| /freebsd-12-stable/contrib/nvi/regex/ |
| D | regexec.c | 79 #define FWD(dst, src, n) ((dst) |= ((unsigned)(src)&(here)) << (n)) 80 #define BACK(dst, src, n) ((dst) |= ((unsigned)(src)&(here)) >> (n)) 81 #define ISSETBACK(v, n) ((v) & ((unsigned)here >> (n))) 128 #define FWD(dst, src, n) ((dst)[here+(n)] |= (src)[here]) 129 #define BACK(dst, src, n) ((dst)[here-(n)] |= (src)[here]) 130 #define ISSETBACK(v, n) ((v)[here - (n)])
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/ |
| 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)])
|
| /freebsd-12-stable/contrib/netbsd-tests/lib/libc/gen/ |
| 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()
|
| /freebsd-12-stable/contrib/libucl/tests/basic/ |
| D | 18.res | 4 many = "values here"; 10 many = "values here"; 15 many = "values here"; 21 many = "values here";
|
| /freebsd-12-stable/lib/libc/regex/ |
| D | regexec.c | 118 #define FWD(dst, src, n) ((dst) |= ((unsigned long)(src)&(here)) << (n)) 119 #define BACK(dst, src, n) ((dst) |= ((unsigned long)(src)&(here)) >> (n)) 120 #define ISSETBACK(v, n) (((v) & ((unsigned long)here >> (n))) != 0) 172 #define FWD(dst, src, n) ((dst)[here+(n)] |= (src)[here]) 173 #define BACK(dst, src, n) ((dst)[here-(n)] |= (src)[here]) 174 #define ISSETBACK(v, n) ((v)[here - (n)])
|
| /freebsd-12-stable/contrib/netbsd-tests/bin/sh/ |
| D | t_cmdsub.sh | 562 atf_check -s exit:0 -o inline:'D.1: here-doc with )\n' \ 566 D.1: here-doc with ) 572 atf_check -s exit:0 -o inline:'D.3: here-doc with \()\n' \ 576 D.3: here-doc with \() 581 -o inline:'E: here-doc terminated with a parenthesis ("academic")\n' \ 585 E: here-doc terminated with a parenthesis ("academic") 590 -o inline:'F.1: here-doc embed with unbal single, back- or doublequote '\''\n' \ 594 F.1: here-doc embed with unbal single, back- or doublequote '\'' 598 -o inline:'F.2: here-doc embed with unbal single, back- or doublequote "\n' \ 606 -o inline:'F.3: here-doc embed with unbal single, back- or doublequote `\n' \ [all …]
|
| /freebsd-12-stable/contrib/apr-util/xml/ |
| D | NWGNUmakefile | 2 # Declare the sub-directories to be built here 158 # Declare all target files (you must add your files here) 162 # If there is an NLM target, put it here 168 # If there is an LIB target, put it here 196 # If the nlm has a msg file, put it's path here 201 # If the nlm has a hlp file put it's path here 211 # Any additional imports go here 217 # Any symbols exported to here 248 # Any specialized rules here
|
| /freebsd-12-stable/contrib/apr-util/dbm/ |
| D | NWGNUdbmdb | 2 # Declare the sub-directories to be built here 26 # for now defined here - should finally go into build/NWGNUenvironment.inc 181 # If there is an NLM target, put it here 188 # If there is an LIB target, put it here 231 # If the nlm has a msg file, put it's path here 236 # If the nlm has a hlp file put it's path here 246 # Any additional imports go here 260 # Any symbols exported to here 288 # Any specialized rules here
|
| D | NWGNUdbmgdbm | 2 # Declare the sub-directories to be built here 26 # for now defined here - should finally go into build/NWGNUenvironment.inc 180 # If there is an NLM target, put it here 187 # If there is an LIB target, put it here 230 # If the nlm has a msg file, put it's path here 235 # If the nlm has a hlp file put it's path here 245 # Any additional imports go here 259 # Any symbols exported to here 287 # Any specialized rules here
|
| D | NWGNUmakefile | 2 # Declare the sub-directories to be built here 152 # If there is an NLM target, put it here 165 # If there is an LIB target, put it here 192 # If the nlm has a msg file, put it's path here 197 # If the nlm has a hlp file put it's path here 207 # Any additional imports go here 213 # Any symbols exported to here 241 # Any specialized rules here
|
| /freebsd-12-stable/contrib/apr-util/ldap/ |
| D | NWGNUmakefile | 2 # Declare the sub-directories to be built here 163 # Declare all target files (you must add your files here) 167 # If there is an NLM target, put it here 173 # If there is an LIB target, put it here 201 # If the nlm has a msg file, put it's path here 206 # If the nlm has a hlp file put it's path here 216 # Any additional imports go here 222 # Any symbols exported to here 254 # Any specialized rules here
|
| /freebsd-12-stable/contrib/apr-util/dbd/ |
| D | NWGNUdbdsqli3 | 2 # Declare the sub-directories to be built here 28 # for now defined here - should finally go into build/NWGNUenvironment.inc 178 # If there is an NLM target, put it here 185 # If there is an LIB target, put it here 228 # If the nlm has a msg file, put it's path here 233 # If the nlm has a hlp file put it's path here 243 # Any additional imports go here 259 # Any symbols exported to here 287 # Any specialized rules here
|
| D | NWGNUdbdpgsql | 2 # Declare the sub-directories to be built here 28 # for now defined here - should finally go into build/NWGNUenvironment.inc 183 # If there is an NLM target, put it here 190 # If there is an LIB target, put it here 233 # If the nlm has a msg file, put it's path here 238 # If the nlm has a hlp file put it's path here 248 # Any additional imports go here 262 # Any symbols exported to here 290 # Any specialized rules here
|
| D | NWGNUdbdsqli2 | 2 # Declare the sub-directories to be built here 28 # for now defined here - should finally go into build/NWGNUenvironment.inc 178 # If there is an NLM target, put it here 185 # If there is an LIB target, put it here 228 # If the nlm has a msg file, put it's path here 233 # If the nlm has a hlp file put it's path here 243 # Any additional imports go here 257 # Any symbols exported to here 285 # Any specialized rules here
|
| /freebsd-12-stable/contrib/apr-util/test/ |
| D | NWGNUmakefile | 2 # Declare the sub-directories to be built here 160 # Declare all target files (you must add your files here) 164 # If there is an NLM target, put it here 171 # If there is an LIB target, put it here 199 # If the nlm has a msg file, put it's path here 204 # If the nlm has a hlp file put it's path here 214 # Any additional imports go here 220 # Any symbols exported to here 249 # Any specialized rules here
|
| /freebsd-12-stable/contrib/apr-util/dbd/unsupported/ |
| D | NWGNUdbdfreetds | 2 # Declare the sub-directories to be built here 28 # for now defined here - should finally go into build/NWGNUenvironment.inc 178 # If there is an NLM target, put it here 185 # If there is an LIB target, put it here 228 # If the nlm has a msg file, put it's path here 233 # If the nlm has a hlp file put it's path here 243 # Any additional imports go here 257 # Any symbols exported to here 285 # Any specialized rules here
|