/freebsd/sys/contrib/zlib/ |
H A D | infback.c | 252 code here; /* current decoding table entry */ in inflateBack() local 388 here = state->lencode[BITS(state->lenbits)]; in inflateBack() 389 if ((unsigned)(here.bits) <= bits) break; in inflateBack() 392 if (here.val < 16) { in inflateBack() 393 DROPBITS(here.bits); in inflateBack() 394 state->lens[state->have++] = here.val; in inflateBack() 397 if (here.val == 16) { in inflateBack() 398 NEEDBITS(here.bits + 2); in inflateBack() 399 DROPBITS(here.bits); in inflateBack() 409 else if (here.val == 17) { in inflateBack() [all …]
|
H A D | inftrees.c | 48 code here; /* table entry for duplication */ in inflate_table() local 113 here.op = (unsigned char)64; /* invalid code marker */ in inflate_table() 114 here.bits = (unsigned char)1; in inflate_table() 115 here.val = (unsigned short)0; in inflate_table() 116 *(*table)++ = here; /* make a table to force an error */ in inflate_table() 117 *(*table)++ = here; in inflate_table() 211 here.bits = (unsigned char)(len - drop); in inflate_table() 213 here.op = (unsigned char)0; in inflate_table() 214 here.val = work[sym]; in inflate_table() 217 here.op = (unsigned char)(extra[work[sym] - match]); in inflate_table() [all …]
|
H A D | inffast.c | 70 code const *here; /* retrieved table entry */ in inflate_fast() local 107 here = lcode + (hold & lmask); in inflate_fast() 109 op = (unsigned)(here->bits); in inflate_fast() 112 op = (unsigned)(here->op); in inflate_fast() 114 Tracevv((stderr, here->val >= 0x20 && here->val < 0x7f ? in inflate_fast() 116 "inflate: literal 0x%02x\n", here->val)); in inflate_fast() 117 *out++ = (unsigned char)(here->val); in inflate_fast() 120 len = (unsigned)(here->val); in inflate_fast() 138 here = dcode + (hold & dmask); in inflate_fast() 140 op = (unsigned)(here->bits); in inflate_fast() [all …]
|
H A D | inflate.c | 600 code here; /* current decoding table entry */ in inflate() local 942 here = state->lencode[BITS(state->lenbits)]; in inflate() 943 if ((unsigned)(here.bits) <= bits) break; in inflate() 946 if (here.val < 16) { in inflate() 947 DROPBITS(here.bits); in inflate() 948 state->lens[state->have++] = here.val; in inflate() 951 if (here.val == 16) { in inflate() 952 NEEDBITS(here.bits + 2); in inflate() 953 DROPBITS(here.bits); in inflate() 963 else if (here.val == 17) { in inflate() [all …]
|
/freebsd/stand/ficl/ |
H A D | dict.c | 88 pDict->here = (CELL *)pFW->name; in dictAbortDefinition() 120 pDict->here = alignPtr(pDict->here); in dictAlign() 131 char *cp = (char *)pDict->here; in dictAllot() 151 pDict->here = PTRtoCELL cp; in dictAllot() 167 pDict->here += nCells; in dictAllotCells() 175 pDict->here -= nCells; in dictAllotCells() 177 pDict->here -= dictCellsUsed(pDict); in dictAllotCells() 180 pDict->here += nCells; in dictAllotCells() 192 *pDict->here++ = c; in dictAppendCell() 203 char *cp = (char *)pDict->here; in dictAppendChar() [all …]
|
/freebsd/bin/sh/tests/builtins/ |
H A D | type1.0 | 1 command -v not-here && exit 1 2 command -v /not-here && exit 1 3 command -V not-here && exit 1 4 command -V /not-here && exit 1 5 type not-here && exit 1 6 type /not-here && exit 1
|
H A 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/contrib/bmake/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}
|
/freebsd/contrib/nvi/regex/ |
H A 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/contrib/llvm-project/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)])
|
/freebsd/contrib/netbsd-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()
|
/freebsd/contrib/libucl/tests/basic/ |
H A D | 18.res | 4 many = "values here"; 10 many = "values here"; 15 many = "values here"; 21 many = "values here";
|
/freebsd/lib/libc/regex/ |
H A D | regexec.c | 110 #define FWD(dst, src, n) ((dst) |= ((unsigned long)(src)&(here)) << (n)) 111 #define BACK(dst, src, n) ((dst) |= ((unsigned long)(src)&(here)) >> (n)) 112 #define ISSETBACK(v, n) (((v) & ((unsigned long)here >> (n))) != 0) 164 #define FWD(dst, src, n) ((dst)[here+(n)] |= (src)[here]) 165 #define BACK(dst, src, n) ((dst)[here-(n)] |= (src)[here]) 166 #define ISSETBACK(v, n) ((v)[here - (n)])
|
/freebsd/sys/contrib/openzfs/config/ |
H A D | Shellcheck.am | 13 JUST_SHELLCHECK_OPTS = $(addprefix shellcheck-here-,$(subst /,^,$(1))) 14 JUST_CHECKBASHISMS_OPTS = $(addprefix checkbashisms-here-,$(subst /,^,$(1))) 19 _STGT = $(subst ^,/,$(subst shellcheck-here-,,$@)) 20 shellcheck-here-%: 33 _BTGT = $(subst ^,/,$(subst checkbashisms-here-,,$@)) 34 checkbashisms-here-%:
|
/freebsd/tools/test/stress2/misc/ |
H A D | badcode3.sh | 47 here=`pwd` 49 (cd $here/../testcases/swap; ./swap -t 5m -i 20) & 53 "timeout 1m limits -c 0 $here/../testcases/badcode/badcode -t 1m -i 20" 56 cd $here
|
H A D | setrlimit.sh | 152 here=`pwd` 164 cd $here 173 cd $here 182 cd $here 189 cd $here
|
H A D | zfs16.sh | 11 here=`pwd` 13 sed '1,/^EOF/d' < $here/datamove.sh > zfs16.c 34 (cd $here/../testcases/swap; ./swap -t 2m -i 20 -l 100 -h > /dev/null) & 41 cd $here
|
H A D | sigstop.sh | 36 here=`pwd` 38 sed '1,/^EOF/d' < $here/$0 > sigstop.c 41 cd $here
|
/freebsd/contrib/llvm-project/libcxx/modules/std.compat/ |
H A D | cinttypes.inc | 20 // abs is conditionally here, but always present in cmath.cppm. To avoid 21 // conflicing declarations omit the using here. 23 // div is conditionally here, but always present in cstdlib.cppm. To avoid 24 // conflicing declarations omit the using here.
|
/freebsd/contrib/netbsd-tests/bin/sh/ |
H A 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/contrib/llvm-project/libcxx/modules/std/ |
H A D | cinttypes.cppm |
|
H A D | cinttypes.inc | 20 // abs is conditionally here, but always present in cmath.cppm. To avoid 21 // conflicing declarations omit the using here. 23 // div is conditionally here, but always present in cstdlib.cppm. To avoid 24 // conflicing declarations omit the using here.
|
H A D | cuchar.cppm |
|
/freebsd/sys/netgraph/ |
H A D | ng_base.c | 224 static int ng_generic_msg(node_p here, item_p item, hook_p lasthook); 243 int ng_path2noderef(node_p here, const char *path, 913 ng_name2noderef(node_p here, const char *name) in ng_name2noderef() argument 921 NG_NODE_REF(here); in ng_name2noderef() 922 return(here); in ng_name2noderef() 1728 ng_path2noderef(node_p here, const char *address, node_p *destp, in ng_path2noderef() argument 1758 node = ng_name2noderef(here, nodename); in ng_path2noderef() 1764 if (here == NULL) { in ng_path2noderef() 1768 node = here; in ng_path2noderef() 2512 ng_generic_msg(node_p here, item_p item, hook_p lasthook) in ng_generic_msg() argument [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | DiagnosticASTKinds.td | 78 "subobject declared here">; 153 def note_constexpr_temporary_here : Note<"temporary created here">; 154 def note_constexpr_dynamic_alloc_here : Note<"heap allocation performed here">; 196 "volatile %select{temporary created|object declared|member declared}0 here">; 394 "allocation performed here was not deallocated" 465 def note_odr_value_here : Note<"declared here with type %0">; 481 "%0 is a %select{struct|interface|union|class|enum}1 here">; 482 def note_odr_field : Note<"field %0 has type %1 here">; 483 def note_odr_field_name : Note<"field has name %0 here">; 484 def note_odr_missing_field : Note<"no corresponding field here">; [all …]
|