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

12345678

/freebsd-10-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-10-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-10-stable/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-10-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-10-stable/sys/xen/interface/io/
H A Dprotocols.h40 # error arch fixup needed here
/freebsd-10-stable/sys/boot/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-10-stable/contrib/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-10-stable/contrib/nvi/regex/
H A Dregexec.c86 /* do "if I'm here, I can also be there" etc without branches */
87 #define FWD(dst, src, n) ((dst) |= ((unsigned)(src)&(here)) << (n))
88 #define BACK(dst, src, n) ((dst) |= ((unsigned)(src)&(here)) >> (n))
89 #define ISSETBACK(v, n) ((v) & ((unsigned)here >> (n)))
135 /* do "if I'm here, I can also be there" etc without branches */
136 #define FWD(dst, src, n) ((dst)[here+(n)] |= (src)[here])
137 #define BACK(dst, src, n) ((dst)[here-(n)] |= (src)[here])
138 #define ISSETBACK(v, n) ((v)[here
[all...]
/freebsd-10-stable/sys/mips/mips/
H A Dinckern.S39 #error Need a kernel name here
/freebsd-10-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-10-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-10-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-10-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-10-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-10-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-10-stable/bin/sh/
H A Dparser.c83 struct heredoc *next; /* next here document in list */
84 union node *here; /* redirection node */ member in struct:heredoc
95 static struct heredoc *heredoclist; /* list of here documents to read */
500 * Newline or semicolon here is optional (but note
752 struct heredoc *here = heredoc; local
759 if (here->striptabs) {
766 here->eofmark = wordtext;
767 here->next = NULL;
769 heredoclist = here;
772 p->next = here;
789 struct heredoc *here; local
1000 struct heredoc *here; local
[all...]
/freebsd-10-stable/sys/netgraph/
H A Dng_base.c195 /* Method to find a node.. used twice so do it here */
217 static int ng_generic_msg(node_p here, item_p item, hook_p lasthook);
236 int ng_path2noderef(node_p here, const char *path,
743 * Theoretically we came here from a queue entry that was added
860 if (ng_decodeidname(name) != 0) { /* valid IDs not allowed here */
902 ng_name2noderef(node_p here, const char *name) argument
910 NG_NODE_REF(here);
911 return(here);
1350 * here. ng_destry_hook() has this effect but nothing else does.
1718 ng_path2noderef(node_p here, cons argument
2503 ng_generic_msg(node_p here, item_p item, hook_p lasthook) argument
3571 ng_address_hook(node_p here, item_p item, hook_p hook, ng_ID_t retaddr) argument
3607 ng_address_path(node_p here, item_p item, const char *address, ng_ID_t retaddr) argument
3632 ng_address_ID(node_p here, item_p item, ng_ID_t ID, ng_ID_t retaddr) argument
3659 ng_package_msg_self(node_p here, hook_p hook, struct ng_mesg *msg) argument
3837 ng_replace_retaddr(node_p here, item_p item, ng_ID_t retaddr) argument
[all...]
/freebsd-10-stable/contrib/compiler-rt/lib/sparc64/
H A Ddivmod.m4140 ! Here, the dividend is >= 2��(31-N) or so. We must be careful here,
142 ! The total number of bits in the result here is N*ITER+SC, where
157 ! We're here if the divisor overflowed when Shifting.
176 ! We have to be careful here. We know that R >= V, so we can do the
/freebsd-10-stable/sys/cddl/contrib/opensolaris/uts/common/sys/
H A Davl.h180 * or before the data "here".
186 * here - existing node in "tree"
187 * direction - either AVL_AFTER or AVL_BEFORE the data "here".
189 extern void avl_insert_here(avl_tree_t *tree, void *new_data, void *here,
/freebsd-10-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 153 milliseconds

12345678