Searched refs:last (Results 1 - 200 of 4991) sorted by relevance

1234567891011>>

/linux-4.1.27/arch/score/include/asm/
H A Dswitch_to.h4 extern void *resume(void *last, void *next, void *next_ti);
6 #define switch_to(prev, next, last) \
8 (last) = resume(prev, next, task_thread_info(next)); \
/linux-4.1.27/arch/parisc/include/asm/
H A Dswitch_to.h8 #define switch_to(prev, next, last) do { \
9 (last) = _switch_to(prev, next); \
H A Ducontext.h9 sigset_t uc_sigmask; /* mask last for extensibility */
H A Dcompat_ucontext.h14 compat_sigset_t uc_sigmask; /* mask last for extensibility */
H A Dsignal.h27 sigset_t sa_mask; /* mask last for extensibility */
/linux-4.1.27/kernel/time/
H A Dtimekeeping_internal.h16 static inline cycle_t clocksource_delta(cycle_t now, cycle_t last, cycle_t mask) clocksource_delta() argument
18 cycle_t ret = (now - last) & mask; clocksource_delta()
23 static inline cycle_t clocksource_delta(cycle_t now, cycle_t last, cycle_t mask) clocksource_delta() argument
25 return (now - last) & mask; clocksource_delta()
/linux-4.1.27/arch/powerpc/include/uapi/asm/
H A Dmsgbuf.h15 __kernel_time_t msg_stime; /* last msgsnd time */
19 __kernel_time_t msg_rtime; /* last msgrcv time */
23 __kernel_time_t msg_ctime; /* last change time */
27 __kernel_pid_t msg_lspid; /* pid of last msgsnd */
28 __kernel_pid_t msg_lrpid; /* last receive pid */
H A Dshmbuf.h27 __kernel_time_t shm_atime; /* last attach time */
31 __kernel_time_t shm_dtime; /* last detach time */
35 __kernel_time_t shm_ctime; /* last change time */
41 __kernel_pid_t shm_lpid; /* pid of last operator */
H A Dsembuf.h26 __kernel_time_t sem_otime; /* last semop time */
30 __kernel_time_t sem_ctime; /* last change time */
H A Dstat.h71 int st_atime; /* Time of last access. */
73 int st_mtime; /* Time of last modification. */
75 int st_ctime; /* Time of last status change. */
H A Ducontext.h32 struct sigcontext uc_mcontext; /* last for extensibility */
/linux-4.1.27/arch/ia64/include/uapi/asm/
H A Dmsgbuf.h15 __kernel_time_t msg_stime; /* last msgsnd time */
16 __kernel_time_t msg_rtime; /* last msgrcv time */
17 __kernel_time_t msg_ctime; /* last change time */
21 __kernel_pid_t msg_lspid; /* pid of last msgsnd */
22 __kernel_pid_t msg_lrpid; /* last receive pid */
H A Dshmbuf.h16 __kernel_time_t shm_atime; /* last attach time */
17 __kernel_time_t shm_dtime; /* last detach time */
18 __kernel_time_t shm_ctime; /* last change time */
20 __kernel_pid_t shm_lpid; /* pid of last operator */
H A Dsembuf.h15 __kernel_time_t sem_otime; /* last semop time */
16 __kernel_time_t sem_ctime; /* last change time */
/linux-4.1.27/arch/alpha/include/uapi/asm/
H A Dmsgbuf.h15 __kernel_time_t msg_stime; /* last msgsnd time */
16 __kernel_time_t msg_rtime; /* last msgrcv time */
17 __kernel_time_t msg_ctime; /* last change time */
21 __kernel_pid_t msg_lspid; /* pid of last msgsnd */
22 __kernel_pid_t msg_lrpid; /* last receive pid */
H A Dshmbuf.h16 __kernel_time_t shm_atime; /* last attach time */
17 __kernel_time_t shm_dtime; /* last detach time */
18 __kernel_time_t shm_ctime; /* last change time */
20 __kernel_pid_t shm_lpid; /* pid of last operator */
H A Dsembuf.h15 __kernel_time_t sem_otime; /* last semop time */
16 __kernel_time_t sem_ctime; /* last change time */
/linux-4.1.27/arch/mips/sibyte/common/
H A Dcfe_console.c15 int i, last, written; cfe_console_write() local
17 for (i=0, last=0; i<count; i++) { cfe_console_write()
23 written = cfe_write(cfe_cons_handle, &str[last], i-last); cfe_console_write()
26 last += written; cfe_console_write()
27 } while (last < i); cfe_console_write()
32 if (last != count) { cfe_console_write()
34 written = cfe_write(cfe_cons_handle, &str[last], count-last); cfe_console_write()
37 last += written; cfe_console_write()
38 } while (last < count); cfe_console_write()
/linux-4.1.27/arch/xtensa/include/asm/
H A Dswitch_to.h15 extern void *_switch_to(void *last, void *next);
17 #define switch_to(prev,next,last) \
19 (last) = _switch_to(prev, next); \
H A Ducontext.h19 sigset_t uc_sigmask; /* mask last for extensibility */
/linux-4.1.27/include/linux/
H A Dinterval_tree.h9 unsigned long last; /* Last location _in_ interval */ member in struct:interval_tree_node
21 unsigned long start, unsigned long last);
25 unsigned long start, unsigned long last);
H A Dmsg.h20 time_t q_stime; /* last msgsnd time */
21 time_t q_rtime; /* last msgrcv time */
22 time_t q_ctime; /* last change time */
26 pid_t q_lspid; /* pid of last msgsnd */
27 pid_t q_lrpid; /* last receive pid */
H A Dinterval_tree_generic.h30 * ITSUBTREE: name of ITTYPE field within ITSTRUCT holding last-in-subtree
32 * ITLAST(n): last endpoint of ITSTRUCT node n
71 ITTYPE start = ITSTART(node), last = ITLAST(node); \
77 if (parent->ITSUBTREE < last) \
78 parent->ITSUBTREE = last; \
85 node->ITSUBTREE = last; \
96 * Iterate over intervals intersecting [start;last] \
98 * Note that a node's interval intersects [start;last] iff: \
99 * Cond1: ITSTART(node) <= last \
105 ITPREFIX ## _subtree_search(ITSTRUCT *node, ITTYPE start, ITTYPE last) \
128 if (ITSTART(node) <= last) { /* Cond1 */ \
143 ITPREFIX ## _iter_first(struct rb_root *root, ITTYPE start, ITTYPE last) \
152 return ITPREFIX ## _subtree_search(node, start, last); \
156 ITPREFIX ## _iter_next(ITSTRUCT *node, ITTYPE start, ITTYPE last) \
163 * Cond1: ITSTART(node) <= last \
172 start, last); \
185 /* Check if the node intersects [start;last] */ \
186 if (last < ITSTART(node)) /* !Cond1 */ \
H A Dgpio-pxa.h10 * actual number of the last GPIO is recorded by 'pxa_last_gpio'.
H A Di2c-pnx.h31 int last; member in struct:i2c_pnx_algo_data
/linux-4.1.27/drivers/gpu/drm/nouveau/include/nvkm/subdev/bios/
H A Dimage.h7 bool last; member in struct:nvbios_image
H A Dnpde.h5 bool last; member in struct:nvbios_npdeT
H A Dpcir.h10 bool last; member in struct:nvbios_pcirT
/linux-4.1.27/include/uapi/asm-generic/
H A Ducontext.h9 sigset_t uc_sigmask; /* mask last for extensibility */
H A Dmsgbuf.h26 __kernel_time_t msg_stime; /* last msgsnd time */
30 __kernel_time_t msg_rtime; /* last msgrcv time */
34 __kernel_time_t msg_ctime; /* last change time */
41 __kernel_pid_t msg_lspid; /* pid of last msgsnd */
42 __kernel_pid_t msg_lrpid; /* last receive pid */
H A Dstat.h36 long st_atime; /* Time of last access. */
38 long st_mtime; /* Time of last modification. */
40 long st_ctime; /* Time of last status change. */
61 int st_atime; /* Time of last access. */
63 int st_mtime; /* Time of last modification. */
65 int st_ctime; /* Time of last status change. */
H A Dshmbuf.h28 __kernel_time_t shm_atime; /* last attach time */
32 __kernel_time_t shm_dtime; /* last detach time */
36 __kernel_time_t shm_ctime; /* last change time */
41 __kernel_pid_t shm_lpid; /* pid of last operator */
H A Dsembuf.h25 __kernel_time_t sem_otime; /* last semop time */
29 __kernel_time_t sem_ctime; /* last change time */
/linux-4.1.27/arch/blackfin/include/asm/
H A Dswitch_to.h24 #define switch_to(prev,next,last) \
30 (last) = resume (prev, next); \
33 #define switch_to(prev, next, last) \
35 (last) = resume(prev, next); \
/linux-4.1.27/arch/cris/include/asm/
H A Ducontext.h9 sigset_t uc_sigmask; /* mask last for extensibility */
H A Dswitch_to.h9 #define switch_to(prev,next,last) last = resume(prev,next, \
/linux-4.1.27/arch/frv/include/asm/
H A Ducontext.h9 sigset_t uc_sigmask; /* mask last for extensibility */
H A Dswitch_to.h27 #define switch_to(prev, next, last) \
31 (last) = __switch_to(&(prev)->thread, &(next)->thread, (prev)); \
H A Dirq_regs.h16 * Per-cpu current frame pointer - the location of the last exception frame on
/linux-4.1.27/arch/m32r/include/asm/
H A Ducontext.h9 sigset_t uc_sigmask; /* mask last for extensibility */
H A Dswitch_to.h28 #define switch_to(prev, next, last) do { \
43 : "=r" (last) \
/linux-4.1.27/arch/alpha/include/asm/
H A Ducontext.h10 sigset_t uc_sigmask; /* mask last for extensibility */
/linux-4.1.27/arch/xtensa/include/uapi/asm/
H A Dmsgbuf.h24 __kernel_time_t msg_stime; /* last msgsnd time */
26 __kernel_time_t msg_rtime; /* last msgrcv time */
28 __kernel_time_t msg_ctime; /* last change time */
30 __kernel_time_t msg_stime; /* last msgsnd time */
32 __kernel_time_t msg_rtime; /* last msgrcv time */
34 __kernel_time_t msg_ctime; /* last change time */
42 __kernel_pid_t msg_lspid; /* pid of last msgsnd */
43 __kernel_pid_t msg_lrpid; /* last receive pid */
H A Dshmbuf.h26 __kernel_time_t shm_atime; /* last attach time */
28 __kernel_time_t shm_dtime; /* last detach time */
30 __kernel_time_t shm_ctime; /* last change time */
33 __kernel_pid_t shm_lpid; /* pid of last operator */
42 __kernel_time_t shm_atime; /* last attach time */
44 __kernel_time_t shm_dtime; /* last detach time */
46 __kernel_time_t shm_ctime; /* last change time */
49 __kernel_pid_t shm_lpid; /* pid of last operator */
H A Dsembuf.h29 __kernel_time_t sem_otime; /* last semop time */
31 __kernel_time_t sem_ctime; /* last change time */
35 __kernel_time_t sem_otime; /* last semop time */
37 __kernel_time_t sem_ctime; /* last change time */
H A Dstat.h49 unsigned long st_atime; /* Time of last access. */
51 unsigned long st_mtime; /* Time of last modification. */
53 unsigned long st_ctime; /* Time of last status change. */
/linux-4.1.27/arch/sparc/include/uapi/asm/
H A Dmsgbuf.h24 __kernel_time_t msg_stime; /* last msgsnd time */
26 __kernel_time_t msg_rtime; /* last msgrcv time */
28 __kernel_time_t msg_ctime; /* last change time */
32 __kernel_pid_t msg_lspid; /* pid of last msgsnd */
33 __kernel_pid_t msg_lrpid; /* last receive pid */
H A Dshmbuf.h23 __kernel_time_t shm_atime; /* last attach time */
25 __kernel_time_t shm_dtime; /* last detach time */
27 __kernel_time_t shm_ctime; /* last change time */
30 __kernel_pid_t shm_lpid; /* pid of last operator */
H A Dsembuf.h22 __kernel_time_t sem_otime; /* last semop time */
24 __kernel_time_t sem_ctime; /* last change time */
/linux-4.1.27/arch/s390/include/uapi/asm/
H A Dmsgbuf.h16 __kernel_time_t msg_stime; /* last msgsnd time */
20 __kernel_time_t msg_rtime; /* last msgrcv time */
24 __kernel_time_t msg_ctime; /* last change time */
31 __kernel_pid_t msg_lspid; /* pid of last msgsnd */
32 __kernel_pid_t msg_lrpid; /* last receive pid */
H A Dshmbuf.h17 __kernel_time_t shm_atime; /* last attach time */
21 __kernel_time_t shm_dtime; /* last detach time */
25 __kernel_time_t shm_ctime; /* last change time */
30 __kernel_pid_t shm_lpid; /* pid of last operator */
H A Dsembuf.h16 __kernel_time_t sem_otime; /* last semop time */
20 __kernel_time_t sem_ctime; /* last change time */
H A Dcmb.h9 * @elapsed_time: time since last sampling
24 * this structure, i.e. the last two members are only set when
/linux-4.1.27/arch/mn10300/include/uapi/asm/
H A Dmsgbuf.h16 __kernel_time_t msg_stime; /* last msgsnd time */
18 __kernel_time_t msg_rtime; /* last msgrcv time */
20 __kernel_time_t msg_ctime; /* last change time */
25 __kernel_pid_t msg_lspid; /* pid of last msgsnd */
26 __kernel_pid_t msg_lrpid; /* last receive pid */
H A Dshmbuf.h17 __kernel_time_t shm_atime; /* last attach time */
19 __kernel_time_t shm_dtime; /* last detach time */
21 __kernel_time_t shm_ctime; /* last change time */
24 __kernel_pid_t shm_lpid; /* pid of last operator */
H A Dsembuf.h16 __kernel_time_t sem_otime; /* last semop time */
18 __kernel_time_t sem_ctime; /* last change time */
/linux-4.1.27/arch/parisc/include/uapi/asm/
H A Dmsgbuf.h21 __kernel_time_t msg_stime; /* last msgsnd time */
25 __kernel_time_t msg_rtime; /* last msgrcv time */
29 __kernel_time_t msg_ctime; /* last change time */
33 __kernel_pid_t msg_lspid; /* pid of last msgsnd */
34 __kernel_pid_t msg_lrpid; /* last receive pid */
H A Dshmbuf.h21 __kernel_time_t shm_atime; /* last attach time */
25 __kernel_time_t shm_dtime; /* last detach time */
29 __kernel_time_t shm_ctime; /* last change time */
35 __kernel_pid_t shm_lpid; /* pid of last operator */
H A Dsembuf.h21 __kernel_time_t sem_otime; /* last semop time */
25 __kernel_time_t sem_ctime; /* last change time */
/linux-4.1.27/arch/avr32/include/uapi/asm/
H A Dmsgbuf.h16 __kernel_time_t msg_stime; /* last msgsnd time */
18 __kernel_time_t msg_rtime; /* last msgrcv time */
20 __kernel_time_t msg_ctime; /* last change time */
25 __kernel_pid_t msg_lspid; /* pid of last msgsnd */
26 __kernel_pid_t msg_lrpid; /* last receive pid */
H A Dshmbuf.h17 __kernel_time_t shm_atime; /* last attach time */
19 __kernel_time_t shm_dtime; /* last detach time */
21 __kernel_time_t shm_ctime; /* last change time */
24 __kernel_pid_t shm_lpid; /* pid of last operator */
H A Dsembuf.h16 __kernel_time_t sem_otime; /* last semop time */
18 __kernel_time_t sem_ctime; /* last change time */
/linux-4.1.27/arch/cris/include/uapi/asm/
H A Dmsgbuf.h18 __kernel_time_t msg_stime; /* last msgsnd time */
20 __kernel_time_t msg_rtime; /* last msgrcv time */
22 __kernel_time_t msg_ctime; /* last change time */
27 __kernel_pid_t msg_lspid; /* pid of last msgsnd */
28 __kernel_pid_t msg_lrpid; /* last receive pid */
H A Dshmbuf.h17 __kernel_time_t shm_atime; /* last attach time */
19 __kernel_time_t shm_dtime; /* last detach time */
21 __kernel_time_t shm_ctime; /* last change time */
24 __kernel_pid_t shm_lpid; /* pid of last operator */
H A Dsembuf.h16 __kernel_time_t sem_otime; /* last semop time */
18 __kernel_time_t sem_ctime; /* last change time */
/linux-4.1.27/arch/frv/include/uapi/asm/
H A Dmsgbuf.h16 __kernel_time_t msg_stime; /* last msgsnd time */
18 __kernel_time_t msg_rtime; /* last msgrcv time */
20 __kernel_time_t msg_ctime; /* last change time */
25 __kernel_pid_t msg_lspid; /* pid of last msgsnd */
26 __kernel_pid_t msg_lrpid; /* last receive pid */
H A Dshmbuf.h17 __kernel_time_t shm_atime; /* last attach time */
19 __kernel_time_t shm_dtime; /* last detach time */
21 __kernel_time_t shm_ctime; /* last change time */
24 __kernel_pid_t shm_lpid; /* pid of last operator */
H A Dsembuf.h16 __kernel_time_t sem_otime; /* last semop time */
18 __kernel_time_t sem_ctime; /* last change time */
/linux-4.1.27/arch/m32r/include/uapi/asm/
H A Dmsgbuf.h16 __kernel_time_t msg_stime; /* last msgsnd time */
18 __kernel_time_t msg_rtime; /* last msgrcv time */
20 __kernel_time_t msg_ctime; /* last change time */
25 __kernel_pid_t msg_lspid; /* pid of last msgsnd */
26 __kernel_pid_t msg_lrpid; /* last receive pid */
H A Dshmbuf.h17 __kernel_time_t shm_atime; /* last attach time */
19 __kernel_time_t shm_dtime; /* last detach time */
21 __kernel_time_t shm_ctime; /* last change time */
24 __kernel_pid_t shm_lpid; /* pid of last operator */
H A Dsembuf.h16 __kernel_time_t sem_otime; /* last semop time */
18 __kernel_time_t sem_ctime; /* last change time */
/linux-4.1.27/drivers/infiniband/hw/usnic/
H A Dusnic_uiom_interval_tree.h28 unsigned long last; member in struct:usnic_uiom_interval_node
43 unsigned long last);
46 unsigned long start, unsigned long last);
48 * Inserts {start...last} into {root}. If there are overlaps,
52 unsigned long start, unsigned long last,
55 * Removed {start...last} from {root}. The nodes removed are returned in
60 unsigned long start, unsigned long last,
63 * Returns {start...last} - {root} (relative complement of {start...last} in
67 unsigned long last, int flags,
H A Dusnic_uiom_interval_tree.c28 #define LAST(node) ((node)->last)
55 usnic_uiom_interval_node_alloc(long int start, long int last, int ref_cnt, usnic_uiom_interval_node_alloc() argument
64 interval->last = last; usnic_uiom_interval_node_alloc()
89 unsigned long last, find_intervals_intersection_sorted()
96 for (node = usnic_uiom_interval_tree_iter_first(root, start, last); find_intervals_intersection_sorted()
98 node = usnic_uiom_interval_tree_iter_next(node, start, last)) find_intervals_intersection_sorted()
104 int usnic_uiom_get_intervals_diff(unsigned long start, unsigned long last, usnic_uiom_get_intervals_diff() argument
116 find_intervals_intersection_sorted(root, start, last, usnic_uiom_get_intervals_diff()
132 if (pivot > interval->last) { usnic_uiom_get_intervals_diff()
134 } else if (pivot <= interval->last && usnic_uiom_get_intervals_diff()
137 pivot = interval->last + 1; usnic_uiom_get_intervals_diff()
141 if (pivot <= last) usnic_uiom_get_intervals_diff()
142 MAKE_NODE_AND_APPEND(tmp, pivot, last, 1, flags, err, err_out, usnic_uiom_get_intervals_diff()
164 unsigned long last, int flags) usnic_uiom_insert_interval()
174 find_intervals_intersection_sorted(root, start, last, usnic_uiom_insert_interval()
183 ilast = interval->last; usnic_uiom_insert_interval()
198 if (ilast > last) { usnic_uiom_insert_interval()
199 MAKE_NODE_AND_APPEND(tmp, lpivot, last, iref_cnt + 1, usnic_uiom_insert_interval()
202 MAKE_NODE_AND_APPEND(tmp, last + 1, ilast, iref_cnt, usnic_uiom_insert_interval()
213 if (lpivot <= last) usnic_uiom_insert_interval()
214 MAKE_NODE_AND_APPEND(tmp, lpivot, last, 1, flags, err, err_out, usnic_uiom_insert_interval()
235 unsigned long last, struct list_head *removed) usnic_uiom_remove_interval()
239 for (interval = usnic_uiom_interval_tree_iter_first(root, start, last); usnic_uiom_remove_interval()
243 last)) { usnic_uiom_remove_interval()
88 find_intervals_intersection_sorted(struct rb_root *root, unsigned long start, unsigned long last, struct list_head *list) find_intervals_intersection_sorted() argument
163 usnic_uiom_insert_interval(struct rb_root *root, unsigned long start, unsigned long last, int flags) usnic_uiom_insert_interval() argument
234 usnic_uiom_remove_interval(struct rb_root *root, unsigned long start, unsigned long last, struct list_head *removed) usnic_uiom_remove_interval() argument
/linux-4.1.27/mm/
H A Dinterval_tree.c35 unsigned long last = vma_last_pgoff(node); vma_interval_tree_insert_after() local
45 if (parent->shared.rb_subtree_last < last) vma_interval_tree_insert_after()
46 parent->shared.rb_subtree_last = last; vma_interval_tree_insert_after()
50 if (parent->shared.rb_subtree_last < last) vma_interval_tree_insert_after()
51 parent->shared.rb_subtree_last = last; vma_interval_tree_insert_after()
56 node->shared.rb_subtree_last = last; vma_interval_tree_insert_after()
94 unsigned long first, unsigned long last) anon_vma_interval_tree_iter_first()
96 return __anon_vma_interval_tree_iter_first(root, first, last); anon_vma_interval_tree_iter_first()
101 unsigned long first, unsigned long last) anon_vma_interval_tree_iter_next()
103 return __anon_vma_interval_tree_iter_next(node, first, last); anon_vma_interval_tree_iter_next()
93 anon_vma_interval_tree_iter_first(struct rb_root *root, unsigned long first, unsigned long last) anon_vma_interval_tree_iter_first() argument
100 anon_vma_interval_tree_iter_next(struct anon_vma_chain *node, unsigned long first, unsigned long last) anon_vma_interval_tree_iter_next() argument
/linux-4.1.27/drivers/mfd/
H A Dab8500-debugfs.c114 * @last: the last address of the range
119 u8 last; member in struct:ab8500_reg_range
172 .last = 0x02,
176 .last = 0x42,
180 .last = 0x81,
189 .last = 0x0D,
193 .last = 0x17,
197 .last = 0x30,
201 .last = 0x33,
210 .last = 0x00,
214 .last = 0x10,
218 .last = 0x84,
227 .last = 0x15,
231 .last = 0x19,
235 .last = 0x1D,
239 .last = 0x22,
243 .last = 0x44,
254 .last = 0x83,
258 .last = 0x8A,
267 .last = 0x12,
271 .last = 0x17,
275 .last = 0x21,
279 .last = 0x2C,
283 .last = 0x41,
287 .last = 0x5B,
291 .last = 0x5D,
295 .last = 0x69,
299 .last = 0x81,
312 .last = 0x82,
325 .last = 0x08,
334 .last = 0x03,
338 .last = 0x05,
342 .last = 0x40,
346 .last = 0x42,
350 .last = 0x44,
354 .last = 0x55,
358 .last = 0x82,
362 .last = 0xC2,
366 .last = 0xf6,
375 .last = 0x00,
379 .last = 0x0A,
383 .last = 0x14,
392 .last = 0x00,
401 .last = 0x07,
410 .last = 0x6F,
423 .last = 0x0F,
432 .last = 0x05,
436 .last = 0x15,
440 .last = 0x25,
444 .last = 0x35,
448 .last = 0x45,
452 .last = 0x50,
456 .last = 0x67,
460 .last = 0x80,
485 .last = 0x0F,
501 .last = 0x04,
505 .last = 0x42,
509 .last = 0x52,
513 .last = 0x57,
517 .last = 0x83,
526 .last = 0x0D,
530 .last = 0x17,
534 .last = 0x20,
538 .last = 0x30,
542 .last = 0x3A,
551 .last = 0x00,
555 .last = 0x11,
559 .last = 0x86,
568 .last = 0x06,
572 .last = 0x15,
576 .last = 0x19,
580 .last = 0x1D,
584 .last = 0x30,
588 .last = 0x48,
599 .last = 0x83,
603 .last = 0x8A,
607 .last = 0x94,
624 .last = 0x82,
637 .last = 0x08,
646 .last = 0x03,
650 .last = 0x05,
654 .last = 0x44,
658 .last = 0x57,
662 .last = 0x60,
666 .last = 0xA7,
670 .last = 0xB2,
674 .last = 0xC2,
678 .last = 0xF5,
687 .last = 0x00,
691 .last = 0x0A,
695 .last = 0x14,
704 .last = 0x83,
713 .last = 0x04,
717 .last = 0x07,
721 .last = 0x09,
725 .last = 0x0C,
729 .last = 0x15,
733 .last = 0x18,
738 .last = 0x44,
742 .last = 0x49,
746 .last = 0x4D,
750 .last = 0x55,
754 .last = 0x58,
764 .last = 0x14,
768 .last = 0x17,
777 .last = 0x06,
781 .last = 0x16,
785 .last = 0x26,
789 .last = 0x36,
793 .last = 0x46,
797 .last = 0x50,
801 .last = 0x6B,
805 .last = 0x82,
814 .last = 0x00,
818 .last = 0x05,
827 .last = 0x07,
844 .last = 0x15,
856 .last = 0x0B,
865 .last = 0x04,
869 .last = 0x42,
873 .last = 0x54,
877 .last = 0x57,
881 .last = 0x83,
885 .last = 0x90,
894 .last = 0x0D,
898 .last = 0x10,
902 .last = 0x21,
906 .last = 0x3C,
910 .last = 0x42,
919 .last = 0x15,
923 .last = 0x20,
927 .last = 0x85,
931 .last = 0x88,
940 .last = 0x06,
944 .last = 0x15,
948 .last = 0x19,
952 .last = 0x1D,
956 .last = 0x2F,
960 .last = 0x3A,
964 .last = 0x44,
968 .last = 0x49,
977 .last = 0x83,
981 .last = 0x8A,
985 .last = 0x94,
998 .last = 0x07,
1002 .last = 0x11,
1006 .last = 0x21,
1010 .last = 0x43,
1019 .last = 0x03,
1023 .last = 0x82,
1036 .last = 0x01,
1040 .last = 0x06,
1044 .last = 0x0A,
1048 .last = 0x14,
1057 .last = 0x00,
1061 .last = 0x05,
1065 .last = 0x44,
1069 .last = 0x57,
1073 .last = 0x60,
1077 .last = 0x70,
1081 .last = 0xA9,
1085 .last = 0xB2,
1089 .last = 0xC6,
1093 .last = 0xF5,
1102 .last = 0x00,
1106 .last = 0x0A,
1110 .last = 0x14,
1119 .last = 0x9f,
1128 .last = 0x05,
1132 .last = 0x0D,
1136 .last = 0x20,
1141 .last = 0x45,
1145 .last = 0x4D,
1149 .last = 0x60,
1159 .last = 0x07,
1163 .last = 0x18,
1167 .last = 0x25,
1176 .last = 0x06,
1180 .last = 0x16,
1184 .last = 0x26,
1188 .last = 0x36,
1192 .last = 0x49,
1196 .last = 0x50,
1200 .last = 0x6B,
1204 .last = 0x74,
1208 .last = 0x82,
1217 .last = 0x01,
1221 .last = 0x06,
1225 .last = 0x21,
1234 .last = 0x0C,
1238 .last = 0x11,
1242 .last = 0x81,
1259 .last = 0x3F,
1294 reg <= debug_ranges[bank].range[i].last; ab8500_registers_print()
1402 reg <= debug_ranges[bank].range[i].last; ab8500_dump_all_banks_to_mem()
H A Dab8500-sysctrl.c147 int last, ret, i, j; ab8500_sysctrl_probe() local
150 last = AB8500_SYSCLKREQ4RFCLKBUF; ab8500_sysctrl_probe()
152 last = AB8500_SYSCLKREQ8RFCLKBUF; ab8500_sysctrl_probe()
154 for (i = AB8500_SYSCLKREQ1RFCLKBUF; i <= last; i++) { ab8500_sysctrl_probe()
/linux-4.1.27/include/asm-generic/bitops/
H A Dfls64.h7 * fls64 - find last set bit in a 64-bit word
13 * fls64(value) returns 0 if value is 0 or the position of the last
14 * set bit if value is nonzero. The last (most significant) bit is
H A Dbuiltin-fls.h5 * fls - find last (most-significant) bit set
H A Dbuiltin-__fls.h5 * __fls - find last (most-significant) set bit in a long word
H A Dfls.h5 * fls - find last (most-significant) bit set
H A D__fls.h7 * __fls - find last (most-significant) set bit in a long word
/linux-4.1.27/arch/mips/include/uapi/asm/
H A Dshmbuf.h16 __kernel_time_t shm_atime; /* last attach time */
17 __kernel_time_t shm_dtime; /* last detach time */
18 __kernel_time_t shm_ctime; /* last change time */
20 __kernel_pid_t shm_lpid; /* pid of last operator */
H A Dsembuf.h15 __kernel_time_t sem_otime; /* last semop time */
16 __kernel_time_t sem_ctime; /* last change time */
H A Dmsgbuf.h20 __kernel_time_t msg_stime; /* last msgsnd time */
27 __kernel_time_t msg_rtime; /* last msgrcv time */
34 __kernel_time_t msg_ctime; /* last change time */
41 __kernel_pid_t msg_lspid; /* pid of last msgsnd */
42 __kernel_pid_t msg_lrpid; /* last receive pid */
/linux-4.1.27/net/ipv4/
H A Dtcp_vegas.h9 u32 beg_snd_nxt; /* right edge during last RTT */
10 u32 beg_snd_una; /* left edge during last RTT */
13 u16 cntRTT; /* # of RTTs measured within last RTT */
14 u32 minRTT; /* min of RTTs measured within last RTT (in usec) */
/linux-4.1.27/lib/
H A Dinterval_tree.c7 #define LAST(node) ((node)->last)
H A Dnotifier-error-inject.h17 /* The last slot must be terminated with zero sentinel */
H A Dmemweight.c29 * The reason that this last loop is distinct from the preceding memweight()
30 * bitmap_weight() call is to compute 1-bits in the last region smaller memweight()
H A Dextable.c73 const struct exception_table_entry *last, search_extable()
76 while (first <= last) { search_extable()
79 mid = ((last - first) >> 1) + first; search_extable()
87 last = mid - 1; search_extable()
72 search_extable(const struct exception_table_entry *first, const struct exception_table_entry *last, unsigned long value) search_extable() argument
H A Diommu-helper.c26 /* We don't want the last of the limit */ iommu_area_alloc()
H A Dinterval_tree_test.c37 nodes[i].last = b; init()
40 nodes[i].last = a; init()
/linux-4.1.27/tools/perf/util/
H A Dordered-events.c16 struct ordered_event *last = oe->last; queue_event() local
21 oe->last = new; queue_event()
25 if (!last) { queue_event()
32 * last event might point to some random place in the list as it's queue_event()
33 * the last queued event. We expect that the new event is close to queue_event()
36 if (last->timestamp <= timestamp) { queue_event()
37 while (last->timestamp <= timestamp) { queue_event()
38 p = last->list.next; queue_event()
44 last = list_entry(p, struct ordered_event, list); queue_event()
46 list_add_tail(&new->list, &last->list); queue_event()
48 while (last->timestamp > timestamp) { queue_event()
49 p = last->list.prev; queue_event()
54 last = list_entry(p, struct ordered_event, list); queue_event()
56 list_add(&new->list, &last->list); queue_event()
166 pr_oe_time(oe->last_flush, "last flush, last_flush_type %d\n", ordered_events__queue()
190 u64 last_ts = oe->last ? oe->last->timestamp : 0ULL; __ordered_events__flush()
219 oe->last = NULL;
221 oe->last = list_entry(head->prev, struct ordered_event, list);
246 struct ordered_event *first, *last; ordered_events__flush() local
250 last = oe->last; ordered_events__flush()
253 if (WARN_ONCE(!last || list_empty(head), "empty queue")) ordered_events__flush()
257 oe->next_flush += (last->timestamp - first->timestamp) / 2; ordered_events__flush()
/linux-4.1.27/arch/x86/include/uapi/asm/
H A Dsembuf.h15 __kernel_time_t sem_otime; /* last semop time */
17 __kernel_time_t sem_ctime; /* last change time */
/linux-4.1.27/arch/microblaze/include/asm/
H A Dswitch_to.h18 #define switch_to(prev, next, last) \
20 (last) = _switch_to(task_thread_info(prev), \
H A Ddma.h17 /* Virtual address corresponding to last available physical memory address. */
H A Dmodule.h26 /* Keep this the last entry. */
/linux-4.1.27/drivers/net/team/
H A Dteam_mode_broadcast.c22 struct team_port *last = NULL; bc_transmit() local
29 if (last) { bc_transmit()
32 ret = !team_dev_queue_xmit(team, last, bc_transmit()
38 last = cur; bc_transmit()
41 if (last) { bc_transmit()
42 ret = !team_dev_queue_xmit(team, last, skb); bc_transmit()
/linux-4.1.27/drivers/video/fbdev/core/
H A Dcfbfillrect.c38 unsigned long first, last; bitfill_aligned() local
44 last = ~fb_shifted_pixels_mask_long(p, (dst_idx+n) % bits, bswapmask); bitfill_aligned()
48 if (last) bitfill_aligned()
49 first &= last; bitfill_aligned()
78 if (last) bitfill_aligned()
79 FB_WRITEL(comp(pat, FB_READL(dst), last), dst); bitfill_aligned()
95 unsigned long first, last; bitfill_unaligned() local
101 last = ~(FB_SHIFT_HIGH(p, ~0UL, (dst_idx+n) % bits)); bitfill_unaligned()
105 if (last) bitfill_unaligned()
106 first &= last; bitfill_unaligned()
137 if (last) bitfill_unaligned()
138 FB_WRITEL(comp(pat, FB_READL(dst), last), dst); bitfill_unaligned()
151 unsigned long first, last; bitfill_aligned_rev() local
157 last = ~fb_shifted_pixels_mask_long(p, (dst_idx+n) % bits, bswapmask); bitfill_aligned_rev()
161 if (last) bitfill_aligned_rev()
162 first &= last; bitfill_aligned_rev()
201 if (last) { bitfill_aligned_rev()
203 FB_WRITEL(comp(dat ^ val, dat, last), dst); bitfill_aligned_rev()
221 unsigned long first, last, dat; bitfill_unaligned_rev() local
227 last = ~(FB_SHIFT_HIGH(p, ~0UL, (dst_idx+n) % bits)); bitfill_unaligned_rev()
231 if (last) bitfill_unaligned_rev()
232 first &= last; bitfill_unaligned_rev()
271 if (last) { bitfill_unaligned_rev()
273 FB_WRITEL(comp(dat ^ pat, dat, last), dst); bitfill_unaligned_rev()
H A Dsysfillrect.c28 unsigned long first, last; bitfill_aligned() local
34 last = ~(FB_SHIFT_HIGH(p, ~0UL, (dst_idx+n) % bits)); bitfill_aligned()
38 if (last) bitfill_aligned()
39 first &= last; bitfill_aligned()
67 if (last) bitfill_aligned()
68 *dst = comp(pat, *dst, last); bitfill_aligned()
84 unsigned long first, last; bitfill_unaligned() local
90 last = ~(FB_SHIFT_HIGH(p, ~0UL, (dst_idx+n) % bits)); bitfill_unaligned()
94 if (last) bitfill_unaligned()
95 first &= last; bitfill_unaligned()
126 if (last) bitfill_unaligned()
127 *dst = comp(pat, *dst, last); bitfill_unaligned()
139 unsigned long first, last; bitfill_aligned_rev() local
145 last = ~(FB_SHIFT_HIGH(p, ~0UL, (dst_idx+n) % bits)); bitfill_aligned_rev()
149 if (last) bitfill_aligned_rev()
150 first &= last; bitfill_aligned_rev()
177 if (last) bitfill_aligned_rev()
178 *dst = comp(*dst ^ val, *dst, last); bitfill_aligned_rev()
195 unsigned long first, last; bitfill_unaligned_rev() local
201 last = ~(FB_SHIFT_HIGH(p, ~0UL, (dst_idx+n) % bits)); bitfill_unaligned_rev()
205 if (last) bitfill_unaligned_rev()
206 first &= last; bitfill_unaligned_rev()
238 if (last) bitfill_unaligned_rev()
239 *dst = comp(*dst ^ pat, *dst, last); bitfill_unaligned_rev()
H A Dsyscopyarea.c31 unsigned long first, last; bitcpy() local
36 last = ~(FB_SHIFT_HIGH(p, ~0UL, (dst_idx+n) % bits)); bitcpy()
42 if (last) bitcpy()
43 first &= last; bitcpy()
72 if (last) bitcpy()
73 *dst = comp(*src, *dst, last); bitcpy()
85 if (last) bitcpy()
86 first &= last; bitcpy()
102 /** We must always remember the last value read, bitcpy()
159 *dst = comp(d0, *dst, last); bitcpy()
174 unsigned long first, last; bitcpy_rev() local
185 last = FB_SHIFT_HIGH(p, ~0UL, (bits + dst_idx + 1 - n) % bits); bitcpy_rev()
192 last &= first; bitcpy_rev()
193 *dst = comp(*src, *dst, last); bitcpy_rev()
221 if (last != -1UL) bitcpy_rev()
222 *dst = comp(*src, *dst, last); bitcpy_rev()
233 last &= first; bitcpy_rev()
236 *dst = comp(*src >> right, *dst, last); bitcpy_rev()
239 *dst = comp(*src << left, *dst, last); bitcpy_rev()
243 *dst, last); bitcpy_rev()
247 /** We must always remember the last value read, bitcpy_rev()
309 *dst = comp(d0, *dst, last); bitcpy_rev()
H A Dcfbcopyarea.c50 unsigned long first, last; bitcpy() local
64 last = ~fb_shifted_pixels_mask_long(p, (dst_idx+n) % bits, bswapmask); bitcpy()
71 if (last) bitcpy()
72 first &= last; bitcpy()
102 if (last) bitcpy()
103 FB_WRITEL( comp( FB_READL(src), FB_READL(dst), last), dst); bitcpy() local
115 if (last) bitcpy()
116 first &= last; bitcpy()
135 /** We must always remember the last value read, because in case bitcpy()
201 FB_WRITEL(comp(d0, FB_READL(dst), last), dst); bitcpy()
216 unsigned long first, last; bitcpy_rev() local
237 last = fb_shifted_pixels_mask_long(p, (bits + dst_idx + 1 - n) % bits, bswapmask); bitcpy_rev()
245 last &= first; bitcpy_rev()
246 FB_WRITEL( comp( FB_READL(src), FB_READL(dst), last), dst); bitcpy_rev() local
275 if (last != -1UL) bitcpy_rev()
276 FB_WRITEL( comp( FB_READL(src), FB_READL(dst), last), dst); bitcpy_rev() local
289 last &= first; bitcpy_rev()
304 FB_WRITEL(comp(d0, FB_READL(dst), last), dst); bitcpy_rev()
307 /** We must always remember the last value read, because in case bitcpy_rev()
375 FB_WRITEL(comp(d0, FB_READL(dst), last), dst); bitcpy_rev()
H A Dfbsysfs.c224 char ** last = NULL; store_bpp() local
228 var.bits_per_pixel = simple_strtoul(buf, last, 0); store_bpp()
247 char **last = NULL; store_rotate() local
251 var.rotate = simple_strtoul(buf, last, 0); store_rotate()
274 char *last = NULL; store_virtual() local
278 var.xres_virtual = simple_strtoul(buf, &last, 0); store_virtual()
279 last++; store_virtual()
280 if (last - buf >= count) store_virtual()
282 var.yres_virtual = simple_strtoul(last, &last, 0); store_virtual()
309 char *last = NULL; store_blank() local
314 err = fb_blank(fb_info, simple_strtoul(buf, &last, 0)); store_blank()
365 char *last = NULL; store_pan() local
369 var.xoffset = simple_strtoul(buf, &last, 0); store_pan()
370 last++; store_pan()
371 if (last - buf >= count) store_pan()
373 var.yoffset = simple_strtoul(last, &last, 0); store_pan()
406 char *last = NULL; store_fbstate() local
408 state = simple_strtoul(buf, &last, 0); store_fbstate()
/linux-4.1.27/arch/um/kernel/
H A Dtlb.c91 struct host_vm_op *last; add_mmap() local
96 last = &hvc->ops[hvc->index - 1]; add_mmap()
97 if ((last->type == MMAP) && add_mmap()
98 (last->u.mmap.addr + last->u.mmap.len == virt) && add_mmap()
99 (last->u.mmap.prot == prot) && (last->u.mmap.fd == fd) && add_mmap()
100 (last->u.mmap.offset + last->u.mmap.len == offset)) { add_mmap()
101 last->u.mmap.len += len; add_mmap()
125 struct host_vm_op *last; add_munmap() local
132 last = &hvc->ops[hvc->index - 1]; add_munmap()
133 if ((last->type == MUNMAP) && add_munmap()
134 (last->u.munmap.addr + last->u.mmap.len == addr)) { add_munmap()
135 last->u.munmap.len += len; add_munmap()
155 struct host_vm_op *last; add_mprotect() local
159 last = &hvc->ops[hvc->index - 1]; add_mprotect()
160 if ((last->type == MPROTECT) && add_mprotect()
161 (last->u.mprotect.addr + last->u.mprotect.len == addr) && add_mprotect()
162 (last->u.mprotect.prot == prot)) { add_mprotect()
163 last->u.mprotect.len += len; add_mprotect()
305 unsigned long addr, last; flush_tlb_kernel_range_common() local
312 last = ADD_ROUND(addr, PGDIR_SIZE); flush_tlb_kernel_range_common()
313 if (last > end) flush_tlb_kernel_range_common()
314 last = end; flush_tlb_kernel_range_common()
318 last - addr); flush_tlb_kernel_range_common()
323 addr = last; flush_tlb_kernel_range_common()
329 last = ADD_ROUND(addr, PUD_SIZE); flush_tlb_kernel_range_common()
330 if (last > end) flush_tlb_kernel_range_common()
331 last = end; flush_tlb_kernel_range_common()
335 last - addr); flush_tlb_kernel_range_common()
340 addr = last; flush_tlb_kernel_range_common()
346 last = ADD_ROUND(addr, PMD_SIZE); flush_tlb_kernel_range_common()
347 if (last > end) flush_tlb_kernel_range_common()
348 last = end; flush_tlb_kernel_range_common()
352 last - addr); flush_tlb_kernel_range_common()
357 addr = last; flush_tlb_kernel_range_common()
/linux-4.1.27/arch/um/drivers/
H A Dumcast_kern.c74 char *last; mcast_setup() local
90 init->lport = simple_strtoul(port_str, &last, 10); mcast_setup()
91 if ((*last != '\0') || (last == port_str)) { mcast_setup()
99 init->ttl = simple_strtoul(ttl_str, &last, 10); mcast_setup()
100 if ((*last != '\0') || (last == ttl_str)) { mcast_setup()
120 char *last; ucast_setup() local
136 init->lport = simple_strtoul(lport_str, &last, 10); ucast_setup()
137 if ((*last != '\0') || (last == lport_str)) { ucast_setup()
145 init->rport = simple_strtoul(rport_str, &last, 10); ucast_setup()
146 if ((*last != '\0') || (last == rport_str)) { ucast_setup()
H A Dvde_kern.c73 char *remain, *port_str = NULL, *mode_str = NULL, *last; vde_setup() local
90 init->port = simple_strtoul(port_str, &last, 10); vde_setup()
91 if ((*last != '\0') || (last == port_str)) { vde_setup()
99 init->mode = simple_strtoul(mode_str, &last, 8); vde_setup()
100 if ((*last != '\0') || (last == mode_str)) { vde_setup()
/linux-4.1.27/drivers/isdn/i4l/
H A Disdn_net.h115 // printk(KERN_DEBUG "%s: lp:%s(%p) nlp:%s(%p) last(%p)\n", isdn_net_add_to_bundle()
116 // __func__, lp->name, lp, nlp->name, nlp, lp->last); isdn_net_add_to_bundle()
117 nlp->last = lp->last; isdn_net_add_to_bundle()
118 lp->last->next = nlp; isdn_net_add_to_bundle()
119 lp->last = nlp; isdn_net_add_to_bundle()
136 // printk(KERN_DEBUG "%s: lp:%s(%p) mlp:%s(%p) last(%p) next(%p) mndq(%p)\n", isdn_net_rm_from_bundle()
137 // __func__, lp->name, lp, master_lp->name, master_lp, lp->last, lp->next, master_lp->netdev->queue); isdn_net_rm_from_bundle()
139 lp->last->next = lp->next; isdn_net_rm_from_bundle()
140 lp->next->last = lp->last; isdn_net_rm_from_bundle()
143 if (lp->next == lp) { /* last in queue */ isdn_net_rm_from_bundle()
147 lp->next = lp->last = lp; /* (re)set own pointers */ isdn_net_rm_from_bundle()
/linux-4.1.27/include/net/netfilter/
H A Dnf_conntrack_seqadj.h9 * @correction_pos: position of the last TCP sequence number modification
10 * @offset_before: sequence number offset before last modification
11 * @offset_after: sequence number offset after last modification
/linux-4.1.27/arch/avr32/include/asm/
H A Dswitch_to.h26 * switch_to(prev, next, last) should switch from task `prev' to task
39 #define switch_to(prev, next, last) \
41 last = __switch_to(prev, &prev->thread.cpu_context + 1, \
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/subdev/bios/
H A Dimage.c53 image->last = pcir.last; nvbios_imagen()
59 image->last = npde.last; nvbios_imagen()
61 image->last = true; nvbios_imagen()
73 if (image->last || !nvbios_imagen(bios, image)) nvbios_image()
/linux-4.1.27/arch/ia64/include/asm/
H A Dswitch_to.h44 #define __switch_to(prev,next,last) do { \
50 (last) = ia64_switch_to((next)); \
60 # define switch_to(prev,next,last) do { \
66 __switch_to(prev, next, last); \
76 # define switch_to(prev,next,last) __switch_to(prev, next, last)
/linux-4.1.27/arch/unicore32/include/asm/
H A Dswitch_to.h24 #define switch_to(prev, next, last) \
26 last = __switch_to(prev, task_thread_info(prev), \
/linux-4.1.27/arch/sh/include/asm/
H A Dswitch_to_64.h24 #define switch_to(prev,next,last) \
30 last = sh64_switch_to(prev, &prev->thread, next, \
H A Dtlb_64.h30 tlb <= cpu_data->dtlb.last; \
40 tlb <= cpu_data->itlb.last; \
/linux-4.1.27/arch/nios2/include/asm/
H A Dswitch_to.h17 #define switch_to(prev, next, last) \
28 (last) = _last; \
/linux-4.1.27/arch/c6x/include/asm/
H A Dswitch_to.h24 #define switch_to(prev, next, last) \
27 (last) = __switch_to(&(prev)->thread, \
/linux-4.1.27/arch/arm/include/asm/
H A Dswitch_to.h23 #define switch_to(prev,next,last) \
25 last = __switch_to(prev,task_thread_info(prev), task_thread_info(next)); \
H A Dsparsemem.h10 * to address the last byte of memory.
/linux-4.1.27/arch/arc/include/asm/
H A Dswitch_to.h31 #define switch_to(prev, next, last) \
34 last = __switch_to(prev, next);\
/linux-4.1.27/drivers/mailbox/
H A Dmailbox.h11 #define TXDONE_BY_POLL BIT(1) /* controller can read status of last TX */
/linux-4.1.27/arch/sh/mm/
H A Dextable_64.c46 const struct exception_table_entry *last, search_extable()
55 while (first <= last) { search_extable()
58 mid = (last - first) / 2 + first; search_extable()
65 last = mid-1; search_extable()
45 search_extable(const struct exception_table_entry *first, const struct exception_table_entry *last, unsigned long value) search_extable() argument
/linux-4.1.27/arch/sparc/mm/
H A Dextable.c16 const struct exception_table_entry *last, search_extable()
28 * word 3: last insn address + 4 bytes search_extable()
39 for (walk = start; walk <= last; walk++) { search_extable()
55 for (walk = start; walk <= (last - 1); walk++) { search_extable()
15 search_extable(const struct exception_table_entry *start, const struct exception_table_entry *last, unsigned long value) search_extable() argument
/linux-4.1.27/include/uapi/linux/netfilter_bridge/
H A Debt_among.h15 * The hash value of an address is its last byte.
17 * In real-world ethernet addresses, values of the last byte are
27 * fact that entropy of 3 last bytes of address is larger than entropy
28 * of 3 first bytes. So first we compare 4 last bytes of addresses and
/linux-4.1.27/arch/s390/mm/
H A Dextable.c14 const struct exception_table_entry *last, search_extable()
20 while (first <= last) { search_extable()
21 mid = ((last - first) >> 1) + first; search_extable()
26 last = mid - 1; search_extable()
13 search_extable(const struct exception_table_entry *first, const struct exception_table_entry *last, unsigned long value) search_extable() argument
/linux-4.1.27/arch/cris/include/arch-v10/arch/
H A Dtlb.h5 * The last page_id is never running - it is used as an invalid page_id
/linux-4.1.27/arch/cris/include/arch-v32/arch/
H A Dtlb.h7 * last page_id is never used so we can make TLB entries that never matches.
/linux-4.1.27/arch/m68k/include/asm/
H A Ducontext.h27 sigset_t uc_sigmask; /* mask last for extensibility */
H A Dswitch_to.h30 #define switch_to(prev,next,last) do { \
38 (last) = _last; \
/linux-4.1.27/arch/alpha/mm/
H A Dextable.c74 const struct exception_table_entry *last, search_extable()
77 while (first <= last) { search_extable()
81 mid = (last - first) / 2 + first; search_extable()
88 last = mid-1; search_extable()
73 search_extable(const struct exception_table_entry *first, const struct exception_table_entry *last, unsigned long value) search_extable() argument
/linux-4.1.27/drivers/infiniband/hw/cxgb4/
H A Did_table.c51 obj = find_next_zero_bit(alloc->table, alloc->max, alloc->last); c4iw_id_alloc()
57 alloc->last += prandom_u32() % RANDOM_SKIP; c4iw_id_alloc()
59 alloc->last = obj + 1; c4iw_id_alloc()
60 if (alloc->last >= alloc->max) c4iw_id_alloc()
61 alloc->last = 0; c4iw_id_alloc()
91 alloc->last = prandom_u32() % RANDOM_SKIP; c4iw_id_table_alloc()
93 alloc->last = 0; c4iw_id_table_alloc()
/linux-4.1.27/fs/proc/
H A Dnamespaces.c109 const struct proc_ns_operations **entry, **last; proc_ns_dir_readdir() local
119 last = &ns_entries[ARRAY_SIZE(ns_entries) - 1]; proc_ns_dir_readdir()
120 while (entry <= last) { proc_ns_dir_readdir()
143 const struct proc_ns_operations **entry, **last; proc_ns_dir_lookup() local
151 last = &ns_entries[ARRAY_SIZE(ns_entries)]; proc_ns_dir_lookup()
152 for (entry = ns_entries; entry < last; entry++) { proc_ns_dir_lookup()
158 if (entry == last) proc_ns_dir_lookup()
/linux-4.1.27/virt/kvm/
H A Dcoalesced_mmio.c49 /* last is the first free entry coalesced_mmio_has_room()
54 avail = (ring->first - ring->last - 1) % KVM_COALESCED_MMIO_MAX; coalesced_mmio_has_room()
82 ring->coalesced_mmio[ring->last].phys_addr = addr; coalesced_mmio_write()
83 ring->coalesced_mmio[ring->last].len = len; coalesced_mmio_write()
84 memcpy(ring->coalesced_mmio[ring->last].data, val, len); coalesced_mmio_write()
86 ring->last = (ring->last + 1) % KVM_COALESCED_MMIO_MAX; coalesced_mmio_write()
/linux-4.1.27/drivers/infiniband/core/
H A Dumem_rbtree.c72 /* @last is not a part of the interval. See comment for function
76 u64 start, u64 last, rbt_ib_umem_for_each_in_range()
84 if (unlikely(start == last)) rbt_ib_umem_for_each_in_range()
87 for (node = rbt_ib_umem_iter_first(root, start, last - 1); node; rbt_ib_umem_for_each_in_range()
88 node = rbt_ib_umem_iter_next(node, start, last - 1)) { rbt_ib_umem_for_each_in_range()
90 ret_val = cb(umem->umem, start, last, cookie) || ret_val; rbt_ib_umem_for_each_in_range()
75 rbt_ib_umem_for_each_in_range(struct rb_root *root, u64 start, u64 last, umem_call_back cb, void *cookie) rbt_ib_umem_for_each_in_range() argument
/linux-4.1.27/drivers/video/fbdev/
H A Dc2p_iplan2.c92 u32 dst_idx, first, last, w; c2p_iplan2() local
100 last = 0xffffU ^ (0xffffU >> ((dst_idx+width) % 16)); c2p_iplan2()
101 last |= last << 16; c2p_iplan2()
108 first &= last; c2p_iplan2()
144 store_iplan2_masked(p, bpp, d.words, last); c2p_iplan2()
H A Dc2p_planar.c94 u32 dst_idx, first, last, w; c2p_planar() local
101 last = ~(0xffffffffU >> ((dst_idx+width) % 32)); c2p_planar()
108 first &= last; c2p_planar()
147 d.words, last); c2p_planar()
/linux-4.1.27/include/uapi/linux/
H A Dmsg.h19 struct msg *msg_last; /* last message in queue,unused */
20 __kernel_time_t msg_stime; /* last msgsnd time */
21 __kernel_time_t msg_rtime; /* last msgrcv time */
22 __kernel_time_t msg_ctime; /* last change time */
28 __kernel_ipc_pid_t msg_lspid; /* pid of last msgsnd */
29 __kernel_ipc_pid_t msg_lrpid; /* last receive pid */
H A Dshm.h29 __kernel_time_t shm_atime; /* last attach time */
30 __kernel_time_t shm_dtime; /* last detach time */
31 __kernel_time_t shm_ctime; /* last change time */
33 __kernel_ipc_pid_t shm_lpid; /* pid of last operator */
H A Dcn_proc.h59 /* "last" is the last process event: exit,
60 * while "next to last" is coredumping event */
67 union { /* must be last field of proc_event struct */
H A Dtcp_metrics.h23 /* Always last. */
H A Defs_fs_sb.h34 __be32 fs_time; /* last super-block update */
43 __be32 fs_lastialloc; /* last allocated inode */
/linux-4.1.27/fs/afs/
H A Dcmservice.c172 bool last) afs_deliver_cb_callback()
181 _enter("{%u},{%u},%d", call->unmarshall, skb->len, last); afs_deliver_cb_callback()
191 ret = afs_extract_data(call, skb, last, &call->tmp, 4); afs_deliver_cb_callback()
211 ret = afs_extract_data(call, skb, last, call->buffer, afs_deliver_cb_callback()
241 ret = afs_extract_data(call, skb, last, &call->tmp, 4); afs_deliver_cb_callback()
259 ret = afs_extract_data(call, skb, last, call->request, afs_deliver_cb_callback()
297 if (!last) afs_deliver_cb_callback()
334 bool last) afs_deliver_cb_init_call_back_state()
339 _enter(",{%u},%d", skb->len, last); afs_deliver_cb_init_call_back_state()
343 if (!last) afs_deliver_cb_init_call_back_state()
367 bool last) afs_deliver_cb_init_call_back_state3()
372 _enter(",{%u},%d", skb->len, last); afs_deliver_cb_init_call_back_state3()
374 if (!last) afs_deliver_cb_init_call_back_state3()
409 bool last) afs_deliver_cb_probe()
411 _enter(",{%u},%d", skb->len, last); afs_deliver_cb_probe()
415 if (!last) afs_deliver_cb_probe()
454 bool last) afs_deliver_cb_probe_uuid()
461 _enter("{%u},{%u},%d", call->unmarshall, skb->len, last); afs_deliver_cb_probe_uuid()
465 if (!last) afs_deliver_cb_probe_uuid()
478 ret = afs_extract_data(call, skb, last, call->buffer, afs_deliver_cb_probe_uuid()
512 if (!last) afs_deliver_cb_probe_uuid()
589 struct sk_buff *skb, bool last) afs_deliver_cb_tell_me_about_yourself()
591 _enter(",{%u},%d", skb->len, last); afs_deliver_cb_tell_me_about_yourself()
595 if (!last) afs_deliver_cb_tell_me_about_yourself()
171 afs_deliver_cb_callback(struct afs_call *call, struct sk_buff *skb, bool last) afs_deliver_cb_callback() argument
332 afs_deliver_cb_init_call_back_state(struct afs_call *call, struct sk_buff *skb, bool last) afs_deliver_cb_init_call_back_state() argument
365 afs_deliver_cb_init_call_back_state3(struct afs_call *call, struct sk_buff *skb, bool last) afs_deliver_cb_init_call_back_state3() argument
408 afs_deliver_cb_probe(struct afs_call *call, struct sk_buff *skb, bool last) afs_deliver_cb_probe() argument
453 afs_deliver_cb_probe_uuid(struct afs_call *call, struct sk_buff *skb, bool last) afs_deliver_cb_probe_uuid() argument
588 afs_deliver_cb_tell_me_about_yourself(struct afs_call *call, struct sk_buff *skb, bool last) afs_deliver_cb_tell_me_about_yourself() argument
H A Dwrite.c138 candidate->first = candidate->last = index; afs_write_begin()
180 if (wb->last == index - 1 && wb->key == key && afs_write_begin()
196 ASSERTRANGE(wb->first, <=, index, <=, wb->last); afs_write_begin()
199 if (index == wb->last && to > wb->to_last) afs_write_begin()
207 _debug("append into %lx-%lx", wb->first, wb->last); afs_write_begin()
209 wb->last++; afs_write_begin()
278 pgoff_t first, pgoff_t last) afs_kill_pages()
284 vnode->fid.vid, vnode->fid.vnode, first, last); afs_kill_pages()
289 _debug("kill %lx-%lx", first, last); afs_kill_pages()
291 count = last - first + 1; afs_kill_pages()
306 } while (first < last); afs_kill_pages()
321 pgoff_t start, first, last; afs_write_back_from_locked_page() local
336 if (start >= wb->last) afs_write_back_from_locked_page()
341 n = wb->last - start + 1; afs_write_back_from_locked_page()
358 if (page->index > wb->last) afs_write_back_from_locked_page()
382 } while (start <= wb->last && count < 65536); afs_write_back_from_locked_page()
389 last = first + count - 1; afs_write_back_from_locked_page()
392 to = (last == wb->last) ? wb->to_last : PAGE_SIZE; afs_write_back_from_locked_page()
394 _debug("write back %lx[%u..] to %lx[..%u]", first, offset, last, to); afs_write_back_from_locked_page()
396 ret = afs_vnode_store_data(wb, first, last, offset, to); afs_write_back_from_locked_page()
411 afs_kill_pages(wb->vnode, true, first, last); afs_write_back_from_locked_page()
420 afs_kill_pages(wb->vnode, false, first, last); afs_write_back_from_locked_page()
576 pgoff_t first = call->first, last = call->last; afs_pages_written_back() local
580 vnode->fid.vid, vnode->fid.vnode, first, last); afs_pages_written_back()
587 _debug("done %lx-%lx", first, last); afs_pages_written_back()
589 count = last - first + 1; afs_pages_written_back()
619 } while (first <= last); afs_pages_written_back()
708 wb->last = -1; afs_fsync()
277 afs_kill_pages(struct afs_vnode *vnode, bool error, pgoff_t first, pgoff_t last) afs_kill_pages() argument
H A Dfsclient.c239 struct sk_buff *skb, bool last) afs_deliver_fs_fetch_status()
244 _enter(",,%u", last); afs_deliver_fs_fetch_status()
247 if (!last) afs_deliver_fs_fetch_status()
313 struct sk_buff *skb, bool last) afs_deliver_fs_fetch_data()
321 _enter("{%u},{%u},%d", call->unmarshall, skb->len, last); afs_deliver_fs_fetch_data()
337 ret = afs_extract_data(call, skb, last, &call->tmp, 4); afs_deliver_fs_fetch_data()
355 ret = afs_extract_data(call, skb, last, &call->tmp, 4); afs_deliver_fs_fetch_data()
375 ret = afs_extract_data(call, skb, last, buffer, afs_deliver_fs_fetch_data()
390 ret = afs_extract_data(call, skb, last, call->buffer, afs_deliver_fs_fetch_data()
414 if (!last) afs_deliver_fs_fetch_data()
536 struct sk_buff *skb, bool last) afs_deliver_fs_give_up_callbacks()
538 _enter(",{%u},%d", skb->len, last); afs_deliver_fs_give_up_callbacks()
621 struct sk_buff *skb, bool last) afs_deliver_fs_create_vnode()
626 _enter("{%u},{%u},%d", call->unmarshall, skb->len, last); afs_deliver_fs_create_vnode()
629 if (!last) afs_deliver_fs_create_vnode()
720 struct sk_buff *skb, bool last) afs_deliver_fs_remove()
725 _enter("{%u},{%u},%d", call->unmarshall, skb->len, last); afs_deliver_fs_remove()
728 if (!last) afs_deliver_fs_remove()
803 struct sk_buff *skb, bool last) afs_deliver_fs_link()
808 _enter("{%u},{%u},%d", call->unmarshall, skb->len, last); afs_deliver_fs_link()
811 if (!last) afs_deliver_fs_link()
891 struct sk_buff *skb, bool last) afs_deliver_fs_symlink()
896 _enter("{%u},{%u},%d", call->unmarshall, skb->len, last); afs_deliver_fs_symlink()
899 if (!last) afs_deliver_fs_symlink()
998 struct sk_buff *skb, bool last) afs_deliver_fs_rename()
1003 _enter("{%u},{%u},%d", call->unmarshall, skb->len, last); afs_deliver_fs_rename()
1006 if (!last) afs_deliver_fs_rename()
1104 struct sk_buff *skb, bool last) afs_deliver_fs_store_data()
1109 _enter(",,%u", last); afs_deliver_fs_store_data()
1112 if (!last) { afs_deliver_fs_store_data()
1157 pgoff_t first, pgoff_t last, afs_fs_store_data64()
1182 call->last = last; afs_fs_store_data64()
1216 pgoff_t first, pgoff_t last, afs_fs_store_data()
1229 if (first != last) afs_fs_store_data()
1230 size += (loff_t)(last - first) << PAGE_SHIFT; afs_fs_store_data()
1243 return afs_fs_store_data64(server, wb, first, last, offset, to, afs_fs_store_data()
1259 call->last = last; afs_fs_store_data()
1290 struct sk_buff *skb, bool last) afs_deliver_fs_store_status()
1296 _enter(",,%u", last); afs_deliver_fs_store_status()
1299 if (!last) { afs_deliver_fs_store_status()
1489 struct sk_buff *skb, bool last) afs_deliver_fs_get_volume_status()
1495 _enter("{%u},{%u},%d", call->unmarshall, skb->len, last); afs_deliver_fs_get_volume_status()
1505 ret = afs_extract_data(call, skb, last, call->buffer, afs_deliver_fs_get_volume_status()
1520 ret = afs_extract_data(call, skb, last, &call->tmp, 4); afs_deliver_fs_get_volume_status()
1538 ret = afs_extract_data(call, skb, last, call->reply3, afs_deliver_fs_get_volume_status()
1562 ret = afs_extract_data(call, skb, last, call->buffer, afs_deliver_fs_get_volume_status()
1576 ret = afs_extract_data(call, skb, last, &call->tmp, 4); afs_deliver_fs_get_volume_status()
1594 ret = afs_extract_data(call, skb, last, call->reply3, afs_deliver_fs_get_volume_status()
1618 ret = afs_extract_data(call, skb, last, call->buffer, afs_deliver_fs_get_volume_status()
1632 ret = afs_extract_data(call, skb, last, &call->tmp, 4); afs_deliver_fs_get_volume_status()
1650 ret = afs_extract_data(call, skb, last, call->reply3, afs_deliver_fs_get_volume_status()
1674 ret = afs_extract_data(call, skb, last, call->buffer, afs_deliver_fs_get_volume_status()
1693 if (!last) afs_deliver_fs_get_volume_status()
1764 struct sk_buff *skb, bool last) afs_deliver_fs_xxxx_lock()
1768 _enter("{%u},{%u},%d", call->unmarshall, skb->len, last); afs_deliver_fs_xxxx_lock()
1771 if (!last) afs_deliver_fs_xxxx_lock()
238 afs_deliver_fs_fetch_status(struct afs_call *call, struct sk_buff *skb, bool last) afs_deliver_fs_fetch_status() argument
312 afs_deliver_fs_fetch_data(struct afs_call *call, struct sk_buff *skb, bool last) afs_deliver_fs_fetch_data() argument
535 afs_deliver_fs_give_up_callbacks(struct afs_call *call, struct sk_buff *skb, bool last) afs_deliver_fs_give_up_callbacks() argument
620 afs_deliver_fs_create_vnode(struct afs_call *call, struct sk_buff *skb, bool last) afs_deliver_fs_create_vnode() argument
719 afs_deliver_fs_remove(struct afs_call *call, struct sk_buff *skb, bool last) afs_deliver_fs_remove() argument
802 afs_deliver_fs_link(struct afs_call *call, struct sk_buff *skb, bool last) afs_deliver_fs_link() argument
890 afs_deliver_fs_symlink(struct afs_call *call, struct sk_buff *skb, bool last) afs_deliver_fs_symlink() argument
997 afs_deliver_fs_rename(struct afs_call *call, struct sk_buff *skb, bool last) afs_deliver_fs_rename() argument
1103 afs_deliver_fs_store_data(struct afs_call *call, struct sk_buff *skb, bool last) afs_deliver_fs_store_data() argument
1155 afs_fs_store_data64(struct afs_server *server, struct afs_writeback *wb, pgoff_t first, pgoff_t last, unsigned offset, unsigned to, loff_t size, loff_t pos, loff_t i_size, const struct afs_wait_mode *wait_mode) afs_fs_store_data64() argument
1215 afs_fs_store_data(struct afs_server *server, struct afs_writeback *wb, pgoff_t first, pgoff_t last, unsigned offset, unsigned to, const struct afs_wait_mode *wait_mode) afs_fs_store_data() argument
1289 afs_deliver_fs_store_status(struct afs_call *call, struct sk_buff *skb, bool last) afs_deliver_fs_store_status() argument
1488 afs_deliver_fs_get_volume_status(struct afs_call *call, struct sk_buff *skb, bool last) afs_deliver_fs_get_volume_status() argument
1763 afs_deliver_fs_xxxx_lock(struct afs_call *call, struct sk_buff *skb, bool last) afs_deliver_fs_xxxx_lock() argument
/linux-4.1.27/net/netfilter/ipvs/
H A Dip_vs_wrr.c46 * last pass: cw = di
53 * so that last cw is 1 to catch such dests with weight below di:
58 * last pass: cw = 1
168 struct ip_vs_dest *dest, *last, *stop = NULL; ip_vs_wrr_schedule() local
179 last = dest; ip_vs_wrr_schedule()
180 /* Stop only after all dests were checked for weight >= 1 (last pass) */ ip_vs_wrr_schedule()
194 /* Stop if we tried last pass from first dest: ip_vs_wrr_schedule()
197 * 2. last was head: the first and only traversal ip_vs_wrr_schedule()
201 &last->n_list == &svc->destinations) ip_vs_wrr_schedule()
207 &last->n_list != &svc->destinations) { ip_vs_wrr_schedule()
209 * for dests after 'last', now do the same ip_vs_wrr_schedule()
210 * for all dests up to 'last'. ip_vs_wrr_schedule()
212 stop = last; ip_vs_wrr_schedule()
/linux-4.1.27/crypto/asymmetric_keys/
H A Dpkcs7_trust.c31 struct x509_certificate *x509, *last = NULL, *p; pkcs7_validate_trust_one() local
81 last = x509; pkcs7_validate_trust_one()
82 sig = &last->sig; pkcs7_validate_trust_one()
88 if (last && last->akid_skid) { pkcs7_validate_trust_one()
89 key = x509_request_asymmetric_key(trust_keyring, last->akid_skid, pkcs7_validate_trust_one()
92 x509 = last; pkcs7_validate_trust_one()
101 /* As a last resort, see if we have a trusted public key that matches pkcs7_validate_trust_one()
/linux-4.1.27/include/linux/netfilter/
H A Dnf_conntrack_tcp.h20 u_int8_t last_dir; /* Direction of the last packet (enum ip_conntrack_dir) */
22 u_int8_t last_index; /* Index of the last packet */
/linux-4.1.27/arch/mips/lib/
H A Dr3k_dump_tlb.c19 static void dump_tlb(int first, int last) dump_tlb() argument
27 for (i = first; i <= last; i++) { dump_tlb()
/linux-4.1.27/arch/arm/mach-omap1/
H A Dreset.c41 * omap1_get_reset_sources - return the source of the SoC's last reset
43 * Returns bits that represent the last reset source for the SoC. The
/linux-4.1.27/arch/alpha/lib/
H A Dstrlen.S9 * - does binary search to find 0 byte in last
34 nop # helps dual issue last two insns
H A Dstrrchr.S5 * Return the address of the last occurrence of a given character
22 mov zero, t6 # .. e1 : t6 is last match aligned addr
24 mov zero, t8 # .. e1 : t8 is last match byte compare mask
64 /* Locate the address of the last matched character */
H A Dstrncpy.S36 or $3, $24, $3 # clear the bits between the last
37 or $4, $27, $4 # written byte and the last byte in COUNT
/linux-4.1.27/include/asm-generic/
H A Dswitch_to.h25 #define switch_to(prev, next, last) \
27 ((last) = __switch_to((prev), (next))); \
/linux-4.1.27/drivers/eisa/
H A DMakefile6 # virtual_root.o should be the last EISA root device to initialize,
/linux-4.1.27/arch/x86/include/asm/
H A Dirq_regs.h2 * Per-cpu current frame pointer - the location of the last exception frame on
H A Dswitch_to.h31 #define switch_to(prev, next, last) \
57 "=a" (last), \
81 /* frame pointer must be last for get_wchan */
108 #define switch_to(prev, next, last) \
120 : "=a" (last) \
H A Dia32.h22 compat_sigset_t uc_sigmask; /* mask last for extensibility */
31 compat_sigset_t uc_sigmask; /* mask last for extensibility */
/linux-4.1.27/drivers/gpu/drm/nouveau/include/nvkm/engine/
H A Dpm.h18 u32 last; member in struct:nvkm_pm
/linux-4.1.27/arch/mn10300/include/asm/
H A Ducontext.h19 sigset_t uc_sigmask; /* mask last for extensibility */
H A Dirq_regs.h15 * Per-cpu current frame pointer - the location of the last exception frame on
H A Dswitch_to.h40 #define switch_to(prev, next, last) \
44 (last) = __switch_to(&(prev)->thread, &(next)->thread, (prev)); \
/linux-4.1.27/arch/ia64/mm/
H A Dextable.c84 const struct exception_table_entry *last, search_extable()
91 while (first <= last) { search_extable()
92 mid = &first[(last - first)/2]; search_extable()
100 last = mid - 1; search_extable()
83 search_extable(const struct exception_table_entry *first, const struct exception_table_entry *last, unsigned long ip) search_extable() argument
/linux-4.1.27/sound/
H A DMakefile16 obj-y += last.o
/linux-4.1.27/arch/sparc/include/asm/
H A Dswitch_to_64.h15 * the output value of 'last'. 'next' is not referenced again
20 #define switch_to(prev, next, last) \
56 : "=&r" (last), "=r" (current), "=r" (current_thread_info_reg), \
/linux-4.1.27/arch/tile/lib/
H A Dmemchr_32.c49 /* Compute the address of the last byte. */ memchr()
52 /* Compute the address of the word containing the last byte. */ memchr()
57 /* We already read the last word in the array, memchr()
H A Dmemchr_64.c47 /* Compute the address of the last byte. */ memchr()
50 /* Compute the address of the word containing the last byte. */ memchr()
55 /* We already read the last word in the array, memchr()
/linux-4.1.27/drivers/video/fbdev/omap2/dss/
H A Doverlay-sysfs.c149 char *last; overlay_position_store() local
154 info.pos_x = simple_strtoul(buf, &last, 10); overlay_position_store()
155 ++last; overlay_position_store()
156 if (last - buf >= size) overlay_position_store()
159 info.pos_y = simple_strtoul(last, &last, 10); overlay_position_store()
188 char *last; overlay_output_size_store() local
193 info.out_width = simple_strtoul(buf, &last, 10); overlay_output_size_store()
194 ++last; overlay_output_size_store()
195 if (last - buf >= size) overlay_output_size_store()
198 info.out_height = simple_strtoul(last, &last, 10); overlay_output_size_store()
/linux-4.1.27/arch/powerpc/mm/
H A Dvphn.c29 u16 last = 0; vphn_unpack_associativity() local
48 cpu_to_be32(last << 16 | new); vphn_unpack_associativity()
61 last = new; vphn_unpack_associativity()
/linux-4.1.27/arch/cris/arch-v32/lib/
H A Dchecksum.S50 ;; fold the last carry into r13
55 addq 10*4,$r11 ; compensate for last loop underflowing length
83 ;; copy and checksum the last byte
H A Dchecksumcopy.S53 ;; fold the last carry into r13
58 addq 10*4,$r12 ; compensate for last loop underflowing length
86 ;; copy and checksum the last byte
/linux-4.1.27/arch/cris/include/arch-v32/mach-fs/mach/hwregs/
H A Dreg_map.h8 * last modified: Wed Feb 11 20:53:25 2004
11 * last modified: Mon Aug 18 17:08:23 2003
14 * last modified: Fri Feb 20 16:40:04 2004
/linux-4.1.27/tools/testing/selftests/powerpc/vphn/
H A Dvphn.c29 u16 last = 0; vphn_unpack_associativity() local
48 cpu_to_be32(last << 16 | new); vphn_unpack_associativity()
61 last = new; vphn_unpack_associativity()
/linux-4.1.27/fs/ext4/
H A Dfile.c44 /* if we are the last writer on the inode, drop the block reservation */ ext4_release_file()
464 ext4_lblk_t start, last, end; ext4_seek_data() local
479 last = start; ext4_seek_data()
484 map.m_lblk = last; ext4_seek_data()
485 map.m_len = end - last + 1; ext4_seek_data()
488 if (last != start) ext4_seek_data()
489 dataoff = (loff_t)last << blkbits; ext4_seek_data()
497 ext4_es_find_delayed_extent_range(inode, last, last, &es); ext4_seek_data()
498 if (es.es_len != 0 && in_range(last, es.es_lblk, es.es_len)) { ext4_seek_data()
499 if (last != start) ext4_seek_data()
500 dataoff = (loff_t)last << blkbits; ext4_seek_data()
517 last++; ext4_seek_data()
518 dataoff = (loff_t)last << blkbits; ext4_seek_data()
519 } while (last <= end); ext4_seek_data()
537 ext4_lblk_t start, last, end; ext4_seek_hole() local
552 last = start; ext4_seek_hole()
557 map.m_lblk = last; ext4_seek_hole()
558 map.m_len = end - last + 1; ext4_seek_hole()
561 last += ret; ext4_seek_hole()
562 holeoff = (loff_t)last << blkbits; ext4_seek_hole()
570 ext4_es_find_delayed_extent_range(inode, last, last, &es); ext4_seek_hole()
571 if (es.es_len != 0 && in_range(last, es.es_lblk, es.es_len)) { ext4_seek_hole()
572 last = es.es_lblk + es.es_len; ext4_seek_hole()
573 holeoff = (loff_t)last << blkbits; ext4_seek_hole()
587 last += ret; ext4_seek_hole()
588 holeoff = (loff_t)last << blkbits; ext4_seek_hole()
595 } while (last <= end); ext4_seek_hole()
H A Dxattr.c602 static size_t ext4_xattr_free_space(struct ext4_xattr_entry *last, ext4_xattr_free_space() argument
605 for (; !IS_LAST_ENTRY(last); last = EXT4_XATTR_NEXT(last)) { ext4_xattr_free_space()
606 if (!last->e_value_block && last->e_value_size) { ext4_xattr_free_space()
607 size_t offs = le16_to_cpu(last->e_value_offs); ext4_xattr_free_space()
612 *total += EXT4_XATTR_LEN(last->e_name_len); ext4_xattr_free_space()
614 return (*min_offs - ((void *)last - base) - sizeof(__u32)); ext4_xattr_free_space()
620 struct ext4_xattr_entry *last; ext4_xattr_set_entry() local
623 /* Compute min_offs and last. */ ext4_xattr_set_entry()
624 last = s->first; ext4_xattr_set_entry()
625 for (; !IS_LAST_ENTRY(last); last = EXT4_XATTR_NEXT(last)) { ext4_xattr_set_entry()
626 if (!last->e_value_block && last->e_value_size) { ext4_xattr_set_entry()
627 size_t offs = le16_to_cpu(last->e_value_offs); ext4_xattr_set_entry()
632 free = min_offs - ((void *)last - s->base) - sizeof(__u32); ext4_xattr_set_entry()
649 size_t rest = (void *)last - (void *)s->here + sizeof(__u32); ext4_xattr_set_entry()
687 last = s->first; ext4_xattr_set_entry()
688 while (!IS_LAST_ENTRY(last)) { ext4_xattr_set_entry()
689 size_t o = le16_to_cpu(last->e_value_offs); ext4_xattr_set_entry()
690 if (!last->e_value_block && ext4_xattr_set_entry()
691 last->e_value_size && o < offs) ext4_xattr_set_entry()
692 last->e_value_offs = ext4_xattr_set_entry()
694 last = EXT4_XATTR_NEXT(last); ext4_xattr_set_entry()
700 last = ENTRY((void *)last - size); ext4_xattr_set_entry()
702 (void *)last - (void *)s->here + sizeof(__u32)); ext4_xattr_set_entry()
703 memset(last, 0, size); ext4_xattr_set_entry()
1235 struct ext4_xattr_entry *last = entry; ext4_xattr_shift_entries() local
1239 for (; !IS_LAST_ENTRY(last); last = EXT4_XATTR_NEXT(last)) { ext4_xattr_shift_entries()
1240 if (!last->e_value_block && last->e_value_size) { ext4_xattr_shift_entries()
1241 new_offs = le16_to_cpu(last->e_value_offs) + ext4_xattr_shift_entries()
1243 BUG_ON(new_offs + le32_to_cpu(last->e_value_size) ext4_xattr_shift_entries()
1245 last->e_value_offs = cpu_to_le16(new_offs); ext4_xattr_shift_entries()
1260 struct ext4_xattr_entry *entry, *last, *first; ext4_expand_extra_isize_ea() local
1289 last = entry; ext4_expand_extra_isize_ea()
1292 free = ext4_xattr_free_space(last, &min_offs, base, &total_ino); ext4_expand_extra_isize_ea()
1362 last = IFIRST(header); ext4_expand_extra_isize_ea()
1365 for (; !IS_LAST_ENTRY(last); last = EXT4_XATTR_NEXT(last)) { ext4_expand_extra_isize_ea()
1367 EXT4_XATTR_SIZE(le32_to_cpu(last->e_value_size)) + ext4_expand_extra_isize_ea()
1368 EXT4_XATTR_LEN(last->e_name_len); ext4_expand_extra_isize_ea()
1371 small_entry = last; ext4_expand_extra_isize_ea()
1373 entry = last; ext4_expand_extra_isize_ea()
/linux-4.1.27/drivers/infiniband/hw/amso1100/
H A Dc2_pd.c50 c2dev->pd_table.last); c2_pd_alloc()
57 c2dev->pd_table.last = obj+1; c2_pd_alloc()
58 if (c2dev->pd_table.last >= c2dev->pd_table.max) c2_pd_alloc()
59 c2dev->pd_table.last = 0; c2_pd_alloc()
76 c2dev->pd_table.last = 0; c2_init_pd_table()
/linux-4.1.27/scripts/
H A Ddecode_stacktrace.sh88 # We need to know the index of the last element before we
90 local last=$(( ${#words[@]} - 1 ))
105 # The symbol is the last element, process it
106 symbol=${words[$last]}
107 unset words[$last]
H A Dheaderdep.pl124 my $last = pop @$cycle;
127 printf "%s from %s,\n", $msg, $last->[1] if defined $last;
133 $header->[1] eq $last->[1] ? ' <-- here' : '';
/linux-4.1.27/drivers/scsi/sym53c8xx_2/
H A Dsym_misc.h93 struct sym_quehead *last = list->blink; sym_que_splice() local
99 last->flink = at; sym_que_splice()
100 at->blink = last; sym_que_splice()
107 struct sym_quehead *first, *last; sym_que_move() local
113 last = orig->blink; sym_que_move()
114 last->flink = dest; sym_que_move()
115 dest->blink = last; sym_que_move()
/linux-4.1.27/arch/x86/kernel/
H A Dpvclock.c78 u64 last; pvclock_clocksource_read() local
108 last = atomic64_read(&last_value); pvclock_clocksource_read()
110 if (ret < last) pvclock_clocksource_read()
111 return last; pvclock_clocksource_read()
112 last = atomic64_cmpxchg(&last_value, last, ret); pvclock_clocksource_read()
113 } while (unlikely(last != ret)); pvclock_clocksource_read()
/linux-4.1.27/fs/f2fs/
H A Dxattr.c487 struct f2fs_xattr_entry *here, *last; __f2fs_setxattr() local
522 last = here; __f2fs_setxattr()
523 while (!IS_XATTR_LAST_ENTRY(last)) __f2fs_setxattr()
524 last = XATTR_NEXT_ENTRY(last); __f2fs_setxattr()
535 free = MIN_OFFSET(inode) - ((char *)last - (char *)base_addr); __f2fs_setxattr()
554 memmove(here, next, (char *)last - (char *)next); __f2fs_setxattr()
555 last = (struct f2fs_xattr_entry *)((char *)last - oldsize); __f2fs_setxattr()
556 memset(last, 0, oldsize); __f2fs_setxattr()
559 new_hsize = (char *)last - (char *)base_addr; __f2fs_setxattr()
568 memset(last, 0, newsize); __f2fs_setxattr()
569 last->e_name_index = index; __f2fs_setxattr()
570 last->e_name_len = len; __f2fs_setxattr()
571 memcpy(last->e_name, name, len); __f2fs_setxattr()
572 pval = last->e_name + len; __f2fs_setxattr()
574 last->e_value_size = cpu_to_le16(size); __f2fs_setxattr()
/linux-4.1.27/arch/tile/include/asm/
H A Dbitops.h49 * fls - find last set bit in word
55 * fls(value) returns 0 if value is 0 or the position of the last
56 * set bit if value is nonzero. The last (most significant) bit is
/linux-4.1.27/arch/cris/include/arch-v32/mach-fs/mach/hwregs/asm/
H A Dreg_map_asm.h8 * last modified: Wed Feb 11 20:53:25 2004
11 * last modified: Mon Aug 18 17:08:23 2003
14 * last modified: Fri Feb 20 16:40:04 2004
/linux-4.1.27/include/linux/extcon/
H A Dextcon-adc-jack.h24 * denotes the last adc_jack_cond element among the array)
61 /* The last entry should be NULL */
64 /* The last entry's state should be 0 */
/linux-4.1.27/drivers/md/
H A Ddm-stats.h14 struct dm_stats_last_position __percpu *last; member in struct:dm_stats
/linux-4.1.27/drivers/net/fddi/skfp/
H A Dsmttimer.c125 struct smt_timer **last ; timer_done() local
129 last = &smc->t.st_queue ; timer_done()
135 last = &tm->tm_next ; timer_done()
144 *last = NULL; timer_done()
/linux-4.1.27/drivers/staging/comedi/drivers/
H A Daddi_apci_16xx.c104 unsigned int last; apci16xx_auto_attach() local
128 last = board->n_chan - (n_subdevs * 32); apci16xx_auto_attach()
131 last = 0; apci16xx_auto_attach()
143 s->n_chan = ((i * 32) < board->n_chan) ? 32 : last; apci16xx_auto_attach()
/linux-4.1.27/arch/x86/mm/
H A Dextable.c83 const struct exception_table_entry *last, search_extable()
86 while (first <= last) { search_extable()
90 mid = ((last - first) >> 1) + first; search_extable()
95 last = mid - 1; search_extable()
82 search_extable(const struct exception_table_entry *first, const struct exception_table_entry *last, unsigned long value) search_extable() argument
/linux-4.1.27/arch/x86/pci/
H A Dinit.c26 * don't check for raw_pci_ops here because we want pcbios as last pci_arch_init()
/linux-4.1.27/drivers/video/fbdev/mb862xx/
H A Dmb862xx-i2c.c60 static int mb862xx_i2c_read_byte(struct i2c_adapter *adap, u8 *byte, int last) mb862xx_i2c_read_byte() argument
64 outreg(i2c, GC_I2C_BCR, I2C_START | (last ? 0 : I2C_ACK)); mb862xx_i2c_read_byte()
83 int last = m->len - 1; mb862xx_i2c_read() local
86 if (!mb862xx_i2c_read_byte(adap, &m->buf[i], i == last)) { mb862xx_i2c_read()
/linux-4.1.27/arch/powerpc/platforms/pasemi/
H A Dpasemi.h18 /* Restore astate to last set */
/linux-4.1.27/arch/mips/mm/
H A Dsc-ip22.c29 static inline void indy_sc_wipe(unsigned long first, unsigned long last) indy_sc_wipe() argument
44 "or\t%1, $1\t\t\t# last line to flush\n\t" indy_sc_wipe()
54 : "=r" (first), "=r" (last), "=&r" (tmp) indy_sc_wipe()
55 : "0" (first), "1" (last)); indy_sc_wipe()
/linux-4.1.27/arch/ia64/kernel/
H A Dperfmon_default_smpl.c106 void *cur, *last; default_handler() local
119 last = buf+hdr->hdr_buf_size; default_handler()
126 if ((last - cur) < PFM_DEFAULT_MAX_ENTRY_SIZE) goto full; default_handler()
141 DPRINT_ovfl(("[%d] count=%lu cur=%p last=%p free_bytes=%lu ovfl_pmd=%d ovfl_notify=%d npmds=%u\n", default_handler()
144 cur, last, default_handler()
145 last-cur, default_handler()
190 * post check to avoid losing the last sample default_handler()
192 if ((last - cur) < PFM_DEFAULT_MAX_ENTRY_SIZE) goto full; default_handler()
204 DPRINT_ovfl(("sampling buffer full free=%lu, count=%lu, ovfl_notify=%d\n", last-cur, hdr->hdr_count, ovfl_notify)); default_handler()
/linux-4.1.27/net/dccp/
H A Dipv6.h20 * ipv6_pinfo has to be the last member of dccp6_sock,
/linux-4.1.27/net/ieee802154/
H A Dcore.h24 /* must be last because of the way we do wpan_phy_priv(),
/linux-4.1.27/tools/testing/selftests/powerpc/pmu/
H A Dlib.h34 uint64_t first, last; member in struct:addr_range
/linux-4.1.27/arch/mips/jazz/
H A Djazzdma.c94 int first, last, pages, frame, i; vdma_alloc() local
125 last = first + 1; vdma_alloc()
126 while (pgtbl[last].owner == VDMA_PAGE_EMPTY vdma_alloc()
127 && last - first < pages) vdma_alloc()
128 last++; vdma_alloc()
130 if (last - first == pages) vdma_alloc()
132 first = last + 1; vdma_alloc()
141 for (i = first; i < last; i++) { vdma_alloc()
158 for (i = first; i < last; i++) vdma_alloc()
161 for (i = first; i < last; i++) vdma_alloc()
164 for (i = first; i < last; i++) vdma_alloc()
/linux-4.1.27/drivers/isdn/hardware/eicon/
H A Ddfifo.h49 #define DIVA_DFIFO_WRAP 0x80 /* This is the last block in fifo */
51 #define DIVA_DFIFO_LAST 0x20 /* This block is last in message */
/linux-4.1.27/drivers/md/bcache/
H A Dutil.c171 uint64_t now, duration, last; bch_time_stats_update() local
178 last = time_after64(now, stats->last) bch_time_stats_update()
179 ? now - stats->last : 0; bch_time_stats_update()
183 if (stats->last) { bch_time_stats_update()
187 ewma_add(stats->average_frequency, last, 8, 8); bch_time_stats_update()
189 stats->average_frequency = last << 8; bch_time_stats_update()
194 stats->last = now ?: 1; bch_time_stats_update()
/linux-4.1.27/arch/x86/kernel/cpu/
H A Dperf_event_intel_pt.c264 * @last: index of the last initialized entry in this table
272 int last; member in struct:topa
275 /* make -1 stand for the last table entry */
276 #define TOPA_ENTRY(t, i) ((i) == -1 ? &(t)->table[(t)->last] : &(t)->table[(i)])
296 topa->last = 0; topa_alloc()
327 * "last" table and adjust the last table pointer to @topa.
331 struct topa *last = buf->last; topa_insert_table() local
336 buf->first = buf->last = buf->cur = topa; topa_insert_table()
340 topa->offset = last->offset + last->size; topa_insert_table()
341 buf->last = topa; topa_insert_table()
346 BUG_ON(last->last != TENTS_PER_PAGE - 1); topa_insert_table()
348 TOPA_ENTRY(last, -1)->base = topa->phys >> TOPA_SHIFT; topa_insert_table()
349 TOPA_ENTRY(last, -1)->end = 1; topa_insert_table()
360 return !!topa->last; topa_table_full()
362 return topa->last == TENTS_PER_PAGE - 1; topa_table_full()
377 struct topa *topa = buf->last; topa_insert_pages()
400 topa->last++; topa_insert_pages()
449 if (buf->cur_idx == buf->cur->last) { pt_buffer_advance()
450 if (buf->cur == buf->last) pt_buffer_advance()
595 if (buf->first == buf->last && buf->first->last == 1) pt_topa_next_entry()
676 struct topa *cur = buf->first, *prev = buf->last; pt_buffer_setup_topa_index()
678 *te_prev = TOPA_ENTRY(prev, prev->last - 1); pt_buffer_setup_topa_index()
690 if (idx == cur->last - 1) { pt_buffer_setup_topa_index()
774 /* link last table to the first one, unless we're double buffering */ pt_buffer_init_topa()
776 TOPA_ENTRY(buf->last, -1)->base = buf->first->phys >> TOPA_SHIFT; pt_buffer_init_topa()
777 TOPA_ENTRY(buf->last, -1)->end = 1; pt_buffer_init_topa()
/linux-4.1.27/arch/x86/vdso/
H A Dvclock_gettime.c83 u64 last; vread_pvclock() local
124 last = gtod->cycle_last; vread_pvclock()
126 if (likely(ret >= last)) vread_pvclock()
129 return last; vread_pvclock()
179 u64 last; vread_tsc() local
191 last = gtod->cycle_last; vread_tsc()
193 if (likely(ret >= last)) vread_tsc()
205 return last; vread_tsc()
/linux-4.1.27/fs/xfs/
H A Dxfs_inode_item.h31 xfs_lsn_t ili_flush_lsn; /* lsn at last flush */
32 xfs_lsn_t ili_last_lsn; /* lsn at last transaction */
/linux-4.1.27/arch/arc/kernel/
H A Dctx_sw_asm.S41 * Return last task in r0 (return reg)
43 * Since we already have last task in r0,

Completed in 4342 milliseconds

1234567891011>>