Searched refs:next (Results 351 - 375 of 4898) sorted by relevance

<<11121314151617181920>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/dhcp6/
H A Dhash.c90 element->next = hash_tbl->hash_list[index];
106 prev_element->next = element->next;
108 hash_tbl->hash_list[index] = element->next;
110 element->next = NULL;
116 element = element->next;
131 element = element->next;
159 oldnext = element->next;
160 element->next = new_table->hash_list[index];
H A Dserver6_conf.c132 if (current->next)
133 current->next->prev = item;
134 item->next = current->next;
135 current->next = item;
137 item->next = NULL;
150 if (current->next)
151 current->next->prev = current->prev;
153 current->prev->next = current->next;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/security/selinux/ss/
H A Dhashtab.c51 cur = cur->next;
63 newnode->next = prev->next;
64 prev->next = newnode;
66 newnode->next = h->htable[hvalue];
85 cur = cur->next;
105 cur = cur->next;
134 cur = cur->next;
155 cur = cur->next;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/kernel/
H A Dexec_domain.c65 for (ep = exec_domains; ep; ep = ep->next) {
76 for (ep = exec_domains; ep; ep = ep->next) {
98 if (ep->next != NULL)
102 for (tmp = exec_domains; tmp; tmp = tmp->next) {
107 ep->next = exec_domains;
123 for (epp = &exec_domains; *epp; epp = &(*epp)->next) {
131 *epp = ep->next;
132 ep->next = NULL;
154 for (ep = exec_domains; ep; ep = ep->next)
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/networking/
H A Dnameif.c38 struct mactable_s *next; member in struct:mactable_s
89 ch->next = clist;
117 ch->next = clist;
142 for (ch = clist; ch; ch = ch->next)
157 (ch->prev)->next = ch->next;
159 clist = ch->next;
161 if (ch->next != NULL)
162 (ch->next)->prev = ch->prev;
/netgear-R7000-V1.0.7.12_1.2.5/src/router/dhcp6/
H A Dhash.c90 element->next = hash_tbl->hash_list[index];
106 prev_element->next = element->next;
108 hash_tbl->hash_list[index] = element->next;
110 element->next = NULL;
116 element = element->next;
131 element = element->next;
159 oldnext = element->next;
160 element->next = new_table->hash_list[index];
H A Dserver6_conf.c132 if (current->next)
133 current->next->prev = item;
134 item->next = current->next;
135 current->next = item;
137 item->next = NULL;
150 if (current->next)
151 current->next->prev = current->prev;
153 current->prev->next = current->next;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/usb/host/
H A Dohci-dbg.c75 #define ohci_dbg_sw(ohci, next, size, format, arg...) \
77 if (next != NULL) { \
79 s_len = scnprintf (*next, *size, format, ## arg ); \
80 *size -= s_len; *next += s_len; \
90 char **next,
93 ohci_dbg_sw (ohci, next, size, "%s 0x%08x%s%s%s%s%s%s%s%s%s\n",
112 char **next,
116 ohci_dbg_sw (ohci, next, size, "%s %08x\n", label, value);
132 ohci_dump_status (struct ohci_hcd *controller, char **next, unsigned *size) argument
138 ohci_dbg_sw (controller, next, siz
86 ohci_dump_intr_mask( struct ohci_hcd *ohci, char *label, u32 mask, char **next, unsigned *size) argument
108 maybe_print_eds( struct ohci_hcd *ohci, char *label, u32 value, char **next, unsigned *size) argument
221 ohci_dump_roothub( struct ohci_hcd *controller, int verbose, char **next, unsigned *size) argument
532 char *next; local
626 char *next; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/lua/source/src/
H A Dlfunc.c61 pp = &p->next;
67 uv->u.l.next = g->uvhead.u.l.next;
68 uv->u.l.next->u.l.prev = uv;
69 g->uvhead.u.l.next = uv;
70 lua_assert(uv->u.l.next->u.l.prev == uv && uv->u.l.prev->u.l.next == uv);
76 lua_assert(uv->u.l.next->u.l.prev == uv && uv->u.l.prev->u.l.next == uv);
77 uv->u.l.next
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Ddirac_parser.c37 * @return the position of the first byte of the next frame or -1
116 int next, const uint8_t **buf, int *buf_size)
134 if ( next == -1) {
148 pc->index + next);
150 memcpy(pc->buffer + pc->index, *buf, next);
151 pc->index += next;
156 * frame. So check if the previous parse offset of the next parse unit
157 * is equal to the next parse offset of the current parse unit then
163 *buf_size = next-9;
179 *buf_size = next;
115 dirac_combine_frame(AVCodecParserContext *s, AVCodecContext *avctx, int next, const uint8_t **buf, int *buf_size) argument
215 int next; local
[all...]
H A Dparser.c28 if(p) return p->next;
34 parser->next = av_first_parser;
47 for(parser = av_first_parser; parser != NULL; parser = parser->next) {
158 /* offset of the next frame */
222 int ff_combine_frame(ParseContext *pc, int next, const uint8_t **buf, int *buf_size) argument
225 av_dlog(pc, "overread %d, state:%X next:%d index:%d o_index:%d\n",
226 pc->overread, pc->state, next, pc->index, pc->overread_index);
236 if(!*buf_size && next == END_NOT_FOUND){
237 next= 0;
243 if(next
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Ddirac_parser.c40 * @return the position of the first byte of the next frame or -1
119 int next, const uint8_t **buf, int *buf_size)
137 if ( next == -1) {
151 pc->index + next);
153 memcpy(pc->buffer + pc->index, *buf, next);
154 pc->index += next;
159 * frame. So check if the previous parse offset of the next parse unit
160 * is equal to the next parse offset of the current parse unit then
168 *buf_size = next-9;
184 *buf_size = next;
118 dirac_combine_frame(AVCodecParserContext *s, AVCodecContext *avctx, int next, const uint8_t **buf, int *buf_size) argument
220 int next; local
[all...]
H A Dxbmdec.c69 const uint8_t *next; local
85 next = memchr(ptr, '{', avpkt->size);
86 if (!next)
87 next = memchr(ptr, '(', avpkt->size);
88 if (!next)
90 ptr = next + 1;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/comedi/drivers/addi-data/
H A Daddi_amcc_s5933.h202 struct pcilst_struct *next; member in struct:pcilst_struct
267 last->next = amcc;
297 struct pcilst_struct *amcc, *next; local
299 for (amcc = amcc_devices; amcc; amcc = next) {
300 next = amcc->next;
312 struct pcilst_struct *amcc, *next; local
314 for (amcc = amcc_devices; amcc; amcc = next) {
315 next = amcc->next;
333 struct pcilst_struct *amcc, *next; local
397 struct pcilst_struct *amcc, *next; local
[all...]
H A Damcc_s5933_58.h202 struct pcilst_struct *next; member in struct:pcilst_struct
262 last->next = amcc;
288 struct pcilst_struct *amcc, *next; local
290 for (amcc = amcc_devices; amcc; amcc = next) {
291 next = amcc->next;
303 struct pcilst_struct *amcc, *next; local
305 for (amcc = amcc_devices; amcc; amcc = next) {
306 next = amcc->next;
324 struct pcilst_struct *amcc, *next; local
377 struct pcilst_struct *amcc, *next; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/tcpdump-4.4.0/
H A Dprint-igrp.c84 u_int nint, nsys, next; local
94 next = EXTRACT_16BITS(&hdr->ig_nx);
103 next);
115 } else if (next > 0) {
118 --next;
126 if (nint == 0 && nsys == 0 && next == 0)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Dsdr2.c76 unsigned next; local
84 next = avio_rl32(s->pb);
85 if (next <= 52)
93 if (av_new_packet(pkt, next - 52 + 24) < 0)
96 ret = avio_read(s->pb, pkt->data + 24, next - 52);
103 ret = av_get_packet(s->pb, pkt, next - 52);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/conntrack-tools/conntrack-tools-1.4.0/src/
H A Dfds.c135 struct timeval *next = NULL; local
141 if (next != NULL && !timerisset(next))
142 next = do_alarm_run(&next_alarm);
144 next = get_next_alarm_run(&next_alarm);
147 select_main_step(next);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/dream/qdsp5/
H A Devlog.h43 unsigned next; member in struct:ev_log
65 n = (log->next - 1) & (max - 1);
67 while (n != log->next) {
100 entry = log->entry + log->next;
104 log->next = (log->next + 1) & (log->max - 1);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/power/
H A Dhibernate_64.c75 unsigned long start, end, next; local
90 for (; start < end; start = next) {
94 next = start + PGDIR_SIZE;
95 if (next > end)
96 next = end;
97 if ((error = res_phys_pud_init(pud, __pa(start), __pa(next))))
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m68k/include/asm/
H A Dmmu_context.h83 static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, struct task_struct *tsk) argument
85 if (prev != next) {
87 switch_mm_0230(next);
89 switch_mm_0460(next);
141 static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, struct task_struct *tsk) argument
163 static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, struct task_struct *tsk) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/pci/hotplug/
H A Dibmphp_res.c414 range_cur = range_cur->next;
430 range->next = range_cur;
435 range->next = NULL;
436 range_prev->next = range;
441 range_prev->next = range;
442 range->next = range_cur;
449 range_cur = range_cur->next;
486 if (res->next)
487 res = res->next;
500 res = res->next;
1568 struct list_head *next; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/batman-adv/
H A Dhash.c52 bucket = bucket->next;
102 * next pointer is not pointing to our actual bucket
103 * anymore. select the next.
105 if (iter->prev_bucket->next != iter->bucket)
110 /* now as we are sane, select the next one if there is some */
112 if (iter->bucket->next != NULL) {
114 iter->bucket = iter->bucket->next;
183 bucket = bucket->next;
193 bucket->next = NULL;
199 prev_bucket->next
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/autofs/
H A Ddirhash.c51 ent = list_entry(dh->expiry_head.next, struct autofs_dir_ent, exp);
119 for ( dhn = dh->h[(unsigned) name->hash % AUTOFS_HASH_SIZE] ; dhn ; dhn = dhn->next ) {
141 ent->next = *dhnp;
144 if ( ent->next )
145 ent->next->back = &(ent->next);
150 *(ent->back) = ent->next;
151 if ( ent->next )
152 ent->next->back = ent->back;
168 * want the next sequentia
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ppp-2.4.4/pppd/plugins/radius/
H A Ddict.c98 vdict->next = vendor_dictionaries;
201 attr->next = vdict->attributes;
204 attr->next = dictionary_attributes;
262 dval->next = dictionary_values;
306 attr = attr->next;
318 attr = attr->next;
344 attr = attr->next;
355 attr = attr->next;
357 dict = dict->next;
382 val = val->next;
[all...]

Completed in 258 milliseconds

<<11121314151617181920>>