Searched refs:next (Results 76 - 100 of 4898) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source/gsoap/extras/
H A Dckdb.h21 { struct cookie *next; member in struct:cookie
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source_build_platform/gsoap/extras/
H A Dckdb.h21 { struct cookie *next; member in struct:cookie
/netgear-R7000-V1.0.7.12_1.2.5/src/tools/misc/xz/src/liblzma/common/
H A Dstream_decoder.h18 extern lzma_ret lzma_stream_decoder_init(lzma_next_coder *next,
H A Dstream_encoder.h20 lzma_next_coder *next, lzma_allocator *allocator,
H A Dblock_encoder.c20 lzma_next_coder next; member in struct:lzma_coder_s
62 const lzma_ret ret = coder->next.code(coder->next.coder,
139 lzma_next_end(&coder->next, allocator);
154 &coder->next, allocator, reversed_filters);
159 lzma_block_encoder_init(lzma_next_coder *next, lzma_allocator *allocator, argument
162 lzma_next_coder_init(&lzma_block_encoder_init, next, allocator);
180 // Allocate and initialize *next->coder if needed.
181 if (next->coder == NULL) {
182 next
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/parisc/include/asm/
H A Dmmu_context.h52 static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, struct task_struct *tsk) argument
55 if (prev != next) {
56 mtctl(__pa(next->pgd), 25);
57 load_context(next->context);
63 static inline void activate_mm(struct mm_struct *prev, struct mm_struct *next) argument
73 BUG_ON(next == &init_mm); /* Should never happen */
75 if (next->context == 0)
76 next->context = alloc_sid();
78 switch_mm(prev,next,current);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/score/include/asm/
H A Dmmu_context.h72 static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, argument
78 if ((next->context ^ asid_cache) & ASID_VERSION_MASK)
79 get_new_mmu_context(next);
81 pevn_set(next->context);
82 TLBMISS_HANDLER_SETUP_PGD(next->pgd);
102 activate_mm(struct mm_struct *prev, struct mm_struct *next) argument
107 get_new_mmu_context(next);
108 pevn_set(next->context);
109 TLBMISS_HANDLER_SETUP_PGD(next->pgd);
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/blkid/
H A Dlist.h14 * sometimes we already know the next/prev entries and we can
20 struct list_head *next, *prev; member in struct:list_head
29 (ptr)->next = (ptr); (ptr)->prev = (ptr); \
32 void __list_add(struct list_head * add, struct list_head * prev, struct list_head * next);
35 void __list_del(struct list_head * prev, struct list_head * next);
56 for (pos = (head)->next; pos != (head); pos = pos->next)
62 * @pnext: the &struct list_head to use as a pointer to the next item.
66 for (pos = (head)->next, pnext = pos->next; po
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/xz/src/liblzma/common/
H A Dblock_encoder.c20 lzma_next_coder next; member in struct:lzma_coder_s
62 const lzma_ret ret = coder->next.code(coder->next.coder,
139 lzma_next_end(&coder->next, allocator);
154 &coder->next, allocator, reversed_filters);
159 lzma_block_encoder_init(lzma_next_coder *next, lzma_allocator *allocator, argument
162 lzma_next_coder_init(&lzma_block_encoder_init, next, allocator);
180 // Allocate and initialize *next->coder if needed.
181 if (next->coder == NULL) {
182 next
[all...]
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);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zebra/ospf6d/
H A Dospf6_linklist.c11 for (node = linklist->head; node; node = node->next)
49 for (node = linklist->head; node; node = node->next)
61 linklist->tail->next = add;
71 add->next = NULL;
78 node->prev->next = add;
87 add->next = node;
105 rem->prev->next = rem->next;
107 linklist->head = rem->next;
109 if (rem->next)
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/udev/
H A Dlist.h36 * sometimes we already know the next/prev entries and we can
42 struct list_head *next, *prev; member in struct:list_head
51 (ptr)->next = (ptr); (ptr)->prev = (ptr); \
58 * the prev/next entries already!
62 struct list_head *next)
64 next->prev = new;
65 new->next = next;
67 prev->next = new;
80 __list_add(new, head, head->next);
60 __list_add(struct list_head *new, struct list_head *prev, struct list_head *next) argument
103 __list_del(struct list_head * prev, struct list_head * next) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/lib/
H A Dplist.c34 WARN(n->prev != p || p->next != n,
37 "next: %p, n: %p, p: %p\n",
38 t, t->next, t->prev,
39 p, p->next, p->prev,
40 n, n->next, n->prev);
45 struct list_head *prev = top, *next = top->next; local
47 plist_check_prev_next(top, prev, next);
48 while (next != top) {
49 prev = next;
112 struct plist_node *next = plist_first(&node->plist); local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/include/asm/
H A Dmmu_context.h109 switch_mm(struct mm_struct *prev, struct mm_struct *next, argument
117 if (!cpumask_empty(mm_cpumask(next)) &&
118 !cpumask_test_cpu(cpu, mm_cpumask(next)))
121 if (!cpumask_test_and_set_cpu(cpu, mm_cpumask(next)) || prev != next) {
124 *crt_mm = next;
126 check_context(next);
127 cpu_switch_mm(next->pgd, next);
135 #define activate_mm(prev,next) switch_m
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/libtransmission/
H A Dlist.c30 recycled_nodes = recycled_nodes->next;
43 node->next = recycled_nodes;
59 *list = ( *list )->next;
73 node->next = *list;
91 while( l->next )
92 l = l->next;
94 l->next = node;
103 for( ; list; list = list->next )
116 tr_list * next = node ? node->next local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/tidspbridge/include/dspbridge/
H A Dlist.h49 return lst->head.next;
59 * Else, removes the element at the head of the list, making the next
62 * "next" pointer at the next element after the head, and by making the
63 * "prev" pointer of the next element after the head point at the tail
64 * element. So the next element after the head becomes the new head of
77 * Because the tail of the list points forward (its "next" pointer) to
88 elem_list = lst->head.next;
89 lst->head.next = elem_list->next;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/usb/host/
H A Dxhci-ext-caps.h86 * Return the next extended capability pointer register.
92 * in XHCI_HCC_PARAMS_OFFSET. If searching for the next extended capability,
95 * Returns 0 if there is no next extended capability register or returns the register offset
100 u32 next; local
102 next = readl(base + ext_offset);
106 next = XHCI_HCC_EXT_CAPS(next);
109 /* Find the next extended capability */
110 next = XHCI_EXT_CAPS_NEXT(next);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/include/shared/
H A Daio.h18 struct aio_context *next; member in struct:aio_context
22 .next = NULL }
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/xtensa/include/asm/
H A Dmmu_context.h100 activate_mm(struct mm_struct *prev, struct mm_struct *next) argument
104 __get_new_mmu_context(next);
105 __load_mmu_context(next);
109 static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, argument
116 if (next->context == NO_CONTEXT || ((next->context^asid) & ~ASID_MASK))
117 __get_new_mmu_context(next);
119 __load_mmu_context(next);
H A Dnommu_context.h14 static inline void activate_mm(struct mm_struct *prev, struct mm_struct *next) argument
18 static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/tools/perf/util/include/linux/
H A Dtypes.h10 struct list_head *next, *prev; member in struct:list_head
18 struct hlist_node *next, **pprev; member in struct:hlist_node
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/xz/src/liblzma/lz/
H A Dlz_decoder.c33 lzma_next_coder next; member in struct:lzma_coder_s
35 /// True if the next filter in the chain has returned LZMA_STREAM_END.
43 /// filter in the chain. The output of the next filter is first
135 if (coder->next.code == NULL)
148 const lzma_ret ret = coder->next.code(
149 coder->next.coder,
189 lzma_next_end(&coder->next, allocator);
203 lzma_lz_decoder_init(lzma_next_coder *next, lzma_allocator *allocator, argument
210 if (next->coder == NULL) {
211 next
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/tools/misc/xz/src/liblzma/lz/
H A Dlz_decoder.c33 lzma_next_coder next; member in struct:lzma_coder_s
35 /// True if the next filter in the chain has returned LZMA_STREAM_END.
43 /// filter in the chain. The output of the next filter is first
135 if (coder->next.code == NULL)
148 const lzma_ret ret = coder->next.code(
149 coder->next.coder,
189 lzma_next_end(&coder->next, allocator);
203 lzma_lz_decoder_init(lzma_next_coder *next, lzma_allocator *allocator, argument
210 if (next->coder == NULL) {
211 next
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/gpu/drm/i915/
H A Di915_mem.c16 * next paragraph) shall be included in all copies or substantial portions
76 list[(unsigned)list[i].next].prev = list[i].prev;
77 list[(unsigned)list[i].prev].next = list[i].next;
82 list[i].next = list[nr].next;
83 list[(unsigned)list[nr].next].prev = i;
84 list[nr].next = i;
104 newblock->next = p->next;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/include/asm/
H A Dmmu_context.h32 static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, argument
37 if(prev != next){
39 cpumask_set_cpu(cpu, mm_cpumask(next));
40 if(next != &init_mm)
41 __switch_mm(&next->context.id);

Completed in 271 milliseconds

1234567891011>>