Searched refs:old (Results 1 – 12 of 12) sorted by relevance
| /include/linux/ |
| A D | rbtree_augmented.h | 27 void (*copy)(struct rb_node *old, struct rb_node *new); 28 void (*rotate)(struct rb_node *old, struct rb_node *new); 32 void (*augment_rotate)(struct rb_node *old, struct rb_node *new)); 57 rbstruct *old = rb_entry(rb_old, rbstruct, rbfield); \ 59 new->rbaugmented = old->rbaugmented; \ 64 rbstruct *old = rb_entry(rb_old, rbstruct, rbfield); \ 66 new->rbaugmented = old->rbaugmented; \ 67 old->rbaugmented = rbcompute(old); \ 97 __rb_change_child(struct rb_node *old, struct rb_node *new, in __rb_change_child() argument 101 if (parent->rb_left == old) in __rb_change_child() [all …]
|
| A D | bitfield.h | 181 static __always_inline __##type type##_replace_bits(__##type old, \ 184 return (old & ~to(field)) | type##_encode_bits(val, field); \
|
| A D | list.h | 107 static inline void list_replace(struct list_head *old, in list_replace() argument 110 new->next = old->next; in list_replace() 112 new->prev = old->prev; in list_replace() 116 static inline void list_replace_init(struct list_head *old, in list_replace_init() argument 119 list_replace(old, new); in list_replace_init() 120 INIT_LIST_HEAD(old); in list_replace_init()
|
| A D | compiler-gcc.h | 14 # error Sorry, your compiler is too old - please upgrade it.
|
| /include/asm-generic/ |
| A D | atomic-long.h | 135 #define atomic_long_cmpxchg(l, old, new) \ argument 136 (atomic64_cmpxchg((atomic64_t *)(l), (old), (new))) 254 #define atomic_long_cmpxchg(l, old, new) \ argument 255 (atomic_cmpxchg((atomic_t *)(l), (old), (new)))
|
| /include/ |
| A D | abuf.h | 123 bool abuf_copy(const struct abuf *old, struct abuf *new);
|
| A D | virtio_ring.h | 167 static inline int vring_need_event(__u16 event_idx, __u16 new_idx, __u16 old) in vring_need_event() argument 176 return (__u16)(new_idx - event_idx - 1) < (__u16)(new_idx - old); in vring_need_event()
|
| A D | atmel_mci.h | 212 #define MMCI_BFINS(name,value,old) \ argument 213 (((old) & ~(((1 << MMCI_##name##_SIZE) - 1) \
|
| A D | video_console.h | 431 enum colour_idx bg, struct vidconsole_colour *old); 439 void vidconsole_pop_colour(struct udevice *dev, struct vidconsole_colour *old);
|
| A D | virtio.h | 556 u32 old, gen; in __virtio_cread_many() local 562 old = gen; in __virtio_cread_many() 569 } while (gen != old); in __virtio_cread_many()
|
| A D | pci.h | 1282 ulong pci_conv_size_to_32(ulong old, ulong value, uint offset,
|
| /include/linux/mtd/ |
| A D | mtd.h | 558 extern int unregister_mtd_user (struct mtd_notifier *old);
|
Completed in 657 milliseconds