Searched refs:prev (Results 1 - 25 of 1642) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/bzip2/
H A Dformat.pl43 my ($prev, $curr, $str);
44 $prev = ''; $curr = '';
47 print OUTFILE $prev;
48 $prev = $curr;
52 if ( $prev =~ /<programlisting>$|<screen>$/ ) {
53 chomp $prev;
54 $curr = join( '', $prev, "<![CDATA[", $curr );
55 $prev = '';
59 chomp $prev;
60 $curr = join( '', $prev, "]]>",
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/lib/
H A Dlist_debug.c16 * the prev/next entries already!
20 struct list_head *prev,
23 WARN(next->prev != prev,
24 "list_add corruption. next->prev should be "
25 "prev (%p), but was %p. (next=%p).\n",
26 prev, next->prev, next);
27 WARN(prev->next != next,
28 "list_add corruption. prev
19 __list_add(struct list_head *new, 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/include/asm-generic/
H A Dmutex-xchg.h89 int prev = atomic_xchg(count, 0); local
91 if (unlikely(prev < 0)) {
94 * state. If while doing so we get back a prev value of 1
103 prev = atomic_xchg(count, prev);
104 if (prev < 0)
105 prev = 0;
108 return prev;
H A Dcmpxchg-local.h25 unsigned long flags, prev; local
35 case 1: prev = *(u8 *)ptr;
36 if (prev == old)
39 case 2: prev = *(u16 *)ptr;
40 if (prev == old)
43 case 4: prev = *(u32 *)ptr;
44 if (prev == old)
47 case 8: prev = *(u64 *)ptr;
48 if (prev == old)
55 return prev;
64 u64 prev; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/miscutils/
H A Drunlevel.c22 char prev; local
29 prev = ut->ut_pid / 256;
30 if (prev == 0) prev = 'N';
31 printf("%c %c\n", prev, ut->ut_pid % 256);
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/blkid/
H A Dlist.c9 * the prev/next entries already!
12 struct list_head * prev,
15 next->prev = add;
17 add->prev = prev;
18 prev->next = add;
44 __list_add(add, head->prev, head);
48 * Delete a list entry by making the prev/next entries
52 * the prev/next entries already!
54 void __list_del(struct list_head * prev, struc argument
11 __list_add(struct list_head * add, struct list_head * prev, struct list_head * next) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/include/atalk/
H A Dlist.h12 * sometimes we already know the next/prev entries and we can
18 struct list_head *next, *prev; member in struct:list_head
27 (ptr)->next = (ptr); (ptr)->prev = (ptr); \
35 * the prev/next entries already!
38 struct list_head * prev,
41 next->prev = new;
43 new->prev = prev;
44 prev->next = new;
70 __list_add(new, head->prev, hea
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...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/ext2fs/
H A Dkernel-list.h10 * sometimes we already know the next/prev entries and we can
16 struct list_head *next, *prev; member in struct:list_head
25 (ptr)->next = (ptr); (ptr)->prev = (ptr); \
36 * the prev/next entries already!
39 struct list_head * prev,
42 next->prev = new;
44 new->prev = prev;
45 prev->next = new;
61 __list_add(new, head->prev, hea
38 __list_add(struct list_head * new, struct list_head * prev, struct list_head * next) argument
71 __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/arch/x86/lib/
H A Dcmpxchg.c12 u8 prev; local
17 prev = *(u8 *)ptr;
18 if (prev == old)
21 return prev;
27 u16 prev; local
32 prev = *(u16 *)ptr;
33 if (prev == old)
36 return prev;
42 u32 prev; local
47 prev
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/tools/perf/util/include/linux/
H A Dlist.h15 begin->prev->next = end->next;
16 end->next->prev = begin->prev;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/include/
H A Ddlinklist.h22 prev pointer */
33 (p)->next = (p)->prev = NULL; \
35 (list)->prev = (p); \
37 (p)->prev = NULL; \
47 if (list) (list)->prev = NULL; \
49 if ((p)->prev) (p)->prev->next = (p)->next; \
50 if ((p)->next) (p)->next->prev = (p)->prev; \
52 if ((p) != (list)) (p)->next = (p)->prev
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/tools/firewire/
H A Dlist.h2 struct list *next, *prev; member in struct:list
9 list->prev = list;
21 new_link->prev = link->prev;
23 new_link->prev->next = new_link;
24 new_link->next->prev = new_link;
42 link->prev->next = link->next;
43 link->next->prev = link->prev;
53 list_entry((list)->prev, typ
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/alsa-lib-1.0.26/include/
H A Dlist.h13 * sometimes we already know the next/prev entries and we can
20 struct list_head *next, *prev; member in struct:list_head
30 (ptr)->next = (ptr); (ptr)->prev = (ptr); \
37 * the prev/next entries already!
40 struct list_head * prev,
43 next->prev = _new;
45 _new->prev = prev;
46 prev->next = _new;
72 __list_add(_new, head->prev, hea
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
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/cris/include/asm/
H A Dmmu_context.h9 extern void switch_mm(struct mm_struct *prev, struct mm_struct *next,
14 #define activate_mm(prev,next) switch_mm((prev),(next),NULL)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/docs_src/images/
H A DMakefile3 COPY= api.gif next.gif prev.gif ps.gif ref.gif
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/etc/papd/
H A Dauth.c47 struct uam_obj *prev, *start; local
52 prev = start;
54 while((prev = prev->uam_prev) != start) {
55 strcat(uamnames, prev->uam_name);
69 struct uam_obj *prev, *start; local
74 prev = start;
75 while ((prev = prev->uam_prev) != start)
76 if (strndiacasecmp(prev
131 struct uam_mod *mod, *prev, *start = &uam_modules; local
[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/components/opensource/linux/linux-2.6.36/include/linux/
H A Duser-return-notifier.h18 static inline void propagate_user_return_notify(struct task_struct *prev, argument
21 if (test_tsk_thread_flag(prev, TIF_USER_RETURN_NOTIFY)) {
22 clear_tsk_thread_flag(prev, TIF_USER_RETURN_NOTIFY);
38 static inline void propagate_user_return_notify(struct task_struct *prev, argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/tiff/
H A Dtif_error.c35 TIFFErrorHandler prev = _TIFFerrorHandler; local
37 return (prev);
H A Dtif_warning.c35 TIFFErrorHandler prev = _TIFFwarningHandler; local
37 return (prev);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/include/asm/
H A Dmmu_context.h12 static inline void paravirt_activate_mm(struct mm_struct *prev, argument
33 static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, argument
38 if (likely(prev != next)) {
49 cpumask_clear_cpu(cpu, mm_cpumask(prev));
54 if (unlikely(prev->context.ldt != next->context.ldt))
74 #define activate_mm(prev, next) \
76 paravirt_activate_mm((prev), (next)); \
77 switch_mm((prev), (next), NULL); \
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/xtensa/include/asm/
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/src/router/iptables-1.x/include/linux/netfilter_ipv4/
H A Dipt_limit.h14 u_int64_t prev; member in struct:ipt_rateinfo
18 unsigned long prev; member in struct:ipt_rateinfo
/netgear-R7000-V1.0.7.12_1.2.5/src/router/iptables-1.x/include/linux/netfilter_ipv6/
H A Dip6t_limit.h14 u_int64_t prev; member in struct:ip6t_rateinfo
18 unsigned long prev; member in struct:ip6t_rateinfo
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/frv/include/asm/
H A Dmmu_context.h35 #define switch_mm(prev, next, tsk) \
37 if (prev != next) \
38 change_mm_context(&prev->context, &next->context, next->pgd); \
41 #define activate_mm(prev, next) \
43 change_mm_context(&prev->context, &next->context, next->pgd); \

Completed in 138 milliseconds

1234567891011>>