Home
last modified time | relevance | path

Searched refs:prev (Results 1 – 25 of 772) sorted by relevance

12345678910>>...31

/external/qemu/android/utils/
Dlist.h32 ACList* prev; member
39 list->next = list->prev = list; in alist_init()
55 entry->prev = list; in alist_insert_head()
56 next->prev = entry; in alist_insert_head()
63 ACList* const prev = list->prev; in alist_insert_tail() local
65 entry->prev = prev; in alist_insert_tail()
66 prev->next = entry; in alist_insert_tail()
67 list->prev = entry; in alist_insert_tail()
76 ACList* const prev = entry->prev; in alist_remove() local
77 prev->next = next; in alist_remove()
[all …]
/external/mesa3d/src/glsl/
Dlist.h80 struct exec_node *prev; member
102 exec_node() : next(NULL), prev(NULL) in exec_node()
119 return prev; in get_prev()
124 return prev; in get_prev()
129 next->prev = prev; in remove()
130 prev->next = next; in remove()
132 prev = NULL; in remove()
143 prev = this; in self_link()
152 after->prev = this; in insert_after()
154 this->next->prev = after; in insert_after()
[all …]
/external/kernel-headers/original/asm-x86/
Dcmpxchg_32.h122 unsigned long prev; in __cmpxchg() local
126 : "=a"(prev) in __cmpxchg()
129 return prev; in __cmpxchg()
132 : "=a"(prev) in __cmpxchg()
135 return prev; in __cmpxchg()
138 : "=a"(prev) in __cmpxchg()
141 return prev; in __cmpxchg()
155 unsigned long prev; in __sync_cmpxchg() local
159 : "=a"(prev) in __sync_cmpxchg()
162 return prev; in __sync_cmpxchg()
[all …]
/external/blktrace/btt/
Dlist.h35 struct list_head *next, *prev; member
46 list->prev = list; in INIT_LIST_HEAD()
56 struct list_head *prev, in __list_add() argument
59 next->prev = new; in __list_add()
61 new->prev = prev; in __list_add()
62 prev->next = new; in __list_add()
88 __list_add(new, head->prev, head); in list_add_tail()
98 static inline void __list_del(struct list_head * prev, struct list_head * next) in __list_del() argument
100 next->prev = prev; in __list_del()
101 prev->next = next; in __list_del()
[all …]
/external/openssh/
Dmonitor_mm.c214 struct mm_share *mms, *prev, tmp; in mm_free() local
230 prev = mms; in mm_free()
231 if (RB_LEFT(prev, next)) { in mm_free()
232 prev = RB_LEFT(prev, next); in mm_free()
233 while (RB_RIGHT(prev, next)) in mm_free()
234 prev = RB_RIGHT(prev, next); in mm_free()
236 if (RB_PARENT(prev, next) && in mm_free()
237 (prev == RB_RIGHT(RB_PARENT(prev, next), next))) in mm_free()
238 prev = RB_PARENT(prev, next); in mm_free()
240 while (RB_PARENT(prev, next) && in mm_free()
[all …]
/external/bluetooth/glib/glib/
Dglist.c131 new_list->prev = last; in g_list_append()
137 new_list->prev = NULL; in g_list_append()
175 new_list->prev = list->prev; in g_list_prepend()
176 if (list->prev) in g_list_prepend()
177 list->prev->next = new_list; in g_list_prepend()
178 list->prev = new_list; in g_list_prepend()
181 new_list->prev = NULL; in g_list_prepend()
217 new_list->prev = tmp_list->prev; in g_list_insert()
218 if (tmp_list->prev) in g_list_insert()
219 tmp_list->prev->next = new_list; in g_list_insert()
[all …]
/external/e2fsprogs/lib/ext2fs/
Dkernel-list.h15 struct list_head *next, *prev; member
24 (ptr)->next = (ptr); (ptr)->prev = (ptr); \
38 struct list_head * prev, in __list_add() argument
41 next->prev = new; in __list_add()
43 new->prev = prev; in __list_add()
44 prev->next = new; in __list_add()
60 __list_add(new, head->prev, head); in list_add_tail()
70 static __inline__ void __list_del(struct list_head * prev, in __list_del() argument
73 next->prev = prev; in __list_del()
74 prev->next = next; in __list_del()
[all …]
/external/oprofile/libutil/
Dop_list.h25 struct list_head * next, * prev; member
37 ptr->prev = ptr; in list_init()
47 struct list_head * prev, in __list_add() argument
50 next->prev = new_entry; in __list_add()
52 new_entry->prev = prev; in __list_add()
53 prev->next = new_entry; in __list_add()
79 __list_add(new_entry, head->prev, head); in list_add_tail()
89 static __inline__ void __list_del(struct list_head * prev, in __list_del() argument
92 next->prev = prev; in __list_del()
93 prev->next = next; in __list_del()
[all …]
/external/e2fsprogs/lib/blkid/
Dlist.h25 struct list_head *next, *prev; member
34 (ptr)->next = (ptr); (ptr)->prev = (ptr); \
44 struct list_head * prev, in __list_add() argument
47 next->prev = add; in __list_add()
49 add->prev = prev; in __list_add()
50 prev->next = add; in __list_add()
76 __list_add(add, head->prev, head); in list_add_tail()
86 _INLINE_ void __list_del(struct list_head * prev, in __list_del() argument
89 next->prev = prev; in __list_del()
90 prev->next = next; in __list_del()
[all …]
/external/linux-tools-perf/util/include/linux/added/
Dlist.h14 list->prev = list; in INIT_LIST_HEAD()
25 struct list_head *prev, in __list_add() argument
28 next->prev = new; in __list_add()
30 new->prev = prev; in __list_add()
31 prev->next = new; in __list_add()
35 struct list_head *prev,
63 __list_add(new, head->prev, head); in list_add_tail()
73 static inline void __list_del(struct list_head * prev, struct list_head * next) in __list_del() argument
75 next->prev = prev; in __list_del()
76 prev->next = next; in __list_del()
[all …]
/external/chromium/net/disk_cache/
Drankings.cc246 if (head.Data()->prev != my_head.value() && // Normal path. in Insert()
247 head.Data()->prev != node->address().value()) { // FinishInsert(). in Insert()
252 head.Data()->prev = node->address().value(); in Insert()
259 node->Data()->prev = node->address().value(); in Insert()
307 node->Data()->next, node->Data()->prev, list); in Remove()
313 Addr prev_addr(node->Data()->prev); in Remove()
323 CacheRankingsBlock prev(backend_->File(prev_addr), prev_addr); in Remove() local
324 if (!GetRanking(&next) || !GetRanking(&prev)) in Remove()
327 if (!CheckLinks(node, &prev, &next, &list)) in Remove()
331 prev.Data()->next = next.address().value(); in Remove()
[all …]
/external/bzip2/
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, "]]>", $curr );
[all …]
/external/valgrind/tsan/
Dts_atomic.cc154 uint64_t* prev) { in tsan_atomic_do_op() argument
158 *prev = *(uint8_t volatile*)a; in tsan_atomic_do_op()
160 *prev = *(uint16_t volatile*)a; in tsan_atomic_do_op()
162 *prev = *(uint32_t volatile*)a; in tsan_atomic_do_op()
164 *prev = *(uint64_t volatile*)a; in tsan_atomic_do_op()
169 return *prev; in tsan_atomic_do_op()
177 *prev = vv; in tsan_atomic_do_op()
182 *prev = vv; in tsan_atomic_do_op()
187 *prev = vv; in tsan_atomic_do_op()
193 *prev = vv; in tsan_atomic_do_op()
[all …]
/external/kernel-headers/original/linux/
Dlist.h22 struct list_head *next, *prev; member
33 list->prev = list; in INIT_LIST_HEAD()
43 struct list_head *prev, in __list_add() argument
46 next->prev = new; in __list_add()
48 new->prev = prev; in __list_add()
49 prev->next = new; in __list_add()
75 __list_add(new, head->prev, head); in list_add_tail()
85 struct list_head * prev, struct list_head * next) in __list_add_rcu() argument
88 new->prev = prev; in __list_add_rcu()
90 next->prev = new; in __list_add_rcu()
[all …]
/external/yaffs2/yaffs2/
Ddevextras.h57 struct list_head *next, *prev; member
66 (ptr)->next = (ptr); (ptr)->prev = (ptr); \
76 struct list_head *prev, in __list_add() argument
79 next->prev = new; in __list_add()
81 new->prev = prev; in __list_add()
82 prev->next = new; in __list_add()
109 __list_add(new, head->prev, head); in list_add_tail()
119 static __inline__ void __list_del(struct list_head *prev, in __list_del() argument
122 next->prev = prev; in __list_del()
123 prev->next = next; in __list_del()
[all …]
/external/mesa3d/src/mesa/main/
Dsimple_list.h42 struct simple_node *prev; member
52 (elem)->next->prev = (elem)->prev; \
53 (elem)->prev->next = (elem)->next; \
64 (elem)->prev = list; \
66 (list)->next->prev = elem; \
79 (elem)->prev = (list)->prev; \
80 (list)->prev->next = elem; \
81 (list)->prev = elem; \
116 (sentinal)->prev = sentinal; \
135 #define last_elem(list) ((list)->prev)
[all …]
/external/iptables/libiptc/
Dlinux_list.h54 struct list_head *next, *prev; member
63 (ptr)->next = (ptr); (ptr)->prev = (ptr); \
73 struct list_head *prev, in __list_add() argument
76 next->prev = new; in __list_add()
78 new->prev = prev; in __list_add()
79 prev->next = new; in __list_add()
105 __list_add(new, head->prev, head); in list_add_tail()
115 struct list_head * prev, struct list_head * next) in __list_add_rcu() argument
118 new->prev = prev; in __list_add_rcu()
120 next->prev = new; in __list_add_rcu()
[all …]
/external/libnl-headers/netlink/
Dlist.h18 struct nl_list_head * prev; member
24 list->prev = list; in NL_INIT_LIST_HEAD()
28 struct nl_list_head *prev, in __nl_list_add() argument
31 prev->next = obj; in __nl_list_add()
32 obj->prev = prev; in __nl_list_add()
33 next->prev = obj; in __nl_list_add()
40 __nl_list_add(obj, head->prev, head); in nl_list_add_tail()
51 obj->next->prev = obj->prev; in nl_list_del()
52 obj->prev->next = obj->next; in nl_list_del()
71 ((pos)->member.prev == (head))
[all …]
/external/freetype/src/cache/
Dftcmru.c37 FTC_MruNode last = first->prev; in FTC_MruNode_Prepend()
58 first->prev = node; in FTC_MruNode_Prepend()
61 node->prev = last; in FTC_MruNode_Prepend()
66 node->prev = node; in FTC_MruNode_Prepend()
83 FTC_MruNode prev, next, last; in FTC_MruNode_Up() local
102 prev = node->prev; in FTC_MruNode_Up()
105 prev->next = next; in FTC_MruNode_Up()
106 next->prev = prev; in FTC_MruNode_Up()
108 last = first->prev; in FTC_MruNode_Up()
111 first->prev = node; in FTC_MruNode_Up()
[all …]
/external/quake/quake/src/QW/client/
Dr_edge.c198 edgestoadd->prev = edgelist->prev; in R_InsertNewEdges()
199 edgelist->prev->next = edgestoadd; in R_InsertNewEdges()
200 edgelist->prev = edgestoadd; in R_InsertNewEdges()
219 pedge->next->prev = pedge->prev; in R_RemoveEdges()
220 pedge->prev->next = pedge->next; in R_RemoveEdges()
242 if (pedge->u < pedge->prev->u) in R_StepActiveU()
247 if (pedge->u < pedge->prev->u) in R_StepActiveU()
252 if (pedge->u < pedge->prev->u) in R_StepActiveU()
257 if (pedge->u < pedge->prev->u) in R_StepActiveU()
271 pedge->next->prev = pedge->prev; in R_StepActiveU()
[all …]
/external/quake/quake/src/WinQuake/
Dr_edge.cpp198 edgestoadd->prev = edgelist->prev; in R_InsertNewEdges()
199 edgelist->prev->next = edgestoadd; in R_InsertNewEdges()
200 edgelist->prev = edgestoadd; in R_InsertNewEdges()
219 pedge->next->prev = pedge->prev; in R_RemoveEdges()
220 pedge->prev->next = pedge->next; in R_RemoveEdges()
242 if (pedge->u < pedge->prev->u) in R_StepActiveU()
247 if (pedge->u < pedge->prev->u) in R_StepActiveU()
252 if (pedge->u < pedge->prev->u) in R_StepActiveU()
257 if (pedge->u < pedge->prev->u) in R_StepActiveU()
271 pedge->next->prev = pedge->prev; in R_StepActiveU()
[all …]
/external/icu4c/common/
Ducnvbocu.c393 int32_t prev, c, diff; in _Bocu1FromUnicodeWithOffsets() local
409 prev=(int32_t)cnv->fromUnicodeStatus; in _Bocu1FromUnicodeWithOffsets()
410 if(prev==0) { in _Bocu1FromUnicodeWithOffsets()
411 prev=BOCU1_ASCII_PREV; in _Bocu1FromUnicodeWithOffsets()
433 prev=BOCU1_ASCII_PREV; in _Bocu1FromUnicodeWithOffsets()
440 diff=c-prev; in _Bocu1FromUnicodeWithOffsets()
442 prev=BOCU1_SIMPLE_PREV(c); in _Bocu1FromUnicodeWithOffsets()
469 prev=BOCU1_ASCII_PREV; in _Bocu1FromUnicodeWithOffsets()
505 diff=c-prev; in _Bocu1FromUnicodeWithOffsets()
506 prev=BOCU1_PREV(c); in _Bocu1FromUnicodeWithOffsets()
[all …]
/external/kernel-headers/original/asm-mips/
Dsystem.h48 #define __mips_mt_fpaff_switch_to(prev) \ argument
50 struct thread_info *__prev_ti = task_thread_info(prev); \
54 (!(KSTK_STATUS(prev) & ST0_CU1))) { \
56 prev->cpus_allowed = prev->thread.user_cpus_allowed; \
62 #define __mips_mt_fpaff_switch_to(prev) do { (void) (prev); } while (0) argument
65 #define switch_to(prev, next, last) \ argument
67 __mips_mt_fpaff_switch_to(prev); \
69 __save_dsp(prev); \
70 (last) = resume(prev, next, task_thread_info(next)); \
73 #define finish_arch_switch(prev) \ argument
/external/astl/src/
Dios_base.cpp53 fmtflags prev = mFlags; in flags() local
55 return prev; in flags()
59 fmtflags prev = mFlags; in setf() local
61 return prev; in setf()
65 fmtflags prev = mFlags; in setf() local
68 return prev; in setf()
76 const streamsize prev = mPrecision; in precision() local
80 return prev; in precision()
84 const streamsize prev = mWidth; in width() local
88 return prev; in width()
/external/wpa_supplicant_8/src/utils/
Dlist.h17 struct dl_list *prev; member
23 list->prev = list; in dl_list_init()
29 item->prev = list; in dl_list_add()
30 list->next->prev = item; in dl_list_add()
36 dl_list_add(list->prev, item); in dl_list_add_tail()
41 item->next->prev = item->prev; in dl_list_del()
42 item->prev->next = item->next; in dl_list_del()
44 item->prev = NULL; in dl_list_del()
74 dl_list_entry((list)->prev, type, member))
88 for (item = dl_list_entry((list)->prev, type, member); \
[all …]

12345678910>>...31