Searched refs:prev (Results 76 - 100 of 590) sorted by relevance

1234567891011>>

/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/char/drm/
H A Ddrm_lock.h50 unsigned int old, new, prev; local
56 prev = cmpxchg(lock, old, new);
57 } while (prev != old);
79 unsigned int old, new, prev; local
85 prev = cmpxchg(lock, old, new);
86 } while (prev != old);
93 unsigned int old, new, prev; local
100 prev = cmpxchg(lock, old, new);
101 } while (prev != old);
235 unsigned int old, new, prev; local
[all...]
H A Dsis_ds.c87 int prev = -1; local
91 if(prev != -1)
92 set->list[prev].alloc_next = set->list[alloc].alloc_next;
97 prev = alloc;
322 TMemBlock *p,*prev; local
331 prev = NULL;
333 prev = p;
347 if (prev)
348 Join2Blocks(prev);
373 TMemBlock *p,*prev; local
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/char/drm-4.0/
H A Dlock.c51 unsigned int old, new, prev; local
57 prev = cmpxchg(lock, old, new);
58 } while (prev != old);
80 unsigned int old, new, prev; local
86 prev = cmpxchg(lock, old, new);
87 } while (prev != old);
94 unsigned int old, new, prev; local
101 prev = cmpxchg(lock, old, new);
102 } while (prev != old);
237 unsigned int old, new, prev; local
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-arm/
H A Dsystem.h47 * switch_to(prev, next) should switch from task `prev' to `next'
48 * `prev' will never be the same as `next'.
51 extern struct task_struct *__switch_to(struct task_struct *prev, struct task_struct *next);
53 #define switch_to(prev,next,last) \
55 last = __switch_to(prev,next); \
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-arm/
H A Dsystem.h47 * switch_to(prev, next) should switch from task `prev' to `next'
48 * `prev' will never be the same as `next'.
51 extern struct task_struct *__switch_to(struct task_struct *prev, struct task_struct *next);
53 #define switch_to(prev,next,last) \
55 last = __switch_to(prev,next); \
/asus-wl-520gu-7.0.1.45/src/shared/nvram/
H A Dnvram.c150 struct nvram_tuple *t, *u, **prev; local
156 for (prev = &nvram_hash[i], t = *prev; t && strcmp(t->name, name);
157 prev = &t->next, t = *prev);
169 *prev = t->next;
186 struct nvram_tuple *t, **prev; local
195 for (prev = &nvram_hash[i], t = *prev; t && strcmp(t->name, name);
196 prev
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-sh/
H A Dmmu_context.h165 static __inline__ void switch_mm(struct mm_struct *prev, argument
169 if (prev != next) {
172 clear_bit(cpu, &prev->cpu_vm_mask);
181 #define activate_mm(prev, next) \
182 switch_mm((prev),(next),NULL,smp_processor_id())
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-sparc64/
H A Drwsem.h259 u32 prev; local
264 : "=&r" (prev)
271 if (prev != old &&
272 ((prev & 0xffff) == (old & 0xffff)))
275 return prev & 0xffff;
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-sh/
H A Dmmu_context.h165 static __inline__ void switch_mm(struct mm_struct *prev, argument
169 if (prev != next) {
172 clear_bit(cpu, &prev->cpu_vm_mask);
181 #define activate_mm(prev, next) \
182 switch_mm((prev),(next),NULL,smp_processor_id())
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-sparc64/
H A Drwsem.h259 u32 prev; local
264 : "=&r" (prev)
271 if (prev != old &&
272 ((prev & 0xffff) == (old & 0xffff)))
275 return prev & 0xffff;
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/parisc/kernel/
H A Ddrivers.c181 struct parisc_driver *prev = pa_drivers; local
183 while (prev && driver != prev->next) {
184 prev = prev->next;
187 if (!prev) {
191 prev->next = driver->next;
356 struct parisc_device *prev; local
361 prev = parent->child;
362 if (prev
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/kernel/
H A Dsched.c205 static inline int preemption_goodness(struct task_struct * prev, struct task_struct * p, int cpu) argument
207 return goodness(p, cpu, prev->active_mm) - goodness(prev, cpu, prev->active_mm);
473 static inline void __schedule_tail(struct task_struct *prev) argument
479 * prev->policy can be written from here only before `prev'
480 * can be scheduled (before setting prev->cpus_runnable to ~0UL).
481 * Of course it must also be read before allowing prev
488 policy = prev
540 schedule_tail(struct task_struct *prev) argument
558 struct task_struct *prev, *next, *p; local
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-ia64/
H A Dsystem.h388 #define __switch_to(prev,next,last) do { \
389 if (((prev)->thread.flags & (IA64_THREAD_DBG_VALID|IA64_THREAD_PM_VALID)) \
390 || IS_IA32_PROCESS(ia64_task_regs(prev)) || PERFMON_IS_SYSWIDE()) \
391 ia64_save_extra(prev); \
410 # define switch_to(prev,next,last) do { \
411 if (ia64_psr(ia64_task_regs(prev))->mfh) { \
412 ia64_psr(ia64_task_regs(prev))->mfh = 0; \
413 (prev)->thread.flags |= IA64_THREAD_FPH_VALID; \
414 __ia64_save_fpu((prev)->thread.fph); \
415 (prev)
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-ia64/
H A Dsystem.h388 #define __switch_to(prev,next,last) do { \
389 if (((prev)->thread.flags & (IA64_THREAD_DBG_VALID|IA64_THREAD_PM_VALID)) \
390 || IS_IA32_PROCESS(ia64_task_regs(prev)) || PERFMON_IS_SYSWIDE()) \
391 ia64_save_extra(prev); \
410 # define switch_to(prev,next,last) do { \
411 if (ia64_psr(ia64_task_regs(prev))->mfh) { \
412 ia64_psr(ia64_task_regs(prev))->mfh = 0; \
413 (prev)->thread.flags |= IA64_THREAD_FPH_VALID; \
414 __ia64_save_fpu((prev)->thread.fph); \
415 (prev)
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/parport/
H A Ddaisy.c62 struct daisydev *prev = topology; local
63 while (prev->next && prev->next->devnum < devnum)
64 prev = prev->next;
65 newdev->next = prev->next;
66 prev->next = newdev;
157 struct daisydev *dev, *prev = topology; local
158 while (prev && prev
[all...]
/asus-wl-520gu-7.0.1.45/src/router/rp-l2tp/libevent/
H A Dhash.c83 b->prev = NULL;
86 b->next->prev = b;
109 if (b->prev) {
110 b->prev->next = b->next;
115 b->next->prev = b->prev;
/asus-wl-520gu-7.0.1.45/src/router/samba/source/smbd/
H A Dblocking.c520 blocking_lock_record *prev = NULL; local
532 free_blocking_lock_record((blocking_lock_record *)ubi_slRemNext( &blocking_lock_queue, prev));
533 blr = (blocking_lock_record *)(prev ? ubi_slNext(prev) : ubi_slFirst(&blocking_lock_queue));
537 prev = blr;
549 blocking_lock_record *prev = NULL; local
562 free_blocking_lock_record((blocking_lock_record *)ubi_slRemNext( &blocking_lock_queue, prev));
563 blr = (blocking_lock_record *)(prev ? ubi_slNext(prev) : ubi_slFirst(&blocking_lock_queue));
567 prev
619 blocking_lock_record *prev = NULL; local
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-m68k/
H A Dmmu_context.h82 static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, struct task_struct *tsk, unsigned cpu) argument
84 if (prev != next) {
138 static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, struct task_struct *tsk, unsigned cpu) argument
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-m68k/
H A Dmmu_context.h82 static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, struct task_struct *tsk, unsigned cpu) argument
84 if (prev != next) {
138 static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, struct task_struct *tsk, unsigned cpu) argument
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/usb/
H A Dmicrotek.h32 struct mts_desc *prev; member in struct:mts_desc
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/linux/
H A Dmiscdevice.h49 struct miscdevice * next, * prev; member in struct:miscdevice
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/net/
H A Dip6_fw.h47 struct ip6_fw_rule *prev; member in struct:ip6_fw_rule
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/linux/
H A Dmiscdevice.h49 struct miscdevice * next, * prev; member in struct:miscdevice
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/net/
H A Dip6_fw.h47 struct ip6_fw_rule *prev; member in struct:ip6_fw_rule
/asus-wl-520gu-7.0.1.45/src/linux/linux/fs/hfs/
H A Dbnode.c40 bn->next->prev = bn->prev;
42 if (bn->prev) {
43 bn->prev->next = bn->next;
80 * If the 'sticky' argument is zero then the fields 'prev' and
100 hfs_u16 curr, prev, limit; local
114 bnode->next->prev = bnode;
145 prev = sizeof(struct NodeDescriptor);
149 if ((curr < prev) || (curr > limit)) {
156 prev
[all...]

Completed in 334 milliseconds

1234567891011>>