Home
last modified time | relevance | path

Searched full:here (Results 1 – 25 of 7020) sorted by relevance

12345678910>>...281

/src/sys/contrib/zlib/
H A Dinfback.c201 code here; /* current decoding table entry */ in inflateBack() local
338 here = state->lencode[BITS(state->lenbits)]; in inflateBack()
339 if ((unsigned)(here.bits) <= bits) break; in inflateBack()
342 if (here.val < 16) { in inflateBack()
343 DROPBITS(here.bits); in inflateBack()
344 state->lens[state->have++] = here.val; in inflateBack()
347 if (here.val == 16) { in inflateBack()
348 NEEDBITS(here.bits + 2); in inflateBack()
349 DROPBITS(here.bits); in inflateBack()
360 else if (here.val == 17) { in inflateBack()
[all …]
H A Dinffast.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 …]
H A Dinftrees.c62 code here; /* table entry for duplication */ in inflate_table() local
127 here.op = (unsigned char)64; /* invalid code marker */ in inflate_table()
128 here.bits = (unsigned char)1; in inflate_table()
129 here.val = (unsigned short)0; in inflate_table()
130 *(*table)++ = here; /* make a table to force an error */ in inflate_table()
131 *(*table)++ = here; in inflate_table()
223 here.bits = (unsigned char)(len - drop); in inflate_table()
225 here.op = (unsigned char)0; in inflate_table()
226 here.val = work[sym]; in inflate_table()
229 here.op = (unsigned char)(extra[work[sym] - match]); in inflate_table()
[all …]
H A Dinflate.c484 code here; /* current decoding table entry */ in inflate() local
827 here = state->lencode[BITS(state->lenbits)]; in inflate()
828 if ((unsigned)(here.bits) <= bits) break; in inflate()
831 if (here.val < 16) { in inflate()
832 DROPBITS(here.bits); in inflate()
833 state->lens[state->have++] = here.val; in inflate()
836 if (here.val == 16) { in inflate()
837 NEEDBITS(here.bits + 2); in inflate()
838 DROPBITS(here.bits); in inflate()
849 else if (here.val == 17) { in inflate()
[all …]
/src/crypto/openssl/util/
H A Dopensslwrap.sh3 HERE="`echo $0 | sed -e 's|[^/]*$||'`"
4 OPENSSL="${HERE}../apps/openssl"
6 if [ -d "${HERE}../engines" -a "x$OPENSSL_ENGINES" = "x" ]; then
7 OPENSSL_ENGINES="${HERE}../engines"; export OPENSSL_ENGINES
9 if [ -d "${HERE}../providers" -a "x$OPENSSL_MODULES" = "x" ]; then
10 OPENSSL_MODULES="${HERE}../providers"; export OPENSSL_MODULES
22 PATH="${HERE}..:$PATH"; export PATH
25 elif [ -x "${OPENSSL}" -a -x "${HERE}shlib_wrap.sh" ]; then
26 exec "${HERE}shlib_wrap.sh" "${OPENSSL}" "$@"
H A Dfips-checksums.sh3 HERE=`dirname $0`
13 | $HERE/lang-compress.pl 'C' \
20 | $HERE/lang-compress.pl 'perl' \
26 | $HERE/lang-compress.pl 'S' \
/src/sys/contrib/openzfs/tests/zfs-tests/tests/functional/xattr/
H A Dxattr_011_pos.ksh76 # we should have no xattr here
80 # we should have an xattr here
84 # we should have no xattr here
88 # we should have no xattr here
154 # we should have no xattr here
159 # we should have no xattr here
164 # we should have an xattr here
169 # we should have no xattr here
188 # we should have no xattr here
193 # we should have an xattr here
[all …]
/src/bin/sh/tests/builtins/
H A Dtype1.01 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 Dtype1.0.stderr1 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
/src/crypto/openssl/crypto/x509/
H A Dx_attrib.c129 * GraphicString is needed here. in ossl_print_attribute_value()
139 /* EXTERNAL would go here. */ in ossl_print_attribute_value()
140 /* EMBEDDED PDV would go here. */ in ossl_print_attribute_value()
151 /* RELATIVE-OID would go here. */ in ossl_print_attribute_value()
152 /* TIME would go here. */ in ossl_print_attribute_value()
230 /* UniversalString would go here. */ in ossl_print_attribute_value()
231 /* CHARACTER STRING would go here. */ in ossl_print_attribute_value()
232 /* BMPString would go here. */ in ossl_print_attribute_value()
233 /* DATE would go here. */ in ossl_print_attribute_value()
234 /* TIME-OF-DAY would go here. */ in ossl_print_attribute_value()
[all …]
/src/usr.bin/tail/tests/
H A Dtail_test.sh48 cat > infile <<HERE heredoc
52 HERE
53 cat > expectfile << HERE heredoc
57 HERE
71 cat > infile <<HERE heredoc
75 HERE
76 cat > expectfile << HERE heredoc
79 HERE
95 cat > expectfile << HERE heredoc
100 HERE
[all …]
/src/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticASTKinds.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 …]
/src/share/doc/psd/22.rpcgen/
H A Drpcgen.ms85 to convert to run over the network. Here we will demonstrate such a
168 Here it is:
185 an entire remote program here which contains the single procedure
203 procedure itself. Here's the definition of a remote procedure
245 Notice here that the declaration of the remote procedure
267 finally the version number (here 1) is appended.
270 the remote procedure. Here it is:
365 There are two things to note here:
379 Here's how to put all of the pieces together:
387 Two programs were compiled here: the client program
[all …]
/src/usr.bin/csplit/tests/
H A Dcsplit_test.sh34 cat > expectfile00 << HERE heredoc
37 HERE
38 cat > expectfile01 << HERE heredoc
42 HERE
43 cat > expectfile02 << HERE heredoc
47 HERE
/src/tests/sys/cddl/zfs/tests/xattr/
H A Dxattr_011_pos.ksh82 # we should have no xattr here
86 # we should have an xattr here
90 # we should have no xattr here
94 # we should have no xattr here
151 # we should have no xattr here
156 # we should have no xattr here
162 # we should have an xattr here
167 # we should have no xattr here
180 # we should have no xattr here
185 # we should have an xattr here
[all …]
/src/contrib/bmake/unit-tests/
H A Dexport-all.mk11 here := ${.PARSEDIR}
14 UT_BADDIR= ${${here}/../${here:T}:L:${M_tAbad}:T}
16 UT_OKDIR= ${${here}/../${here:T}:L:${M_tA}:T}
/src/contrib/llvm-project/llvm/lib/Support/
H A Dregexec.c75 /* do "if I'm here, I can also be there" etc without branches */
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)
124 /* do "if I'm here, I can also be there" etc without branches */
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)])
136 * We put this here so we can exploit knowledge of the state representation
/src/contrib/nvi/regex/
H A Dregexec.c78 /* do "if I'm here, I can also be there" etc without branches */
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)))
127 /* do "if I'm here, I can also be there" etc without branches */
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)])
147 * We put this here so we can exploit knowledge of the state representation
/src/crypto/openssl/external/perl/Text-Template-1.56/t/
H A Dhash.t12 my $template = 'We will put value of $v (which is "good") here -> {$v}';
24 my $result2 = 'We will put value of $v (which is "good") here -> good';
32 my $result4 = 'We will put value of $v (which is "good") here -> good';
37 my $result5 = 'We will put value of $v (which is "good") here -> good';
45 my $result7 = 'We will put value of $v (which is "good") here -> good';
55 … my $template8 = 'We will put value of $v (which is "good") here -> {defined $v ? "bad" : "good"}';
56 my $result8 = 'We will put value of $v (which is "good") here -> good';
H A Dbasic.t18 We will put value of \$v (which is "abc") here -> {\$v}
19 We will evaluate 1+1 here -> {1 + 1}
46 We will put value of \$v (which is "abc") here -> abc
47 We will evaluate 1+1 here -> 2
51 We will put value of \$v (which is "abc") here -> ABC
52 We will evaluate 1+1 here -> 2
86 'We will put value of $v (which is "abc") here -> {$v}', "\n",
87 'We will evaluate 1+1 here -> {1+1}', "\n"
/src/sys/contrib/openzfs/config/
H A DShellcheck.am14 JUST_SHELLCHECK_OPTS = $(addprefix shellcheck-here-,$(subst /,^,$(1)))
15 JUST_CHECKBASHISMS_OPTS = $(addprefix checkbashisms-here-,$(subst /,^,$(1)))
24 _STGT = $(subst ^,/,$(subst shellcheck-here-,,$@))
25 shellcheck-here-%:
42 _BTGT = $(subst ^,/,$(subst checkbashisms-here-,,$@))
43 checkbashisms-here-%:
/src/lib/libc/regex/
H A Dregexec.c109 /* do "if I'm here, I can also be there" etc without branches */
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)
163 /* do "if I'm here, I can also be there" etc without branches */
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)])
196 * We put this here so we can exploit knowledge of the state representation
/src/contrib/libucl/tests/basic/
H A D18.res4 many = "values here";
10 many = "values here";
15 many = "values here";
21 many = "values here";
/src/usr.bin/column/tests/
H A Dcolumn.sh31 here lies the second input file
48 here lies the second input file and i have
70 here lies the second input file
85 this is the first input file it has multiple lines here lies the second input file
175 here there are four
183 here there are four
/src/stand/ficl/
H A Ddict.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 …]

12345678910>>...281