/device/soc/rockchip/common/sdk_linux/include/linux/ |
H A D | android_kabi.h | 41 #define __ANDROID_KABI_CHECK_SIZE_ALIGN(_orig, _new) \ 43 _Static_assert(sizeof(struct { _new; }) <= sizeof(struct { _orig; }), __FILE__ \ 44 ":" __stringify(__LINE__) ": " __stringify(_new) " is larger than " __stringify(_orig)); \ 46 __alignof__(struct { _new; }) <= __alignof__(struct { _orig; }), __FILE__ \ 47 ":" __stringify(__LINE__) ": " __stringify(_orig) " is not aligned the same as " __stringify(_new)); \ 52 #define _ANDROID_KABI_REPLACE(_orig, _new) _orig 56 #define _ANDROID_KABI_REPLACE(_orig, _new) \ 58 _new; \ 62 __ANDROID_KABI_CHECK_SIZE_ALIGN(_orig, _new); \ 87 * ANDROID_KABI_USE(number, _new) [all...] |
/device/soc/rockchip/rk3588/kernel/include/linux/ |
H A D | android_kabi.h | 41 #define __ANDROID_KABI_CHECK_SIZE_ALIGN(_orig, _new) \ 43 _Static_assert(sizeof(struct{_new;}) <= sizeof(struct{_orig;}), \ 45 __stringify(_new) \ 48 _Static_assert(__alignof__(struct{_new;}) <= __alignof__(struct{_orig;}), \ 52 __stringify(_new) ); \ 57 #define _ANDROID_KABI_REPLACE(_orig, _new) _orig 61 #define _ANDROID_KABI_REPLACE(_orig, _new) \ 63 _new; \ 67 __ANDROID_KABI_CHECK_SIZE_ALIGN(_orig, _new); \ 94 * ANDROID_KABI_USE(number, _new) [all...] |
/device/soc/hisilicon/hi3516dv300/sdk_linux/sample/platform/higv/include/ |
H A D | linux_cbb_list.h | 43 static HPT_INLINE void inline_cbb_list_add(struct cbb_list_head *_new, in inline_cbb_list_add() argument 46 if (prev == NULL || _new == NULL || next == NULL) { in inline_cbb_list_add() 50 next->prev = _new; in inline_cbb_list_add() 51 _new->next = next; in inline_cbb_list_add() 52 _new->prev = prev; in inline_cbb_list_add() 53 prev->next = _new; in inline_cbb_list_add() 56 static HPT_INLINE void cbb_list_add(struct cbb_list_head *_new, struct cbb_list_head *head) in cbb_list_add() argument 58 if (_new == NULL || head == NULL) { in cbb_list_add() 62 inline_cbb_list_add(_new, head, head->next); in cbb_list_add() 65 static HPT_INLINE void cbb_list_add_tail(struct cbb_list_head *_new, struc argument [all...] |
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/mpp/cbb/include/ |
H A D | list.h | 44 static inline void __list_add(struct list_head *_new, struct list_head *prev, struct list_head *next) in __list_add() argument 46 next->prev = _new; in __list_add() 47 _new->next = next; in __list_add() 48 _new->prev = prev; in __list_add() 49 prev->next = _new; in __list_add() 52 static inline void list_add(struct list_head *_new, struct list_head *head) in list_add() argument 54 __list_add(_new, head, head->next); in list_add() 57 static inline void list_add_tail(struct list_head *_new, struct list_head *head) in list_add_tail() argument 59 __list_add(_new, head->prev, head); in list_add_tail()
|
/device/soc/hisilicon/hi3516dv300/sdk_liteos/include/ |
H A D | list.h | 41 static inline void __list_add(struct list_head *_new, struct list_head *prev, struct list_head *next) in __list_add() argument 43 next->prev = _new; in __list_add() 44 _new->next = next; in __list_add() 45 _new->prev = prev; in __list_add() 46 prev->next = _new; in __list_add() 49 static inline void list_add(struct list_head *_new, struct list_head *head) in list_add() argument 51 __list_add(_new, head, head->next); in list_add() 54 static inline void list_add_tail(struct list_head *_new, struct list_head *head) in list_add_tail() argument 56 __list_add(_new, head->prev, head); in list_add_tail()
|
/device/soc/hisilicon/hi3516dv300/sdk_linux/include/ |
H A D | list.h | 41 static inline void __list_add(struct list_head *_new, struct list_head *prev, struct list_head *next) in __list_add() argument 43 next->prev = _new; in __list_add() 44 _new->next = next; in __list_add() 45 _new->prev = prev; in __list_add() 46 prev->next = _new; in __list_add() 49 static inline void list_add(struct list_head *_new, struct list_head *head) in list_add() argument 51 __list_add(_new, head, head->next); in list_add() 54 static inline void list_add_tail(struct list_head *_new, struct list_head *head) in list_add_tail() argument 56 __list_add(_new, head->prev, head); in list_add_tail()
|
/device/soc/rockchip/common/hardware/mpp/include/ |
H A D | mpp_list.h | 136 static __inline void _list_add(struct list_head *_new, struct list_head *prev, struct list_head *next) in _list_add() argument 138 next->prev = _new; in _list_add() 139 _new->next = next; in _list_add() 140 _new->prev = prev; in _list_add() 141 prev->next = _new; in _list_add() 144 static __inline void list_add(struct list_head *_new, struct list_head *head) in list_add() argument 146 _list_add(_new, head, head->next); in list_add() 149 static __inline void list_add_tail(struct list_head *_new, struct list_head *head) in list_add_tail() argument 151 _list_add(_new, head->prev, head); in list_add_tail()
|
H A D | mpp_hash.h | 150 static inline void hlist_move_list(struct hlist_head *old, struct hlist_head *_new) in hlist_move_list() argument 152 _new->first = old->first; in hlist_move_list() 153 if (_new->first) { in hlist_move_list() 154 _new->first->pprev = &_new->first; in hlist_move_list()
|
/device/soc/rockchip/rk3399/hardware/mpp/include/ |
H A D | mpp_list.h | 145 static __inline void _list_add(struct list_head * _new, in _list_add() argument 149 next->prev = _new; in _list_add() 150 _new->next = next; in _list_add() 151 _new->prev = prev; in _list_add() 152 prev->next = _new; in _list_add() 155 static __inline void list_add(struct list_head *_new, struct list_head *head) in list_add() argument 157 _list_add(_new, head, head->next); in list_add() 160 static __inline void list_add_tail(struct list_head *_new, struct list_head *head) in list_add_tail() argument 162 _list_add(_new, head->prev, head); in list_add_tail()
|
H A D | mpp_hash.h | 150 struct hlist_head *_new) in hlist_move_list() 152 _new->first = old->first; in hlist_move_list() 153 if (_new->first) { in hlist_move_list() 154 _new->first->pprev = &_new->first; in hlist_move_list() 149 hlist_move_list(struct hlist_head *old, struct hlist_head *_new) hlist_move_list() argument
|
/device/soc/rockchip/rk3568/hardware/mpp/include/ |
H A D | mpp_list.h | 145 static __inline void _list_add(struct list_head * _new, in _list_add() argument 149 next->prev = _new; in _list_add() 150 _new->next = next; in _list_add() 151 _new->prev = prev; in _list_add() 152 prev->next = _new; in _list_add() 155 static __inline void list_add(struct list_head *_new, struct list_head *head) in list_add() argument 157 _list_add(_new, head, head->next); in list_add() 160 static __inline void list_add_tail(struct list_head *_new, struct list_head *head) in list_add_tail() argument 162 _list_add(_new, head->prev, head); in list_add_tail()
|
H A D | mpp_hash.h | 150 struct hlist_head *_new) in hlist_move_list() 152 _new->first = old->first; in hlist_move_list() 153 if (_new->first) { in hlist_move_list() 154 _new->first->pprev = &_new->first; in hlist_move_list() 149 hlist_move_list(struct hlist_head *old, struct hlist_head *_new) hlist_move_list() argument
|
/device/soc/rockchip/rk3588/hardware/mpp/include/ |
H A D | mpp_list.h | 151 static __inline void __list_add(struct list_head * _new, in __list_add() argument 155 next->prev = _new; in __list_add() 156 _new->next = next; in __list_add() 157 _new->prev = prev; in __list_add() 158 prev->next = _new; in __list_add() 161 static __inline void list_add(struct list_head *_new, struct list_head *head) in list_add() argument 163 __list_add(_new, head, head->next); in list_add() 166 static __inline void list_add_tail(struct list_head *_new, struct list_head *head) in list_add_tail() argument 168 __list_add(_new, head->prev, head); in list_add_tail()
|
H A D | mpp_hash.h | 150 struct hlist_head *_new) in hlist_move_list() 152 _new->first = old->first; in hlist_move_list() 153 if (_new->first) in hlist_move_list() 154 _new->first->pprev = &_new->first; in hlist_move_list() 149 hlist_move_list(struct hlist_head *old, struct hlist_head *_new) hlist_move_list() argument
|
/device/soc/rockchip/rk3568/hardware/mpp/mpp/legacy/ |
H A D | rk_list.cpp | 68 static inline void _rk_list_add(rk_list_node * _new, rk_list_node * prev, rk_list_node * next) in _rk_list_add() argument 70 next->prev = _new; in _rk_list_add() 71 _new->next = next; in _rk_list_add() 72 _new->prev = prev; in _rk_list_add() 73 prev->next = _new; in _rk_list_add() 76 static inline void rk_list_add(rk_list_node *_new, rk_list_node *head) in rk_list_add() argument 78 _rk_list_add(_new, head, head->next); in rk_list_add() 81 static inline void rk_list_add_tail(rk_list_node *_new, rk_list_node *head) in rk_list_add_tail() argument 83 _rk_list_add(_new, head->prev, head); in rk_list_add_tail()
|