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

1234567891011>>

/macosx-10.10.1/Libc-1044.1.2/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.10.1/ksh-23/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.10.1/emacs-93/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.10.1/shell_cmds-179/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.10.1/Libc-1044.1.2/stdio/FreeBSD/
H A Dglue.h41 struct glue *next; member in struct:glue
/macosx-10.10.1/WTF-7600.1.24/wtf/
H A DDecimalNumber.cpp108 LChar* next = buffer; local
116 *next++ = '-';
117 *next++ = '0';
118 *next++ = '.';
120 *next++ = '0';
122 *next++ = m_significand[i];
124 return next - buffer;
134 *next++ = '-';
136 *next++ = m_significand[i];
138 *next
164 LChar* next = buffer; local
[all...]
/macosx-10.10.1/apache-793/httpd/modules/http/
H A Dhttp_etag.c34 static char *etag_uint64_to_hex(char *next, apr_uint64_t u) argument
42 *next++ = HEX_DIGITS[next_digit];
46 *next++ = HEX_DIGITS[next_digit];
50 *next++ = HEX_DIGITS[u & (apr_uint64_t)0xf];
51 return next;
68 char *next; local
118 next = etag;
121 *next++ = *weak++;
124 *next++ = '"';
127 next
[all...]
/macosx-10.10.1/postfix-255/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.10.1/postfix-255/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)
/macosx-10.10.1/postfix-255/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)
/macosx-10.10.1/tcl-105/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.10.1/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.10.1/JavaScriptCore-7600.1.17/heap/
H A DCopyVisitor.cpp47 size_t next, end; local
48 m_shared.getNextBlocksToCopy(next, end);
49 while (next < end) {
50 for (; next < end; ++next) {
51 CopiedBlock* block = m_shared.m_blocksToCopy[next];
62 m_shared.getNextBlocksToCopy(next, end);
64 ASSERT(next == end);
/macosx-10.10.1/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.10.1/Libc-1044.1.2/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.10.1/tcpdump-61/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.10.1/WebInspectorUI-7600.1.17/UserInterface/External/CodeMirror/
H A Dlivescript.js21 var next_rule = state.next || "start";
23 state.next = state.next;
29 state.next = r.next || state.next;
33 stream.next();
38 state.next = r.next;
41 stream.next();
[all...]
/macosx-10.10.1/libdispatch-442.1.4/src/
H A Donce.c49 _dispatch_once_waiter_t tail = &dow, next, tmp; local
56 // The next barrier must be long and strong.
108 next = dispatch_atomic_xchg(vval, DISPATCH_ONCE_DONE, relaxed);
109 while (next != tail) {
110 _dispatch_wait_until(tmp = (_dispatch_once_waiter_t)next->dow_next);
111 sema = next->dow_sema;
112 next = tmp;
117 next = *vval;
119 if (next == DISPATCH_ONCE_DONE) {
122 if (dispatch_atomic_cmpxchgvw(vval, next, tai
[all...]
/macosx-10.10.1/remote_cmds-47/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.10.1/OpenSSL098-52/src/crypto/pqueue/
H A Dpqueue.c80 item->next = NULL;
115 pitem *curr, *next; local
123 for(curr = NULL, next = pq->items;
124 next != NULL;
125 curr = next, next = next->next)
127 if (pq_64bit_gt(&(next->priority), &(item->priority)))
129 item->next
169 pitem *next; local
[all...]
/macosx-10.10.1/bash-94.1.2/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.10.1/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.10.1/curl-83.1.2/curl/lib/
H A Dslist.c42 while(item->next) {
43 item = item->next;
68 new_item->next = NULL;
76 last->next = new_item;
121 inlist = inlist->next;
129 struct curl_slist *next; local
137 next = item->next;
140 item = next;
141 } while(next);
[all...]

Completed in 377 milliseconds

1234567891011>>