Home
last modified time | relevance | path

Searched refs:here (Results 1 – 25 of 1477) sorted by relevance

12345678910>>...60

/freebsd-14-stable/sys/contrib/zlib/
HDinfback.c252 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 …]
HDinftrees.c48 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 …]
HDinffast.c70 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 …]
HDinflate.c600 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-14-stable/stand/ficl/
HDdict.c88 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-14-stable/contrib/bmake/unit-tests/
HDexport-all.mk11 here := ${.PARSEDIR}
14 UT_BADDIR= ${${here}/../${here:T}:L:${M_tAbad}:T}
16 UT_OKDIR= ${${here}/../${here:T}:L:${M_tA}:T}
/freebsd-14-stable/contrib/llvm-project/llvm/lib/Support/
HDregexec.c76 #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-14-stable/contrib/nvi/regex/
HDregexec.c79 #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-14-stable/contrib/netbsd-tests/lib/libc/gen/
HDt_dir.c56 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-14-stable/contrib/libucl/tests/basic/
HD18.res4 many = "values here";
10 many = "values here";
15 many = "values here";
21 many = "values here";
/freebsd-14-stable/sys/contrib/openzfs/config/
HDShellcheck.am13 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-14-stable/tools/test/stress2/misc/
HDbadcode3.sh47 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
HDsetrlimit.sh152 here=`pwd`
164 cd $here
173 cd $here
182 cd $here
189 cd $here
HDsigstop.sh36 here=`pwd`
38 sed '1,/^EOF/d' < $here/$0 > sigstop.c
41 cd $here
HDjexec.sh43 here=`pwd`
45 (cd $here/../testcases/swap; ./swap -t 2m -i 20) &
57 cd $here
HDfdgrowtable.sh37 here=`pwd`
39 sed '1,/^EOF/d' < $here/$0 > fdgrowtable.c
42 cd $here
HDfpu.sh33 here=`pwd`
35 sed '1,/^EOF/d' < $here/$0 > fpu.c
44 cd $here
/freebsd-14-stable/lib/libc/regex/
HDregexec.c115 #define FWD(dst, src, n) ((dst) |= ((unsigned long)(src)&(here)) << (n))
116 #define BACK(dst, src, n) ((dst) |= ((unsigned long)(src)&(here)) >> (n))
117 #define ISSETBACK(v, n) (((v) & ((unsigned long)here >> (n))) != 0)
169 #define FWD(dst, src, n) ((dst)[here+(n)] |= (src)[here])
170 #define BACK(dst, src, n) ((dst)[here-(n)] |= (src)[here])
171 #define ISSETBACK(v, n) ((v)[here - (n)])
/freebsd-14-stable/contrib/llvm-project/libcxx/modules/std.compat/
HDcinttypes.inc20 // 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.
HDcuchar.inc14 // mbstate_t is conditionally here, but always present in cwchar.cppm. To avoid
15 // conflicing declarations omit the using here.
17 // size_t is conditionally here, but always present in cstddef.cppm. To avoid
18 // conflicing declarations omit the using here.
/freebsd-14-stable/contrib/llvm-project/libcxx/modules/std/
HDcinttypes.inc20 // 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.
HDcuchar.inc14 // mbstate_t is conditionally here, but always present in cwchar.cppm. To avoid
15 // conflicing declarations omit the using here.
17 // size_t is conditionally here, but always present in cstddef.cppm. To avoid
18 // conflicing declarations omit the using here.
/freebsd-14-stable/contrib/netbsd-tests/bin/sh/
HDt_cmdsub.sh562 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-14-stable/sys/netgraph/
HDng_base.c224 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-14-stable/contrib/llvm-project/clang/include/clang/Basic/
HDDiagnosticASTKinds.td78 "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 …]

12345678910>>...60