Searched refs:last (Results 1 - 25 of 1032) sorted by relevance

1234567891011>>

/linux-master/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); \
/linux-master/arch/nios2/include/asm/
H A Dswitch_to.h17 #define switch_to(prev, next, last) \
28 (last) = _last; \
/linux-master/arch/parisc/include/asm/
H A Dswitch_to.h9 #define switch_to(prev, next, last) do { \
10 (last) = _switch_to(prev, next); \
/linux-master/include/asm-generic/
H A Dswitch_to.h21 #define switch_to(prev, next, last) \
23 ((last) = __switch_to((prev), (next))); \
/linux-master/arch/microblaze/include/asm/
H A Dswitch_to.h15 #define switch_to(prev, next, last) \
17 (last) = _switch_to(task_thread_info(prev), \
/linux-master/net/netfilter/
H A Dnft_last.c17 struct nft_last *last; member in struct:nft_last_priv
29 struct nft_last *last; local
33 last = kzalloc(sizeof(*last), GFP_KERNEL_ACCOUNT);
34 if (!last)
38 last->set = ntohl(nla_get_be32(tb[NFTA_LAST_SET]));
40 if (last->set && tb[NFTA_LAST_MSECS]) {
45 last->jiffies = jiffies - (unsigned long)last_jiffies;
47 priv->last = last;
60 struct nft_last *last = priv->last; local
72 struct nft_last *last = priv->last; local
[all...]
/linux-master/arch/mips/sibyte/common/
H A Dcfe_console.c16 int i, last, written; local
18 for (i=0, last=0; i<count; i++) {
24 written = cfe_write(cfe_cons_handle, &str[last], i-last);
27 last += written;
28 } while (last < i);
33 if (last != count) {
35 written = cfe_write(cfe_cons_handle, &str[last], count-last);
38 last
[all...]
/linux-master/drivers/infiniband/hw/usnic/
H A Dusnic_uiom_interval_tree.h43 unsigned long last; member in struct:usnic_uiom_interval_node
58 unsigned long last);
61 unsigned long start, unsigned long last);
63 * Inserts {start...last} into {root}. If there are overlaps,
67 unsigned long start, unsigned long last,
70 * Removed {start...last} from {root}. The nodes removed are returned in
75 unsigned long start, unsigned long last,
78 * Returns {start...last} - {root} (relative complement of {start...last} in
82 unsigned long last, in
[all...]
H A Dusnic_uiom_interval_tree.c43 #define LAST(node) ((node)->last)
70 usnic_uiom_interval_node_alloc(long int start, long int last, int ref_cnt, argument
79 interval->last = last;
105 unsigned long start, unsigned long last,
112 for (node = usnic_uiom_interval_tree_iter_first(root, start, last);
114 node = usnic_uiom_interval_tree_iter_next(node, start, last))
120 int usnic_uiom_get_intervals_diff(unsigned long start, unsigned long last, argument
132 find_intervals_intersection_sorted(root, start, last,
148 if (pivot > interval->last) {
104 find_intervals_intersection_sorted(struct rb_root_cached *root, unsigned long start, unsigned long last, struct list_head *list) argument
179 usnic_uiom_insert_interval(struct rb_root_cached *root, unsigned long start, unsigned long last, int flags) argument
250 usnic_uiom_remove_interval(struct rb_root_cached *root, unsigned long start, unsigned long last, struct list_head *removed) argument
[all...]
/linux-master/tools/testing/selftests/bpf/progs/
H A Dtest_stack_var_off.c19 unsigned long last; local
29 last = (len - 1) & 0xf;
47 probe_res = stack_buf[last];
/linux-master/drivers/gpu/drm/nouveau/include/nvkm/subdev/bios/
H A Dimage.h8 bool last; member in struct:nvbios_image
H A Dnpde.h6 bool last; member in struct:nvbios_npdeT
/linux-master/kernel/time/
H A Dtimekeeping_internal.h19 static inline u64 clocksource_delta(u64 now, u64 last, u64 mask) argument
21 u64 ret = (now - last) & mask;
30 static inline u64 clocksource_delta(u64 now, u64 last, u64 mask) argument
32 return (now - last) & mask;
/linux-master/arch/m68k/include/asm/
H A Dswitch_to.h31 #define switch_to(prev,next,last) do { \
39 (last) = _last; \
/linux-master/arch/arc/include/asm/
H A Dswitch_to.h17 #define switch_to(prev, next, last) \
21 last = __switch_to(prev, next);\
/linux-master/io_uring/
H A Dslist.h30 list->last = node;
38 list->last = node;
41 list->last->next = node;
42 list->last = node;
51 list->last = node;
56 struct io_wq_work_node *last,
61 WRITE_ONCE(list->first, last->next);
63 prev->next = last->next;
65 if (last == list->last)
55 wq_list_cut(struct io_wq_work_list *list, struct io_wq_work_node *last, struct io_wq_work_node *prev) argument
[all...]
/linux-master/include/trace/events/
H A Dmaple_tree.h24 __field(unsigned long, last)
33 __entry->last = mas->last;
43 (unsigned long) __entry->last
57 __field(unsigned long, last)
66 __entry->last = mas->last;
76 (unsigned long) __entry->last
92 __field(unsigned long, last)
103 __entry->last
[all...]
/linux-master/drivers/vhost/
H A Diotlb.c17 #define LAST(map) ((map)->last)
42 * @last: last of IOVA range
47 * Returns an error last is smaller than start or memory allocation
51 u64 start, u64 last,
57 if (last < start)
63 if (start == 0 && last == ULONG_MAX) {
64 u64 mid = last / 2;
87 map->size = last - start + 1;
88 map->last
50 vhost_iotlb_add_range_ctx(struct vhost_iotlb *iotlb, u64 start, u64 last, u64 addr, unsigned int perm, void *opaque) argument
103 vhost_iotlb_add_range(struct vhost_iotlb *iotlb, u64 start, u64 last, u64 addr, unsigned int perm) argument
118 vhost_iotlb_del_range(struct vhost_iotlb *iotlb, u64 start, u64 last) argument
195 vhost_iotlb_itree_first(struct vhost_iotlb *iotlb, u64 start, u64 last) argument
208 vhost_iotlb_itree_next(struct vhost_iotlb_map *map, u64 start, u64 last) argument
[all...]
/linux-master/arch/arm/include/asm/
H A Dswitch_to.h27 #define switch_to(prev,next,last) \
32 last = __switch_to(prev,task_thread_info(prev), task_thread_info(next)); \
/linux-master/arch/loongarch/include/asm/
H A Dswitch_to.h35 #define switch_to(prev, next, last) \
40 (last) = __switch_to(prev, next, task_thread_info(next), \
/linux-master/arch/sparc/include/asm/
H A Dswitch_to_64.h16 * the output value of 'last'. 'next' is not referenced again
21 #define switch_to(prev, next, last) \
55 : "=&r" (last), "=r" (current), "=r" (current_thread_info_reg), \
/linux-master/drivers/gpu/drm/nouveau/nvkm/subdev/bios/
H A Dimage.c54 image->last = pcir.last;
60 image->last = npde.last;
62 image->last = true;
76 if (image->last || !nvbios_imagen(bios, image)) {
/linux-master/include/linux/
H A Dvhost_iotlb.h11 u64 last; member in struct:vhost_iotlb_map
33 int vhost_iotlb_add_range_ctx(struct vhost_iotlb *iotlb, u64 start, u64 last,
35 int vhost_iotlb_add_range(struct vhost_iotlb *iotlb, u64 start, u64 last,
37 void vhost_iotlb_del_range(struct vhost_iotlb *iotlb, u64 start, u64 last);
46 vhost_iotlb_itree_first(struct vhost_iotlb *iotlb, u64 start, u64 last);
48 vhost_iotlb_itree_next(struct vhost_iotlb_map *map, u64 start, u64 last);
/linux-master/drivers/net/team/
H A Dteam_mode_broadcast.c17 struct team_port *last = NULL; local
24 if (last) {
27 ret = !team_dev_queue_xmit(team, last,
33 last = cur;
36 if (last) {
37 ret = !team_dev_queue_xmit(team, last, skb);
/linux-master/drivers/gpu/drm/xe/compat-i915-headers/
H A Di915_drv.h102 #define IS_GRAPHICS_VER(xe, first, last) \
104 (xe)->info.graphics_verx100 <= (last*100 + 99))
111 #define IS_DISPLAY_STEP(xe, first, last) ({u8 __step = (xe)->info.step.display; first <= __step && __step <= last; })
112 #define IS_GRAPHICS_STEP(xe, first, last) ({u8 __step = (xe)->info.step.graphics; first <= __step && __step <= last; })
129 #define IS_DG1_GRAPHICS_STEP(xe, first, last) (IS_DG1(xe) && IS_GRAPHICS_STEP(xe, first, last))
130 #define IS_DG2_GRAPHICS_STEP(xe, variant, first, last) \
132 IS_GRAPHICS_STEP(xe, first, last))
[all...]

Completed in 581 milliseconds

1234567891011>>