Searched refs:next (Results 1 - 25 of 4047) sorted by relevance

1234567891011>>

/macosx-10.9.5/Libc-997.90.3/stdlib/FreeBSD/
H A Dremque.c19 struct que_elem *prev, *next, *elem; local
24 next = elem->next;
27 prev->next = next;
28 if (next != NULL)
29 next->prev = prev;
H A Dinsque.c23 struct que_elem *prev, *next, *elem; local
29 elem->prev = elem->next = NULL;
33 next = prev->next;
34 if (next != NULL) {
36 if (next->prev != prev) {
38 " next(%p)->prev(%p) != prev(%p)\n",
39 next, next->prev, prev);
42 next
[all...]
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/stdio/
H A Dfcloseall.c32 Sfpool_t* next; local
42 for(p = &_Sfpool; p; p = next)
43 { /* find the next legitimate pool */
44 for(next = p->next; next; next = next->next)
45 if(next
[all...]
/macosx-10.9.5/emacs-92/emacs/oldXMenu/
H A Dinsque.c37 struct qelem *next = prev->q_forw; local
39 if (next)
40 next->q_back = elem;
41 elem->q_forw = next;
50 struct qelem *next = elem->q_forw; local
52 if (next)
53 next->q_back = prev;
55 prev->q_forw = next;
/macosx-10.9.5/shell_cmds-175/find/
H A Doperator.c64 (*planp) = (*planp)->next;
65 node->next = NULL;
78 PLAN *next; /* temp node holding subexpression results */ local
95 if ((next = yankexpr(planp)) == NULL)
104 if (next->execute == f_closeparen) {
112 tail = subplan = next;
114 tail->next = next;
115 tail = next;
117 tail->next
167 PLAN *next; /* next node being processed */ local
230 PLAN *next; /* next node being processed */ local
[all...]
/macosx-10.9.5/xnu-2422.115.4/osfmk/kern/
H A Dqueue.c75 elt->next = que->next;
77 elt->next->prev = elt;
78 que->next = elt;
89 elt->next = que;
91 elt->prev->next = elt;
104 if (que->next == que)
107 elt = que->next;
108 elt->next->prev = que;
109 que->next
[all...]
/macosx-10.9.5/Libc-997.90.3/stdio/FreeBSD/
H A Dglue.h41 struct glue *next; member in struct:glue
/macosx-10.9.5/apache-786.1/httpd/modules/http/
H A Dhttp_etag.c35 static char *etag_uint64_to_hex(char *next, apr_uint64_t u) argument
43 *next++ = HEX_DIGITS[next_digit];
47 *next++ = HEX_DIGITS[next_digit];
51 *next++ = HEX_DIGITS[u & (apr_uint64_t)0xf];
52 return next;
69 char *next; local
120 next = etag;
123 *next++ = *weak++;
126 *next++ = '"';
129 next
[all...]
/macosx-10.9.5/postfix-252/postfix/src/global/
H A Dtok822_tree.c129 TOK822 *next = t1->next; local
131 t1->next = t2;
135 while (t2->next)
136 (t2 = t2->next)->owner = t1->owner;
138 t2->next = next;
139 if (next)
140 next->prev = t2;
151 prev->next
180 TOK822 *next = tp->next; local
194 TOK822 *next = tp->next; local
[all...]
/macosx-10.9.5/postfix-252/postfix/src/oqmgr/
H A Dqmgr_enable.c71 for (xport = qmgr_transport_list.next; xport; xport = xport->peers.next)
80 QMGR_QUEUE *next; local
90 for (queue = transport->queue_list.next; queue; queue = next) {
91 next = queue->peers.next;
105 if (QMGR_QUEUE_READY(queue) && queue->todo.next == 0 && queue->busy.next == 0)
H A Dqmgr_defer.c42 /* Specifies a queue with delivery requests for a specific next-hop
86 QMGR_QUEUE *next; local
95 for (queue = transport->queue_list.next; queue; queue = next) {
96 next = queue->peers.next;
106 QMGR_ENTRY *next; local
130 for (entry = queue->todo.next; entry != 0; entry = next) {
131 next
[all...]
/macosx-10.9.5/postfix-252/postfix/src/qmgr/
H A Dqmgr_enable.c71 for (xport = qmgr_transport_list.next; xport; xport = xport->peers.next)
80 QMGR_QUEUE *next; local
90 for (queue = transport->queue_list.next; queue; queue = next) {
91 next = queue->peers.next;
105 if (QMGR_QUEUE_READY(queue) && queue->todo.next == 0 && queue->busy.next == 0)
H A Dqmgr_defer.c42 /* Specifies a queue with delivery requests for a specific next-hop
91 QMGR_QUEUE *next; local
100 for (queue = transport->queue_list.next; queue; queue = next) {
101 next = queue->peers.next;
111 QMGR_ENTRY *next; local
135 for (entry = queue->todo.next; entry != 0; entry = next) {
136 next
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/virtchannel_base/
H A Drandom.tcl43 my variable seed next
45 set next [expr "([join $seed +]) & 0xff"]
46 next
51 next {*}$args
67 variable next
70 my variable seed next
71 set result $next
72 set next [expr {(2*$next - [lindex $seed 0]) & 0xff}]
/macosx-10.9.5/expat-12/expat/xmlwf/
H A Dct.c86 const char *next, *p; local
89 next = buf;
90 p = getTok(&next);
91 if (matchkey(p, next, "text"))
93 else if (!matchkey(p, next, "application"))
95 p = getTok(&next);
98 p = getTok(&next);
99 if (matchkey(p, next, "xml"))
101 p = getTok(&next);
104 p = getTok(&next);
[all...]
H A Dxmlmime.c90 const char *next, *p; local
93 next = buf;
94 p = getTok(&next);
95 if (matchkey(p, next, "text"))
97 else if (!matchkey(p, next, "application"))
99 p = getTok(&next);
102 p = getTok(&next);
104 if (!matchkey(p, next, "xml") && charset[0] == '\0')
107 p = getTok(&next);
110 p = getTok(&next);
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/heap/
H A DCopyVisitor.cpp45 size_t next, end; local
46 m_shared.getNextBlocksToCopy(next, end);
47 while (next < end) {
48 for (; next < end; ++next) {
49 CopiedBlock* block = m_shared.m_blocksToCopy[next];
60 m_shared.getNextBlocksToCopy(next, end);
62 ASSERT(next == end);
/macosx-10.9.5/BerkeleyDB-21/db/java/src/com/sleepycat/asm/
H A DEdge.java53 * The next edge in the list of successors of the originating basic block.
56 Edge next; field in class:Edge
/macosx-10.9.5/Libc-997.90.3/gen/
H A Dthread_stack_pcs.c53 void *frame, *next; local
81 next = *(void **)frame;
82 if(!INSTACK(next) || !ISALIGNED(next) || next <= frame)
84 frame = next;
87 next = *(void **)frame;
88 if(!INSTACK(next) || !ISALIGNED(next) || next <
[all...]
/macosx-10.9.5/tcpdump-56/tcpdump/
H A Dcpack.c52 /* Advance to the next wordsize boundary. Return NULL if fewer than
59 u_int8_t *next; local
62 next = cpack_next_boundary(cs->c_buf, cs->c_next, wordsize);
65 if (next - cs->c_buf + wordsize > cs->c_len)
68 return next;
87 u_int8_t *next; local
89 if ((next = cpack_align_and_reserve(cs, sizeof(*u))) == NULL)
92 *u = EXTRACT_LE_64BITS(next);
95 cs->c_next = next + sizeof(*u);
103 u_int8_t *next; local
119 u_int8_t *next; local
[all...]
/macosx-10.9.5/remote_cmds-41.90.1/revnetgroup.tproj/
H A Dhash.h38 struct grouplist *next; member in struct:grouplist
46 struct member_entry *next; member in struct:member_entry
53 struct group_entry *next; member in struct:group_entry
/macosx-10.9.5/bash-92/bash-3.2/
H A Dlist.c43 for ( ; list; list = list->next)
54 for ( ; words; words = words->next)
67 register GENERIC_LIST *next, *prev; local
71 next = list->next;
72 list->next = prev;
74 list = next;
86 for (i = 0; list; list = list->next, i++);
100 for (t_head = head; t_head->next; t_head = t_head->next)
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/test/scr024/src/com/sleepycat/collections/test/
H A DTestKeyAssigner.java21 private byte next = 1; field in class:TestKeyAssigner
33 RecordNumberBinding.recordNumberToEntry(next, keyData);
35 keyData.setData(new byte[] { next }, 0, 1);
37 next += 1;
42 next = 1;
/macosx-10.9.5/curl-78.94.1/curl/lib/
H A Dslist.c42 while(item->next) {
43 item = item->next;
65 new_item->next = NULL;
78 last->next = new_item;
105 inlist = inlist->next;
113 struct curl_slist *next; local
121 next = item->next;
124 item = next;
125 } while(next);
[all...]
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/sfio/
H A Dsfraise.c38 Sfpool_t *p, *next; local
42 for(p = &_Sfpool; p; p = next)
44 for(next = p->next; next; next = next->next)
45 if(next->n_sf > 0)
65 reg Sfdisc_t *disc, *next, * local
[all...]

Completed in 439 milliseconds

1234567891011>>