Searched refs:next (Results 476 - 500 of 4898) sorted by relevance

<<11121314151617181920>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ppp-2.4.4/pppd/plugins/radius/
H A Davpair.c127 vp->next = (VALUE_PAIR *) NULL;
219 pair->next = (VALUE_PAIR *) NULL;
317 pair->next = NULL;
354 for (; vp != (VALUE_PAIR *) NULL && vp->attribute != attr; vp = vp->next)
381 lp->next = vp;
383 p = p->next;
420 vp = vp->next;
432 this_node = this_node->next;
437 vp = this_node->next;
438 this_node->next
457 VALUE_PAIR *next; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libxml/
H A Dhash.c40 struct _xmlHashEntry *next; member in struct:_xmlHashEntry
200 xmlHashEntryPtr iter, next; local
238 table->table[key].next = NULL;
242 iter = oldtable[i].next;
244 next = iter->next;
254 table->table[key].next = NULL;
257 iter->next = table->table[key].next;
258 table->table[key].next
291 xmlHashEntryPtr next; local
833 xmlHashEntryPtr next; local
896 xmlHashEntryPtr next; local
936 xmlHashEntryPtr next; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libxml/
H A Dhash.c40 struct _xmlHashEntry *next; member in struct:_xmlHashEntry
200 xmlHashEntryPtr iter, next; local
238 table->table[key].next = NULL;
242 iter = oldtable[i].next;
244 next = iter->next;
254 table->table[key].next = NULL;
257 iter->next = table->table[key].next;
258 table->table[key].next
291 xmlHashEntryPtr next; local
833 xmlHashEntryPtr next; local
896 xmlHashEntryPtr next; local
936 xmlHashEntryPtr next; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/dbus-1.6.8/dbus/
H A Ddbus-list.c114 link->next = link;
119 link->next = before_this_link;
122 link->prev->next = link;
137 link->next = link;
143 link->next = after_this_link->next;
144 after_this_link->next = link;
145 link->next->prev = link;
181 * Gets the next link in the list, or #NULL if
196 * @returns the next lin
538 DBusList *next = _dbus_list_get_next_link (list, link); local
757 DBusList *next = _dbus_list_get_next_link (list, link); local
1217 DBusList *next = _dbus_list_get_next_link (&list2, link2); local
1237 DBusList *next = _dbus_list_get_next_link (&list1, link1); local
[all...]
H A Ddbus-mempool.c63 DBusFreedElement *next; /**< next element of the free list */ member in struct:DBusFreedElement
84 DBusMemBlock *next; /**< next block in the list, which is already used up; member in struct:DBusMemBlock
196 DBusMemBlock *next = block->next; local
200 block = next;
239 block->next = pool->blocks;
262 pool->free_elements = pool->free_elements->next;
289 /* use a larger block size for our next bloc
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zebra/bgpd/
H A Dbgp_advertise.c99 adv->next = baa->adv;
109 if (adv->next)
110 adv->next->prev = adv->prev;
112 adv->prev->next = adv->next;
114 baa->adv = adv->next;
163 for (adj = rn->adj_out; adj; adj = adj->next)
181 struct bgp_advertise *next;
185 next = NULL;
192 /* Fetch next advertis
178 struct bgp_advertise *next; local
[all...]
H A Dbgp_clist.c151 for (point = list->head; point; point = point->next)
163 for (point = list->head; point; point = point->next)
182 list->tail->next = new;
190 new->next = list->head;
197 new->next = point;
201 point->prev->next = new;
221 for (list = cm->num.head; list; list = list->next)
224 for (list = cm->str.head; list; list = list->next)
246 struct community_entry *entry, *next;
248 for (entry = list->head; entry; entry = next)
245 struct community_entry *entry, *next; local
[all...]
H A Dbgp_table.c410 /* Unlock current node and lock next node then return it. */
414 struct bgp_node *next;
418 next node's pointer. */
422 next = node->l_left;
423 bgp_lock_node (next);
425 return next;
429 next = node->l_right;
430 bgp_lock_node (next);
432 return next;
440 next
413 struct bgp_node *next; local
454 struct bgp_node *next; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/acpi/acpica/
H A Dpsparse.c97 * DESCRIPTION: Get next AML opcode (without incrementing AML pointer)
138 union acpi_parse_object *next; local
264 replacement_op->common.next = op->common.next;
267 op->common.next;
278 next = prev->common.next;
279 if (next == op) {
287 prev->common.next =
289 replacement_op->common.next
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libcroco/
H A Dcr-declaration.c299 for (cur = a_this; cur && cur->next; cur = cur->next) ;
301 cur->next = a_new;
327 g_return_val_if_fail (a_decl->prev->next == a_decl, NULL);
330 if (a_decl->next) {
331 g_return_val_if_fail (a_decl->next->prev == a_decl, NULL);
338 a_decl->prev->next = a_decl->next;
340 if (a_decl->next) {
341 a_decl->next
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libcroco/
H A Dcr-declaration.c299 for (cur = a_this; cur && cur->next; cur = cur->next) ;
301 cur->next = a_new;
327 g_return_val_if_fail (a_decl->prev->next == a_decl, NULL);
330 if (a_decl->next) {
331 g_return_val_if_fail (a_decl->next->prev == a_decl, NULL);
338 a_decl->prev->next = a_decl->next;
340 if (a_decl->next) {
341 a_decl->next
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/libsmb/
H A Dconncache.c39 struct failed_connection_cache *prev, *next; member in struct:failed_connection_cache
61 for (fcc = failed_connection_cache; fcc; fcc = fcc->next) {
64 continue; /* no match; check the next entry */
115 for (fcc = failed_connection_cache; fcc; fcc = fcc->next) {
157 fcc_next = fcc->next;
180 fcc_next = fcc->next;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Daf_aformat.c62 char *next, *cur = str, sep; \
73 next = strchr(cur, sep); \
74 if (next) \
75 *next++ = 0; \
83 cur = next; \
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/include/asm/
H A Dsystem.h32 extern asmlinkage void *resume(void *last, void *next, void *next_ti);
63 next->thread.emulated_fp = 0; \
76 #define switch_to(prev, next, last) \
82 (last) = resume(prev, next, task_thread_info(next)); \
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mn10300/mm/
H A Dpgtable.c116 struct page *next, **pprev, *page = virt_to_page(pgd); local
117 next = (struct page *) page->index;
119 *pprev = next;
120 if (next)
121 set_page_private(next, (unsigned long) pprev);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/glib/
H A Dghash.c56 GHashNode *next; member in struct:_GHashNode
255 node = &(*node)->next;
258 node = &(*node)->next;
452 (*node) = dest->next;
520 (*node) = dest->next;
623 for (node = hash_table->nodes[i]; node; prev = node, node = node->next)
633 prev->next = node->next;
641 hash_table->nodes[i] = node->next;
681 for (node = hash_table->nodes[i]; node; node = node->next)
743 GHashNode *next; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sh/mm/
H A Dtlb-sh5.c27 cpu_data->dtlb.next = cpu_data->dtlb.first;
38 cpu_data->itlb.next = cpu_data->itlb.first;
47 * sh64_next_free_dtlb_entry - Find the next available DTLB entry
51 return cpu_data->dtlb.next;
62 cpu_data->dtlb.next += cpu_data->dtlb.step;
104 cpu_data->dtlb.next = entry;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/block/
H A Dnoop-iosched.c16 struct request *next)
18 list_del_init(&next->queuelist);
27 rq = list_entry(nd->queue.next, struct request, queuelist);
64 if (rq->queuelist.next == &nd->queue)
66 return list_entry(rq->queuelist.next, struct request, queuelist);
15 noop_merged_requests(struct request_queue *q, struct request *rq, struct request *next) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/ax25/
H A Dax25_route.c53 ax25_rt = ax25_rt->next;
57 ax25_route_list = s->next;
61 for (t = ax25_route_list; t != NULL; t = t->next) {
62 if (t->next == s) {
63 t->next = s->next;
109 ax25_rt = ax25_rt->next;
135 ax25_rt->next = ax25_route_list;
161 ax25_rt = ax25_rt->next;
165 ax25_route_list = s->next;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/tools/perf/
H A Dbuiltin-timechart.c68 struct per_pid *next; member in struct:per_pid
84 struct per_pidcomm *next; member in struct:per_pidcomm
102 struct sample_wrapper *next; member in struct:sample_wrapper
114 struct cpu_sample *next; member in struct:cpu_sample
128 struct power_event *next; member in struct:power_event
137 struct wake_event *next; member in struct:wake_event
150 struct process_filter *next; member in struct:process_filter
163 cursor = cursor->next;
169 cursor->next = all_data;
190 c = c->next;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Ddca_parser.c43 * @return the position of the first byte of the next frame, or -1
110 int next; local
113 next = buf_size;
115 next = dca_find_frame_end(pc1, buf, buf_size);
117 if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) {
125 return next;
H A Dmpeg4video_parser.c112 int next; local
115 next= buf_size;
117 next= ff_mpeg4_find_frame_end(pc, buf, buf_size);
119 if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) {
129 return next;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/mxml-2.7/
H A Dmxml-search.c21 * mxmlWalkNext() - Walk to the next logical node in the tree.
65 * Start with the next node...
107 * No match, move on to the next node...
113 node = node->next;
170 * Get the next element in the path...
208 * 'mxmlWalkNext()' - Walk to the next logical node in the tree.
211 * to be the next node. The top node argument constrains the walk to
226 else if (node->next)
227 return (node->next);
232 while (!node->next)
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dmjpeg_parser.c38 * @return the position of the first byte of the next frame, or -1
109 int next; local
112 next= buf_size;
114 next= find_frame_end(m, buf, buf_size);
116 if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) {
125 return next;
H A Dpng_parser.c42 int next = END_NOT_FOUND; local
68 next = i;
89 next = ppc->chunk_length + i + 1;
104 if (ff_combine_frame(&ppc->pc, next, &buf, &buf_size) < 0)
111 return next;

Completed in 377 milliseconds

<<11121314151617181920>>