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

1234567891011>>

/asus-wl-520gu-7.0.1.45/src/router/e2fsprogs-1.40.8/lib/ext2fs/
H A Dkernel-list.h9 * sometimes we already know the next/prev entries and we can
15 struct list_head *next, *prev; member in struct:list_head
24 (ptr)->next = (ptr); (ptr)->prev = (ptr); \
35 * the prev/next entries already!
39 struct list_head * next)
41 next->prev = new;
42 new->next = next;
44 prev->next = new;
52 __list_add(new, head, head->next);
37 __list_add(struct list_head * new, struct list_head * prev, struct list_head * next) argument
70 __list_del(struct list_head * prev, struct list_head * next) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-i386/
H A Dmmu_context.h28 static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, struct task_struct *tsk, unsigned cpu) argument
30 if (prev != next) {
36 if (prev->context.segments != next->context.segments)
37 load_LDT(next);
40 cpu_tlbstate[cpu].active_mm = next;
42 set_bit(cpu, &next->cpu_vm_mask);
43 set_bit(cpu, &next->context.cpuvalid);
45 load_cr3(next->pgd);
50 if(cpu_tlbstate[cpu].active_mm != next)
52 if(!test_and_set_bit(cpu, &next
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-i386/
H A Dmmu_context.h28 static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, struct task_struct *tsk, unsigned cpu) argument
30 if (prev != next) {
36 if (prev->context.segments != next->context.segments)
37 load_LDT(next);
40 cpu_tlbstate[cpu].active_mm = next;
42 set_bit(cpu, &next->cpu_vm_mask);
43 set_bit(cpu, &next->context.cpuvalid);
45 load_cr3(next->pgd);
50 if(cpu_tlbstate[cpu].active_mm != next)
52 if(!test_and_set_bit(cpu, &next
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/linux/
H A Dlist.h15 * sometimes we already know the next/prev entries and we can
21 struct list_head *next, *prev; member in struct:list_head
30 (ptr)->next = (ptr); (ptr)->prev = (ptr); \
37 * the prev/next entries already!
41 struct list_head *next)
43 next->prev = new;
44 new->next = next;
46 prev->next = new;
59 __list_add(new, head, head->next);
39 __list_add(struct list_head *new, struct list_head *prev, struct list_head *next) argument
82 __list_del(struct list_head *prev, struct list_head *next) argument
252 struct hlist_node *next, **pprev; member in struct:hlist_node
272 struct hlist_node *next = n->next; local
305 hlist_add_before(struct hlist_node *n, struct hlist_node *next) argument
314 hlist_add_after(struct hlist_node *n, struct hlist_node *next) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-parisc/
H A Dmmu_context.h33 static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, struct task_struct *tsk, unsigned cpu) argument
36 if (prev != next) {
37 mtctl(__pa(next->pgd), 25);
38 load_context(next->context);
42 static inline void activate_mm(struct mm_struct *prev, struct mm_struct *next) argument
52 if (next == &init_mm) BUG(); /* Should never happen */
54 if (next->context == 0)
55 next->context = alloc_sid();
57 switch_mm(prev,next,current,0);
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-parisc/
H A Dmmu_context.h33 static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, struct task_struct *tsk, unsigned cpu) argument
36 if (prev != next) {
37 mtctl(__pa(next->pgd), 25);
38 load_context(next->context);
42 static inline void activate_mm(struct mm_struct *prev, struct mm_struct *next) argument
52 if (next == &init_mm) BUG(); /* Should never happen */
54 if (next->context == 0)
55 next->context = alloc_sid();
57 switch_mm(prev,next,current,0);
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-x86_64/
H A Dmmu_context.h31 #define activate_mm(prev, next) \
32 switch_mm((prev),(next),NULL,smp_processor_id())
35 static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, argument
38 if (prev != next) {
44 if (prev->context.segments != next->context.segments)
45 load_LDT(next);
48 cpu_tlbstate[cpu].active_mm = next;
50 set_bit(cpu, &next->cpu_vm_mask);
51 set_bit(cpu, &next->context.cpuvalid);
53 *read_pda(level4_pgt) = __pa(next
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-x86_64/
H A Dmmu_context.h31 #define activate_mm(prev, next) \
32 switch_mm((prev),(next),NULL,smp_processor_id())
35 static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, argument
38 if (prev != next) {
44 if (prev->context.segments != next->context.segments)
45 load_LDT(next);
48 cpu_tlbstate[cpu].active_mm = next;
50 set_bit(cpu, &next->cpu_vm_mask);
51 set_bit(cpu, &next->context.cpuvalid);
53 *read_pda(level4_pgt) = __pa(next
[all...]
/asus-wl-520gu-7.0.1.45/src/router/u2ec/
H A Du2ec_list.h10 struct u2ec_list_head *next, *prev; member in struct:u2ec_list_head
14 #define U2EC_INIT_LIST(_ptr) do{ (_ptr)->next = (_ptr); (_ptr)->prev = (_ptr); }while(0)
18 (_new)->next = (_next); \
19 (_prev)->next = (_new); \
24 (_del)->prev->next = (_del)->next; \
25 (_del)->next->prev = (_del)->prev; \
27 (_del)->next = (struct u2ec_list_head *)0;\
31 for (_pos = (_head)->next; \
33 _pos = (_pos)->next)
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-s390/
H A Dmmu_context.h24 static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, argument
29 if (prev != next) {
30 pgd = (__pa(next->pgd)&PAGE_MASK) |
37 set_bit(cpu, &next->cpu_vm_mask);
41 struct mm_struct *next)
43 switch_mm(prev, next, current, smp_processor_id());
40 activate_mm(struct mm_struct *prev, struct mm_struct *next) argument
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-s390x/
H A Dmmu_context.h24 static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, argument
29 if (prev != next) {
30 pgd = (__pa(next->pgd)&PAGE_MASK) | (_REGION_TABLE|USER_STD_MASK);
36 set_bit(cpu, &next->cpu_vm_mask);
40 struct mm_struct *next)
42 switch_mm(prev, next, current, smp_processor_id());
39 activate_mm(struct mm_struct *prev, struct mm_struct *next) argument
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-s390/
H A Dmmu_context.h24 static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, argument
29 if (prev != next) {
30 pgd = (__pa(next->pgd)&PAGE_MASK) |
37 set_bit(cpu, &next->cpu_vm_mask);
41 struct mm_struct *next)
43 switch_mm(prev, next, current, smp_processor_id());
40 activate_mm(struct mm_struct *prev, struct mm_struct *next) argument
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-s390x/
H A Dmmu_context.h24 static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, argument
29 if (prev != next) {
30 pgd = (__pa(next->pgd)&PAGE_MASK) | (_REGION_TABLE|USER_STD_MASK);
36 set_bit(cpu, &next->cpu_vm_mask);
40 struct mm_struct *next)
42 switch_mm(prev, next, current, smp_processor_id());
39 activate_mm(struct mm_struct *prev, struct mm_struct *next) argument
/asus-wl-520gu-7.0.1.45/src/router/e2fsprogs-1.40.8/lib/blkid/
H A Dlist.h19 * sometimes we already know the next/prev entries and we can
25 struct list_head *next, *prev; member in struct:list_head
34 (ptr)->next = (ptr); (ptr)->prev = (ptr); \
41 * the prev/next entries already!
45 struct list_head * next)
47 next->prev = add;
48 add->next = next;
50 prev->next = add;
63 __list_add(add, head, head->next);
43 __list_add(struct list_head * add, struct list_head * prev, struct list_head * next) argument
86 __list_del(struct list_head * prev, struct list_head * next) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/router/samba/source/include/
H A Ddlinklist.h21 /* To use these macros you must have a structure containing a next and
30 (p)->next = (p)->prev = NULL; \
33 (p)->next = (list); \
43 (list) = (p)->next; \
46 if ((p)->prev) (p)->prev->next = (p)->next; \
47 if ((p)->next) (p)->next->prev = (p)->prev; \
49 if ((p) && ((p) != (list))) (p)->next = (p)->prev = NULL; \
64 (p)->next
[all...]
H A Dutil_getent.h33 struct sys_grent *next; member in struct:sys_grent
48 struct sys_pwent *next; member in struct:sys_pwent
57 struct sys_userlist *next, *prev; member in struct:sys_userlist
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/hotplug/
H A Dacpiphp_res.c77 if (!((*head)->next))
84 if (((*head)->next) &&
85 ((*head)->length > (*head)->next->length)) {
88 *head = (*head)->next;
89 current_res->next = (*head)->next;
90 (*head)->next = current_res;
95 while (current_res->next && current_res->next->next) {
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/linux/
H A Dlist.h13 * sometimes we already know the next/prev entries and we can
19 struct list_head *next, *prev; member in struct:list_head
28 (ptr)->next = (ptr); (ptr)->prev = (ptr); \
35 * the prev/next entries already!
39 struct list_head *next)
41 next->prev = new;
42 new->next = next;
44 prev->next = new;
57 __list_add(new, head, head->next);
37 __list_add(struct list_head *new, struct list_head *prev, struct list_head *next) argument
80 __list_del(struct list_head *prev, struct list_head *next) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/router/library/libupnp-1.2.1/upnp/src/genlib/client_table/
H A Dclient_table.c68 //copies do not get RenewEvent Ids or next
69 out->RenewEventId = -1; out->next = NULL; return HTTP_SUCCESS;}
113 client_subscription * next; while( list ) {
115 next = list->next; free( list ); list = next;}
139 previous->next = finger->next;
141 ( *head ) = finger->next;
142 finger->next
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/mips/galileo-boards/ev64120/
H A Ddma.c42 * then this pointer should point to the next recored,otherwise it should be
76 DMA_RECORED *next = nextRecoredPointer; local
84 if (next != NULL) { /* case of chain Mode */
85 alignmentOffset = ((unsigned int) next % 16);
89 while (next != NULL) {
90 WRITE_WORD((unsigned int) next - alignmentOffset,
91 next->ByteCnt);
92 tempData = (unsigned int) next->SrcAdd;
93 WRITE_WORD((unsigned int) next + 4 -
95 tempData = (unsigned int) next
[all...]
/asus-wl-520gu-7.0.1.45/src/router/library/libupnp-1.2.1/ixml/src/
H A DnodeList.c61 IXML_NodeList *next; local
73 next = nList;
74 for( i = 0; i < index_1 && next != NULL; ++i ) {
75 next = next->next;
78 return next->nodeItem;
118 traverse = traverse->next;
126 p->next = newListItem;
128 newListItem->next
165 IXML_NodeList *next; local
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-arm/
H A Dmmu_context.h42 switch_mm(struct mm_struct *prev, struct mm_struct *next, argument
45 if (prev != next)
46 cpu_switch_mm(next->pgd, tsk);
49 #define activate_mm(prev, next) \
50 switch_mm((prev),(next),NULL,smp_processor_id())
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-arm/
H A Dmmu_context.h42 switch_mm(struct mm_struct *prev, struct mm_struct *next, argument
45 if (prev != next)
46 cpu_switch_mm(next->pgd, tsk);
49 #define activate_mm(prev, next) \
50 switch_mm((prev),(next),NULL,smp_processor_id())
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/m68k/hp300/
H A Dints.c50 for(t = hp300_irq_list[irq]; t; t=t->next)
85 n->next = NULL;
88 n->next = hp300_irq_list[irq];
92 for(t = hp300_irq_list[irq]; t->next; t = t->next)
94 n->next = NULL;
95 t->next = n;
128 hp300_irq_list[irq] = t->next;
135 for (t = hp300_irq_list[irq]; t->next && t->next
[all...]
/asus-wl-520gu-7.0.1.45/src/router/rcamdmips/
H A Dglist.c127 current_allocator->free_lists->data = list->next;
133 current_allocator->free_lists = list->next;
137 list->next = NULL;
148 list->data = list->next;
150 list->next = current_allocator->free_lists;
163 list->next = current_allocator->free_lists;
183 last->next = new_list;
205 list->prev->next = new_list;
209 new_list->next = list;
237 tmp_list->prev->next
[all...]

Completed in 285 milliseconds

1234567891011>>