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

1234567

/freebsd-10.1-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-10.1-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-10.1-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-10.1-release/sys/xen/interface/io/
H A Dprotocols.h40 # error arch fixup needed here
/freebsd-10.1-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-10.1-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...]
H A Dregengine.inc75 const char *offp; /* offsets work from here */
77 const char *endp; /* end of string -- virtual NUL here */
78 const char *coldp; /* can be no match starting before here */
260 /* despite initial appearances, there is no match here */
302 const char *stp; /* string matched by it cannot pass here */
859 onestate here; /* note, macros know this name */
863 for (pc = start, INIT(here, pc); pc != stop; pc++, INC(here)) {
900 case OBACK_: /* ignored here */
914 INIT(here, p
[all...]
/freebsd-10.1-release/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.1-release/sys/mips/mips/
H A Dinckern.S39 #error Need a kernel name here
/freebsd-10.1-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-10.1-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-10.1-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-10.1-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-10.1-release/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 */
467 * Newline or semicolon here is optional (but note
719 struct heredoc *here = heredoc; local
726 if (here->striptabs) {
733 here->eofmark = wordtext;
734 here->next = NULL;
736 heredoclist = here;
739 p->next = here;
756 struct heredoc *here; local
967 struct heredoc *here; local
[all...]
/freebsd-10.1-release/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
3833 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-10.1-release/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
H A Ddivsi3.S81 ! Here, the %o0 is >= 2��(31-4) or so. We must be careful here,
83 ! The total number of bits in the result here is 4*%o4+%g2, where
98 ! We're here if the %o1 overflowed when Shifting.
117 ! We have to be careful here. We know that %o3 >= %o5, so we can do the
/freebsd-10.1-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-10.1-release/contrib/ntp/ntpdc/
H A DMakefile.am28 CLEANFILES= check-layout layout.here nl.c ntpdc-layout
125 layout.here: ntpdc-layout
128 check-layout: ntpdc-layout $(srcdir)/layout.std layout.here
129 cmp $(srcdir)/layout.std layout.here && echo stamp > $@
/freebsd-10.1-release/contrib/unbound/util/storage/
H A Dlruhash.c471 int here = 0; local
476 here ++;
481 log_info("bin[%d] %d", (int)i, here);
482 if(here > max) max = here;
483 if(here < min) min = here;
/freebsd-10.1-release/contrib/amd/include/
H A Dmount_headers1.h179 # error do not include this file here because on *bsd it

Completed in 296 milliseconds

1234567