Searched refs:here (Results 1 - 25 of 284) sorted by relevance

1234567891011>>

/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/providers/
H A Dtst.beginexit.d36 printf("shouldn't be here...");
37 here++;
42 exit(here);
/freebsd-11-stable/contrib/bmake/unit-tests/
H A Dexport-all.mk11 here := ${.PARSEDIR} macro
14 UT_BADDIR = ${${here}/../${here:T}:L:${M_tAbad}:T}
16 UT_OKDIR = ${${here}/../${here:T}:L:${M_tA}:T}
H A Dforsubst.mk5 here := ${.PARSEDIR} macro
8 for-subst: ${file:S;^;${here}/;g}
H A Dcond1.mk74 # We expect an extra else warning - we're not skipping here
84 # We expect an extra else warning - we are skipping here
/freebsd-11-stable/sys/contrib/zlib/
H A Dinftrees.c53 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
[all...]
H A Dinffast.c73 code 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
[all...]
H A Dinfback.c265 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
[all...]
H A Dinflate.c635 code here; /* current decoding table entry */ local
962 here = state->lencode[BITS(state->lenbits)];
963 if ((unsigned)(here.bits) <= bits) break;
966 if (here.val < 16) {
967 DROPBITS(here.bits);
968 state->lens[state->have++] = here.val;
971 if (here.val == 16) {
972 NEEDBITS(here.bits + 2);
973 DROPBITS(here.bits);
983 else if (here
[all...]
/freebsd-11-stable/contrib/apr/include/
H A Dapr_ring.h419 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) { \
[all...]
/freebsd-11-stable/sys/xen/interface/io/
H A Dprotocols.h39 # error arch fixup needed here
/freebsd-11-stable/stand/ficl/
H A Ddict.c89 pDict->here = (CELL *)pFW->name;
121 pDict->here = alignPtr(pDict->here);
132 char *cp = (char *)pDict->here;
152 pDict->here = PTRtoCELL cp;
168 pDict->here += nCells;
176 pDict->here -= nCells;
178 pDict->here -= dictCellsUsed(pDict);
181 pDict->here += nCells;
193 *pDict->here
[all...]
/freebsd-11-stable/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
[all...]
/freebsd-11-stable/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
[all...]
/freebsd-11-stable/sys/mips/mips/
H A Dinckern.S39 #error Need a kernel name here
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/gen/
H A Dt_dir.c56 long here; local
90 here = telldir(dp);
91 ATF_REQUIRE_MSG(here != -1, "telldir failed: %s", strerror(errno));
108 seekdir(dp, here);
116 seekdir(dp, here);
117 here = telldir(dp);
125 seekdir(dp, here);
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/
H A Dtst.badfreopen.ksh42 * ...so stdout should still be open here.
56 * ...and here.
/freebsd-11-stable/lib/libc/regex/
H A Dregexec.c115 /* do "if I'm here, I can also be there" etc without branches */
116 #define FWD(dst, src, n) ((dst) |= ((unsigned long)(src)&(here)) << (n))
117 #define BACK(dst, src, n) ((dst) |= ((unsigned long)(src)&(here)) >> (n))
118 #define ISSETBACK(v, n) (((v) & ((unsigned long)here >> (n))) != 0)
169 /* do "if I'm here, I can also be there" etc without branches */
170 #define FWD(dst, src, n) ((dst)[here+(n)] |= (src)[here])
171 #define BACK(dst, src, n) ((dst)[here-(n)] |= (src)[here])
172 #define ISSETBACK(v, n) ((v)[here
[all...]
/freebsd-11-stable/contrib/bmake/mk/
H A Dsrctop.mk46 here=`pwd`; \
47 ${_SRCTOP_TEST_} && { echo $$here; break; }; \
48 case $$here in /*/*/*) cd ..;; *) echo ""; break;; esac; \
/freebsd-11-stable/contrib/netbsd-tests/bin/sh/
H A Dt_cmdsub.sh377 atf_set "descr" "Checks that cmdsubs work inside a here document"
392 atf_set "descr" "Checks that old style cmdsubs work in here docs"
407 atf_set "descr" "Checks that here docs work inside cmd subs"
440 atf_set "descr" "Checks that here docs work inside old style cmd subs"
463 atf_set "descr" "Checks nested command substitutions in here docs"
490 atf_set "descr" "Checks nested old style cmd subs in here docs"
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
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_x/
H A Ddag_cache.c539 the caller such that we don't have to construct it here ourselves.
565 valid for later use, so don't call auto_clear_dag_cache() here. */
657 dag_node_t *here = NULL; /* The directory we're currently looking at. */
666 so we must check here for those that don't. */
701 here = dag_node_cache_get(root, &directory);
704 if (here)
705 return svn_error_trace(dag_step(node_p, root, here,
715 SVN_ERR(get_root_node(&here, root, change_set, iterpool));
727 SVN_ERR(dag_step(&here, root, here, entr
654 dag_node_t *here = NULL; /* The directory we're currently looking at. */ local
864 dag_node_t *here = NULL; /* The directory we're currently looking at. */ local
[all...]
/freebsd-11-stable/usr.sbin/ctm/ctm_rmail/
H A Dctm_rmail.c151 char here[PATH_MAX]; local
184 here[0] = '\0';
187 getcwd(here, sizeof(here)-1);
188 i = strlen(here) - 1;
189 if (i >= 0 && here[i] != '/')
191 here[++i] = '/';
192 here[++i] = '\0';
209 apply_verbose ? "-v " : "", here, fname);
/freebsd-11-stable/bin/sh/
H A Dparser.c82 struct heredoc *next; /* next here document in list */
83 union node *here; /* redirection node */ member in struct:heredoc
94 static struct heredoc *heredoclist; /* list of here documents to read */
502 * Newline or semicolon here is optional (but note
754 struct heredoc *here = heredoc; local
760 if (here->striptabs) {
767 here->eofmark = wordtext;
768 here->next = NULL;
770 heredoclist = here;
773 p->next = here;
790 struct heredoc *here; local
1095 struct heredoc *here; local
[all...]
/freebsd-11-stable/sys/netgraph/
H A Dng_base.c201 /* Method to find a node.. used twice so do it here */
223 static int ng_generic_msg(node_p here, item_p item, hook_p lasthook);
242 int ng_path2noderef(node_p here, const char *path,
749 * Theoretically we came here from a queue entry that was added
870 if (ng_decodeidname(name) != 0) { /* valid IDs not allowed here */
912 ng_name2noderef(node_p here, const char *name) argument
920 NG_NODE_REF(here);
921 return(here);
1360 * here. ng_destry_hook() has this effect but nothing else does.
1728 ng_path2noderef(node_p here, cons argument
2513 ng_generic_msg(node_p here, item_p item, hook_p lasthook) argument
3581 ng_address_hook(node_p here, item_p item, hook_p hook, ng_ID_t retaddr) argument
3617 ng_address_path(node_p here, item_p item, const char *address, ng_ID_t retaddr) argument
3642 ng_address_ID(node_p here, item_p item, ng_ID_t ID, ng_ID_t retaddr) argument
3669 ng_package_msg_self(node_p here, hook_p hook, struct ng_mesg *msg) argument
3847 ng_replace_retaddr(node_p here, item_p item, ng_ID_t retaddr) argument
[all...]
/freebsd-11-stable/contrib/gcc/config/i386/
H A Duwin.asm22 orl $0x0,(%ecx) /* less that 4k, just peek here */
/freebsd-11-stable/contrib/ntp/ntpdc/
H A DMakefile.am31 CLEANFILES= check-layout layout.here nl.c ntpdc-layout
128 layout.here: ntpdc-layout
131 check-layout: ntpdc-layout $(srcdir)/layout.std layout.here
132 cmp $(srcdir)/layout.std layout.here && echo stamp > $@

Completed in 215 milliseconds

1234567891011>>