Searched refs:next (Results 101 - 125 of 4898) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/src/tools/misc/xz/src/liblzma/common/
H A Dfilter_buffer_encoder.c27 lzma_next_coder next = LZMA_NEXT_CODER_INIT;
28 return_if_error(lzma_raw_encoder_init(&next, allocator, filters));
36 lzma_ret ret = next.code(next.coder, allocator, in, &in_pos, in_size,
38 lzma_next_end(&next, allocator);
H A Dfilter_buffer_decoder.c27 lzma_next_coder next = LZMA_NEXT_CODER_INIT;
28 return_if_error(lzma_raw_decoder_init(&next, allocator, filters));
36 lzma_ret ret = next.code(next.coder, allocator, in, in_pos, in_size,
68 (void)next.code(next.coder, allocator,
84 lzma_next_end(&next, allocator);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/lib/
H A Dlist_sort.c24 tail->next = a;
25 a = a->next;
27 tail->next = b;
28 b = b->next;
30 tail = tail->next;
32 tail->next = a?:b;
33 return head.next;
54 tail->next = a;
56 a = a->next;
58 tail->next
[all...]
H A Dioremap.c37 unsigned long next; local
44 next = pmd_addr_end(addr, end);
45 if (ioremap_pte_range(pmd, addr, next, phys_addr + addr, prot))
47 } while (pmd++, addr = next, addr != end);
55 unsigned long next; local
62 next = pud_addr_end(addr, end);
63 if (ioremap_pmd_range(pud, addr, next, phys_addr + addr, prot))
65 } while (pud++, addr = next, addr != end);
74 unsigned long next; local
83 next
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dlist_nulls.h22 struct hlist_nulls_node *next, **pprev; member in struct:hlist_nulls_node
64 n->next = first;
68 first->pprev = &n->next;
73 struct hlist_nulls_node *next = n->next; local
75 *pprev = next;
76 if (!is_a_nulls(next))
77 next->pprev = pprev;
98 pos = pos->next)
110 pos = pos->next)
[all...]
H A Duser-return-notifier.h19 struct task_struct *next)
23 set_tsk_thread_flag(next, TIF_USER_RETURN_NOTIFY);
39 struct task_struct *next)
18 propagate_user_return_notify(struct task_struct *prev, struct task_struct *next) argument
38 propagate_user_return_notify(struct task_struct *prev, struct task_struct *next) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zebra/bgpd/
H A Dbgp_advertise.h24 struct bgp_advertise *next; member in struct:bgp_advertise_fifo
47 struct bgp_advertise *next; member in struct:bgp_advertise
67 struct bgp_adj_out *next; member in struct:bgp_adj_out
84 struct bgp_adj_in *next; member in struct:bgp_adj_in
105 struct fifo *next; member in struct:fifo
112 Xfifo->next = Xfifo->prev = Xfifo; \
119 Xnode->next = Xfifo; \
121 Xfifo->prev = Xfifo->prev->next = Xnode; \
127 Xnode->prev->next = Xnode->next; \
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/pci/ctxfi/
H A Dctimap.c31 entry->next = entry->addr;
53 pos = head->next;
60 entry->next = pos_ent->addr;
62 pre_ent->next = entry->addr;
71 struct list_head *next, *pre, *head; local
80 next = (entry->list.next == head) ? head->next : entry->list.next;
84 entry->next
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/xz/src/liblzma/simple/
H A Dsimple_coder.c28 if (coder->next.code == NULL) {
37 // Call the next coder in the chain to provide us some data.
39 // the next filter in the chain will do it for us (since
41 const lzma_ret ret = coder->next.code(
42 coder->next.coder, allocator,
120 // restarted if the next filter in the chain returns e.g.
144 // the next coder in the chain (if any) was successful.
206 lzma_next_end(&coder->next, allocator);
218 // No update support, just call the next filter in the chain.
220 &coder->next, allocato
225 lzma_simple_coder_init(lzma_next_coder *next, lzma_allocator *allocator, const lzma_filter_info *filters, size_t (*filter)(lzma_simple *simple, uint32_t now_pos, bool is_encoder, uint8_t *buffer, size_t size), size_t simple_size, size_t unfiltered_max, uint32_t alignment, bool is_encoder) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/tools/misc/xz/src/liblzma/simple/
H A Dsimple_coder.c28 if (coder->next.code == NULL) {
37 // Call the next coder in the chain to provide us some data.
39 // the next filter in the chain will do it for us (since
41 const lzma_ret ret = coder->next.code(
42 coder->next.coder, allocator,
120 // restarted if the next filter in the chain returns e.g.
144 // the next coder in the chain (if any) was successful.
206 lzma_next_end(&coder->next, allocator);
218 // No update support, just call the next filter in the chain.
220 &coder->next, allocato
225 lzma_simple_coder_init(lzma_next_coder *next, lzma_allocator *allocator, const lzma_filter_info *filters, size_t (*filter)(lzma_simple *simple, uint32_t now_pos, bool is_encoder, uint8_t *buffer, size_t size), size_t simple_size, size_t unfiltered_max, uint32_t alignment, bool is_encoder) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/blackfin/mm/
H A Dsram-alloc.c30 struct sram_piece *next; member in struct:sram_piece
77 per_cpu(free_l1_ssram_head, cpu).next =
79 if (!per_cpu(free_l1_ssram_head, cpu).next) {
84 per_cpu(free_l1_ssram_head, cpu).next->paddr = (void *)get_l1_scratch_start_cpu(cpu) + reserve;
85 per_cpu(free_l1_ssram_head, cpu).next->size = L1_SCRATCH_LENGTH - reserve;
86 per_cpu(free_l1_ssram_head, cpu).next->pid = 0;
87 per_cpu(free_l1_ssram_head, cpu).next->next = NULL;
89 per_cpu(used_l1_ssram_head, cpu).next = NULL;
105 per_cpu(free_l1_data_A_sram_head, cpu).next
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/shared/
H A Dnetconf.h79 struct _netconf_match_t *next, *prev; member in struct:_netconf_match_t
119 struct _netconf_fw_t *next, *prev \
176 #define netconf_list_init(head) ((head)->next = (head)->prev = (head))
178 #define netconf_list_empty(head) ((head)->next == (head))
181 (head)->next->prev = (new); \
182 (new)->next = (head)->next; \
184 (head)->next = (new); \
188 (old)->next->prev = (old)->prev; \
189 (old)->prev->next
[all...]
H A Dshutils.h221 #define foreach(word, wordlist, next) \
222 for (next = &wordlist[strspn(wordlist, " ")], \
223 strncpy(word, next, sizeof(word)), \
226 next = strchr(next, ' '); \
228 next = next ? &next[strspn(next, " ")] : "", \
229 strncpy(word, next, sizeo
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/xz/src/liblzma/common/
H A Dfilter_buffer_decoder.c27 lzma_next_coder next = LZMA_NEXT_CODER_INIT;
28 return_if_error(lzma_raw_decoder_init(&next, allocator, filters));
36 lzma_ret ret = next.code(next.coder, allocator, in, in_pos, in_size,
68 (void)next.code(next.coder, allocator,
84 lzma_next_end(&next, allocator);
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/networking/udhcp/
H A Dstatic_leases.c26 new_static_lease->next = NULL;
33 while (cur->next) {
34 cur = cur->next;
37 cur->next = new_static_lease;
58 cur = cur->next;
76 cur = cur->next;
96 cur = cur->next;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/pnp/isapnp/
H A Dcompat.c33 list = from ? from->global_list.next : pnp_cards.next;
40 list = list->next;
56 list = pnp_global.next;
58 list = from->global_list.next;
66 list = list->next;
71 list = card->devices.next;
73 list = from->card_list.next;
82 list = list->next;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mn10300/include/asm/
H A Dmmu_context.h121 static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, argument
126 if (prev != next) {
127 cpu_ran_vm(cpu, next);
128 activate_context(next, cpu);
129 PTBR = (unsigned long) next->pgd;
130 } else if (!cpu_maybe_ran_vm(cpu, next)) {
131 activate_context(next, cpu);
136 #define activate_mm(prev, next) switch_mm((prev), (next), NULL)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zebra/lib/
H A Dlinklist.h30 struct listnode *next; member in struct:listnode
44 #define nextnode(X) ((X) = (X)->next)
74 for ((N) = (L)->head; (N); (N) = (N)->next) \
84 (L)->tail->next = (N); \
92 (N)->prev->next = (N)->next; \
94 (L)->head = (N)->next; \
95 if ((N)->next) \
96 (N)->next->prev = (N)->prev; \
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/tile/include/asm/
H A Dcacheflush.h88 char *next = (char *)((long)buffer & -L2_CACHE_BYTES); local
90 while (next < finish) {
91 __insn_inv(next);
92 next += CHIP_INV_STRIDE();
99 char *next = (char *)((long)buffer & -L2_CACHE_BYTES); local
101 while (next < finish) {
102 __insn_flush(next);
103 next += CHIP_FLUSH_STRIDE();
110 char *next = (char *)((long)buffer & -L2_CACHE_BYTES); local
112 while (next < finis
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/include/asm/
H A Dsystem.h29 extern void *_switch_to(void *prev, void *next, void *last);
30 #define switch_to(prev, next, last) prev = _switch_to(prev, next, last)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavfilter/
H A Dvf_fifo.c30 struct BufPic *next; member in struct:BufPic
52 for (pic = fifo->root.next; pic; pic = tmp) {
53 tmp = pic->next;
63 fifo->last->next = av_mallocz(sizeof(BufPic));
64 fifo->last = fifo->last->next;
78 if (!fifo->root.next) {
83 /* by doing this, we give ownership of the reference to the next filter,
85 avfilter_start_frame(outlink, fifo->root.next->picref);
89 if (fifo->last == fifo->root.next)
91 tmp = fifo->root.next
[all...]
H A Dyadif.h25 uint8_t *prev, uint8_t *cur, uint8_t *next,
29 uint8_t *prev, uint8_t *cur, uint8_t *next,
33 uint8_t *prev, uint8_t *cur, uint8_t *next,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libxml2-2.7.2/source/doc/examples/
H A Dxpath1.c151 xmlChar* next; local
162 next = nsListDup;
163 while(next != NULL) {
165 while((*next) == ' ') next++;
166 if((*next) == '\0') break;
169 prefix = next;
170 next = (xmlChar*)xmlStrchr(next, '=');
171 if(next
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libxml2-2.7.2/source/ipkg-install/usr/share/doc/libxml2-2.7.2/html/
H A Dxpath1.c151 xmlChar* next; local
162 next = nsListDup;
163 while(next != NULL) {
165 while((*next) == ' ') next++;
166 if((*next) == '\0') break;
169 prefix = next;
170 next = (xmlChar*)xmlStrchr(next, '=');
171 if(next
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libxml2-2.7.2/doc/examples/
H A Dxpath1.c151 xmlChar* next; local
162 next = nsListDup;
163 while(next != NULL) {
165 while((*next) == ' ') next++;
166 if((*next) == '\0') break;
169 prefix = next;
170 next = (xmlChar*)xmlStrchr(next, '=');
171 if(next
[all...]

Completed in 227 milliseconds

1234567891011>>