HomeSort by: relevance | last modified time | path
    Searched defs:NEXT (Results 1 - 12 of 12) sorted by relevancy

  /src/usr.bin/make/unit-tests/
counter-append.mk 7 # 6 words, even though the NEXT variable was only accessed 3 times.
15 NEXT= ${COUNTER::+=a}${COUNTER:[#]}
19 A:= ${NEXT}
20 B:= ${NEXT}
21 C:= ${NEXT}
counter.mk 7 # 4 words, even though the NEXT variable was only accessed 3 times.
15 NEXT= ${COUNTER::=${COUNTER} a}${COUNTER:[#]}
19 A:= ${NEXT}
20 B:= ${NEXT}
21 C:= ${NEXT}
  /src/lib/libc/include/isc/
list.h 28 #define LINK(type) struct { type *prev, *next; }
32 (elt)->link.next = (type *)(-1); \
37 (void *)((elt)->link.next) != (void *)(-1))
51 (elt)->link.next = (list).head; \
59 (list).tail->link.next = (elt); \
63 (elt)->link.next = NULL; \
70 if ((elt)->link.next != NULL) \
71 (elt)->link.next->link.prev = (elt)->link.prev; \
77 (elt)->link.prev->link.next = (elt)->link.next; \
    [all...]
  /src/sys/arch/evbppc/virtex/dev/
pstwo.c 57 #define NEXT(idx) (void)((idx) = ((idx) + 1) % PSTWO_RXBUF_SIZE)
  /src/sys/dev/sun/
ms.c 334 /* NEXT prepares to put the next event, backing off if necessary */
335 #define NEXT \
356 NEXT;
365 NEXT;
373 NEXT;
  /src/sys/arch/sparc/dev/
ms_pckbport.c 239 /* NEXT prepares to put the next event, backing off if necessary */
240 #define NEXT do { \
264 NEXT;
274 NEXT;
283 NEXT;
  /src/common/dist/zlib/examples/
gun.c 93 unsigned char *next; local in function:in
96 next = me->inbuf;
97 *buf = next;
103 ret = (int)read(me->infile, next, ret);
108 next += ret;
154 /* next input byte macro for use inside lunpipe() and gunpipe() */
155 #define NEXT() (have ? 0 : (have = in(indp, &next)), \
156 last = have ? (have--, (int)(*next++)) : -1)
178 if (NEXT() == -1)
387 z_const unsigned char *next = NULL; local in function:gunpipe
    [all...]
  /src/sys/arch/x68k/dev/
ms.c 425 /* NEXT prepares to put the next event, backing off if necessary */
426 #define NEXT \
446 NEXT;
456 NEXT;
465 NEXT;
681 /* start next sequence */
  /src/lib/libcompat/regexp/
regexp.c 72 * plus a "next" pointer, possibly plus an operand. "Next" pointers of
73 * all nodes except BRANCH implement concatenation; a "next" pointer with
91 #define BRANCH 6 /* node Match this alternative, or the next... */
92 #define BACK 7 /* no Match "", "next" ptr points backward. */
107 * together with their "next" pointers, since precedence prevents
109 * "next" pointer of the last BRANCH in a choice points to the
111 * final "next" pointer of each individual branch points; each
114 * BACK Normal "next" pointers all implicitly point forward; BACK
126 * A node is one char of opcode followed by two chars of "next" pointer
420 char *next; local in function:regpiece
904 char *next; \/* Next node. *\/ local in function:regmatch
1174 char *next; local in function:regdump
    [all...]
  /src/usr.bin/msgs/
msgs.c 56 * n flush message, go to next message
104 #define NEXT "Next message? [yq]"
145 int next(char *, size_t);
543 ask(lct? MORE : (msg==lastmsg? NOMORE : NEXT));
580 msg = next(in, sizeof(inbuf) -
729 next(char *buf, size_t bufsiz) function in typeref:typename:int
904 if (*s) while (*s && *s <= ' ') s++; /* find start of next field */
  /src/sys/netinet6/
in6_src.c 156 #define NEXT(r) do {\
163 goto next; /* XXX: we can't use 'continue' here */ \
173 #define NEXT(r) goto next
249 NEXT(2);
252 NEXT(2);
262 NEXT(3);
266 NEXT(3);
292 NEXT(4);
309 NEXT(4)
    [all...]
  /src/lib/libc/regex/
regcomp.c 106 const char *next; /* next character in RE */ member in struct:parse
194 #define PEEK() (*p->next)
195 #define PEEK2() (*(p->next+1))
196 #define MORE() (p->next < p->end)
197 #define MORE2() (p->next+1 < p->end)
201 #define EAT(c) ((SEE(c)) ? (NEXT(), 1) : 0)
204 #define NEXT() (p->next++)
205 #define NEXT2() (p->next += 2
    [all...]

Completed in 16 milliseconds