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

1234567891011

/freebsd-11.0-release/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.0-release/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.0-release/lib/libz/
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;
218 here.bits = (unsigned char)(len - drop);
220 here.op = (unsigned char)0;
221 here.val = work[sym];
224 here
[all...]
H A Dinffast.c90 code here; /* retrieved table entry */ local
127 here = lcode[hold & lmask];
129 op = (unsigned)(here.bits);
132 op = (unsigned)(here.op);
134 Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ?
136 "inflate: literal 0x%02x\n", here.val));
137 PUP(out) = (unsigned char)(here.val);
140 len = (unsigned)(here.val);
158 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.c618 code here; /* current decoding table entry */ local
939 here = state->lencode[BITS(state->lenbits)];
940 if ((unsigned)(here.bits) <= bits) break;
943 if (here.val < 16) {
944 DROPBITS(here.bits);
945 state->lens[state->have++] = here.val;
948 if (here.val == 16) {
949 NEEDBITS(here.bits + 2);
950 DROPBITS(here.bits);
960 else if (here
[all...]
/freebsd-11.0-release/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.0-release/sys/xen/interface/io/
H A Dprotocols.h39 # error arch fixup needed here
/freebsd-11.0-release/contrib/netbsd-tests/lib/libc/gen/
H A Dt_dir.c55 long here; local
72 here = telldir(dp);
84 seekdir(dp, here);
93 seekdir(dp, here);
94 here = telldir(dp);
103 seekdir(dp, here);
/freebsd-11.0-release/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-11.0-release/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-11.0-release/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.0-release/sys/mips/mips/
H A Dinckern.S39 #error Need a kernel name here
/freebsd-11.0-release/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.0-release/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.0-release/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.0-release/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.0-release/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.0-release/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
866 if (ng_decodeidname(name) != 0) { /* valid IDs not allowed here */
908 ng_name2noderef(node_p here, const char *name) argument
916 NG_NODE_REF(here);
917 return(here);
1356 * here. ng_destry_hook() has this effect but nothing else does.
1724 ng_path2noderef(node_p here, cons argument
2509 ng_generic_msg(node_p here, item_p item, hook_p lasthook) argument
3573 ng_address_hook(node_p here, item_p item, hook_p hook, ng_ID_t retaddr) argument
3609 ng_address_path(node_p here, item_p item, const char *address, ng_ID_t retaddr) argument
3634 ng_address_ID(node_p here, item_p item, ng_ID_t ID, ng_ID_t retaddr) argument
3661 ng_package_msg_self(node_p here, hook_p hook, struct ng_mesg *msg) argument
3835 ng_replace_retaddr(node_p here, item_p item, ng_ID_t retaddr) argument
[all...]
H A Dnetgraph.h118 ng_rcvmsg_t *hk_rcvmsg; /* control messages come here */
119 ng_rcvdata_t *hk_rcvdata; /* data comes here */
953 #define NG_SEND_MSG_HOOK(error, here, msg, hook, retaddr) \
961 if (((error) = ng_address_hook((here), (_item), \
969 #define NG_SEND_MSG_PATH(error, here, msg, path, retaddr) \
977 if (((error) = ng_address_path((here), (_item), \
985 #define NG_SEND_MSG_ID(error, here, msg, ID, retaddr) \
993 if (((error) = ng_address_ID((here), (_item), \
1006 #define NG_FWD_MSG_HOOK(error, here, item, hook, retaddr) \
1008 if (((error) = ng_address_hook((here), (ite
[all...]
/freebsd-11.0-release/contrib/gcc/config/i386/
H A Duwin.asm22 orl $0x0,(%ecx) /* less that 4k, just peek here */
/freebsd-11.0-release/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-11.0-release/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 289 milliseconds

1234567891011