Searched defs:prev (Results 1 - 25 of 28) sorted by relevance

12

/include/asm-generic/
H A Dcmpxchg-local.h17 unsigned long flags, prev; local
27 case 1: prev = *(u8 *)ptr;
28 if (prev == old)
31 case 2: prev = *(u16 *)ptr;
32 if (prev == old)
35 case 4: prev = *(u32 *)ptr;
36 if (prev == old)
39 case 8: prev = *(u64 *)ptr;
40 if (prev == old)
47 return prev;
56 u64 prev; local
[all...]
H A Dmutex-xchg.h94 int prev = atomic_xchg(count, 0); local
96 if (unlikely(prev < 0)) {
99 * state. If while doing so we get back a prev value of 1
108 prev = atomic_xchg(count, prev);
109 if (prev < 0)
110 prev = 0;
113 return prev;
H A Dmmu_context.h34 static inline void switch_mm(struct mm_struct *prev, argument
/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
H A Dcontext_tracking.h15 extern void __context_tracking_task_switch(struct task_struct *prev,
51 static inline void context_tracking_task_switch(struct task_struct *prev, argument
55 __context_tracking_task_switch(prev, next);
62 static inline void context_tracking_task_switch(struct task_struct *prev, argument
H A Dvtime.h42 extern void vtime_task_switch(struct task_struct *prev);
44 extern void vtime_common_task_switch(struct task_struct *prev);
45 static inline void vtime_task_switch(struct task_struct *prev) argument
48 vtime_common_task_switch(prev);
69 static inline void vtime_task_switch(struct task_struct *prev) { } argument
H A Dagp_backend.h61 * allocated. A caller may manipulate the next and prev pointers to link
71 struct agp_memory *prev; member in struct:agp_memory
H A Dagpgart.h93 struct agp_client *prev; member in struct:agp_client
101 struct agp_controller *prev; member in struct:agp_controller
116 struct agp_file_private *prev; member in struct:agp_file_private
H A Drculist.h33 ACCESS_ONCE(list->prev) = list;
46 * the prev/next entries already!
50 struct list_head *prev, struct list_head *next)
53 new->prev = prev;
54 rcu_assign_pointer(list_next_rcu(prev), new);
55 next->prev = new;
59 struct list_head *prev, struct list_head *next);
102 __list_add_rcu(new, head->prev, head);
132 entry->prev
49 __list_add_rcu(struct list_head *new, struct list_head *prev, struct list_head *next) argument
452 hlist_add_behind_rcu(struct hlist_node *n, struct hlist_node *prev) argument
[all...]
H A Dlist.h15 * sometimes we already know the next/prev entries and we can
28 list->prev = list;
35 * the prev/next entries already!
39 struct list_head *prev,
42 next->prev = new;
44 new->prev = prev;
45 prev->next = new;
49 struct list_head *prev,
77 __list_add(new, head->prev, hea
38 __list_add(struct list_head *new, struct list_head *prev, struct list_head *next) argument
87 __list_del(struct list_head * prev, struct list_head * next) argument
274 __list_splice(const struct list_head *list, struct list_head *prev, struct list_head *next) argument
658 hlist_add_behind(struct hlist_node *n, struct hlist_node *prev) argument
[all...]
H A Disdn_ppp.h64 struct isdn_ppp_compressor *next, *prev; member in struct:isdn_ppp_compressor
H A Dmemcontrol.h254 struct mem_cgroup *prev,
261 struct mem_cgroup *prev)
253 mem_cgroup_iter(struct mem_cgroup *root, struct mem_cgroup *prev, struct mem_cgroup_reclaim_cookie *reclaim) argument
260 mem_cgroup_iter_break(struct mem_cgroup *root, struct mem_cgroup *prev) argument
H A Drcupdate.h288 static inline void rcu_user_hooks_switch(struct task_struct *prev, argument
H A Dtypes.h187 struct list_head *next, *prev; member in struct:list_head
H A Dparport.h147 struct pardevice *prev; member in struct:pardevice
H A Drio.h167 * @prev: Previous RIO device connected to the current one
196 struct rio_dev *prev; member in struct:rio_dev
H A Dof.h163 extern struct device_node *of_find_all_nodes(struct device_node *prev);
236 struct device_node *prev);
238 const struct device_node *node, struct device_node *prev);
394 const struct device_node *node, struct device_node *prev)
400 const struct device_node *node, struct device_node *prev)
393 of_get_next_child( const struct device_node *node, struct device_node *prev) argument
399 of_get_next_available_child( const struct device_node *node, struct device_node *prev) argument
H A Dperf_event.h554 extern void __perf_event_task_sched_in(struct task_struct *prev,
556 extern void __perf_event_task_sched_out(struct task_struct *prev,
700 static inline void perf_event_task_sched_in(struct task_struct *prev, argument
704 __perf_event_task_sched_in(prev, task);
707 static inline void perf_event_task_sched_out(struct task_struct *prev, argument
713 __perf_event_task_sched_out(prev, next);
801 perf_event_task_sched_in(struct task_struct *prev, argument
804 perf_event_task_sched_out(struct task_struct *prev, argument
/include/uapi/linux/netfilter/
H A Dxt_limit.h18 unsigned long prev; /* moved to xt_limit_priv */ member in struct:xt_rateinfo
/include/uapi/linux/netfilter_bridge/
H A Debt_limit.h19 unsigned long prev; member in struct:ebt_limit_info
/include/crypto/
H A Ddrbg.h120 unsigned char *prev; /* FIPS 140-2 continuous test value */ member in struct:drbg_state
/include/net/
H A Dinet_connection_sock.h311 struct request_sock **prev)
313 reqsk_queue_unlink(&inet_csk(sk)->icsk_accept_queue, req, prev);
318 struct request_sock **prev)
320 inet_csk_reqsk_queue_unlink(sk, req, prev);
309 inet_csk_reqsk_queue_unlink(struct sock *sk, struct request_sock *req, struct request_sock **prev) argument
316 inet_csk_reqsk_queue_drop(struct sock *sk, struct request_sock *req, struct request_sock **prev) argument
/include/uapi/drm/
H A Dvia_drm.h179 unsigned char next, prev; /* indices to form a circular LRU */ member in struct:_drm_via_tex_region
H A Di810_drm.h144 unsigned char next, prev; /* indices to form a circular LRU */ member in struct:_drm_i810_tex_region
/include/sound/
H A Dgus.h199 struct snd_gf1_mem_block *prev; member in struct:snd_gf1_mem_block

Completed in 5337 milliseconds

12