| /OK3568_Linux_fs/kernel/include/linux/ |
| H A D | android_kabi.h | 41 #define __ANDROID_KABI_CHECK_SIZE_ALIGN(_orig, _new) \ argument 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 argument 61 #define _ANDROID_KABI_REPLACE(_orig, _new) \ argument 63 _new; \ 67 __ANDROID_KABI_CHECK_SIZE_ALIGN(_orig, _new); \ 103 #define ANDROID_KABI_USE(number, _new) \ argument [all …]
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/sys/ |
| H A D | reent.h | 677 } _new; member 756 (var)->_new._reent._rand_next = 1; \ 757 (var)->_new._reent._r48._seed[0] = _RAND48_SEED_0; \ 758 (var)->_new._reent._r48._seed[1] = _RAND48_SEED_1; \ 759 (var)->_new._reent._r48._seed[2] = _RAND48_SEED_2; \ 760 (var)->_new._reent._r48._mult[0] = _RAND48_MULT_0; \ 761 (var)->_new._reent._r48._mult[1] = _RAND48_MULT_1; \ 762 (var)->_new._reent._r48._mult[2] = _RAND48_MULT_2; \ 763 (var)->_new._reent._r48._add = _RAND48_ADD; \ 774 #define _REENT_SIGNGAM(ptr) ((ptr)->_new._reent._gamma_signgam) [all …]
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/sys/ |
| H A D | reent.h | 677 } _new; member 756 (var)->_new._reent._rand_next = 1; \ 757 (var)->_new._reent._r48._seed[0] = _RAND48_SEED_0; \ 758 (var)->_new._reent._r48._seed[1] = _RAND48_SEED_1; \ 759 (var)->_new._reent._r48._seed[2] = _RAND48_SEED_2; \ 760 (var)->_new._reent._r48._mult[0] = _RAND48_MULT_0; \ 761 (var)->_new._reent._r48._mult[1] = _RAND48_MULT_1; \ 762 (var)->_new._reent._r48._mult[2] = _RAND48_MULT_2; \ 763 (var)->_new._reent._r48._add = _RAND48_ADD; \ 774 #define _REENT_SIGNGAM(ptr) ((ptr)->_new._reent._gamma_signgam) [all …]
|
| /OK3568_Linux_fs/buildroot/support/kconfig/ |
| H A D | list.h | 82 static inline void __list_add(struct list_head *_new, in __list_add() argument 86 next->prev = _new; in __list_add() 87 _new->next = next; in __list_add() 88 _new->prev = prev; in __list_add() 89 prev->next = _new; in __list_add() 100 static inline void list_add_tail(struct list_head *_new, struct list_head *head) in list_add_tail() argument 102 __list_add(_new, head->prev, head); in list_add_tail()
|
| /OK3568_Linux_fs/u-boot/scripts/kconfig/ |
| H A D | list.h | 81 static inline void __list_add(struct list_head *_new, in __list_add() argument 85 next->prev = _new; in __list_add() 86 _new->next = next; in __list_add() 87 _new->prev = prev; in __list_add() 88 prev->next = _new; in __list_add() 99 static inline void list_add_tail(struct list_head *_new, struct list_head *head) in list_add_tail() argument 101 __list_add(_new, head->prev, head); in list_add_tail()
|
| /OK3568_Linux_fs/kernel/scripts/kconfig/ |
| H A D | list.h | 82 static inline void __list_add(struct list_head *_new, in __list_add() argument 86 next->prev = _new; in __list_add() 87 _new->next = next; in __list_add() 88 _new->prev = prev; in __list_add() 89 prev->next = _new; in __list_add() 100 static inline void list_add_tail(struct list_head *_new, struct list_head *head) in list_add_tail() argument 102 __list_add(_new, head->prev, head); in list_add_tail()
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852be/phl/ |
| H A D | phl_list.h | 163 static __inline void __list_add(struct list_head *_new, in __list_add() argument 167 next->prev = _new; in __list_add() 168 _new->next = next; in __list_add() 169 _new->prev = prev; in __list_add() 170 prev->next = _new; in __list_add() 181 static __inline void list_add(struct list_head *_new, struct list_head *head) in list_add() argument 183 __list_add(_new, head, head->next); in list_add() 195 static __inline void list_add_tail(struct list_head *_new, struct list_head *head) in list_add_tail() argument 197 __list_add(_new, head->prev, head); in list_add_tail()
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852bs/phl/ |
| H A D | phl_list.h | 163 static __inline void __list_add(struct list_head *_new, in __list_add() argument 167 next->prev = _new; in __list_add() 168 _new->next = next; in __list_add() 169 _new->prev = prev; in __list_add() 170 prev->next = _new; in __list_add() 181 static __inline void list_add(struct list_head *_new, struct list_head *head) in list_add() argument 183 __list_add(_new, head, head->next); in list_add() 195 static __inline void list_add_tail(struct list_head *_new, struct list_head *head) in list_add_tail() argument 197 __list_add(_new, head->prev, head); in list_add_tail()
|
| /OK3568_Linux_fs/external/mpp/osal/inc/ |
| 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 | 147 struct hlist_head *_new) in hlist_move_list() argument 149 _new->first = old->first; in hlist_move_list() 150 if (_new->first) in hlist_move_list() 151 _new->first->pprev = &_new->first; in hlist_move_list()
|
| /OK3568_Linux_fs/external/mpp/mpp/legacy/ |
| H A D | rk_list.cpp | 57 static inline void _rk_list_add(rk_list_node * _new, rk_list_node * prev, rk_list_node * next) in _rk_list_add() argument 59 next->prev = _new; in _rk_list_add() 60 _new->next = next; in _rk_list_add() 61 _new->prev = prev; in _rk_list_add() 62 prev->next = _new; in _rk_list_add() 65 static inline void rk_list_add(rk_list_node *_new, rk_list_node *head) in rk_list_add() argument 67 _rk_list_add(_new, head, head->next); in rk_list_add() 70 static inline void rk_list_add_tail(rk_list_node *_new, rk_list_node *head) in rk_list_add_tail() argument 72 _rk_list_add(_new, head->prev, head); in rk_list_add_tail()
|
| /OK3568_Linux_fs/kernel/Documentation/driver-api/media/drivers/ |
| H A D | sh_mobile_ceu_camera.rst | 99 scale_s_new = ((3')_new - (3)_new) / ((2') - (2)) 104 width_ceu = (4')_new - (4)_new = width_u / scale_s_new 105 left_ceu = (4)_new - (3)_new = ((5) - (2)) / scale_s_new
|
| /OK3568_Linux_fs/external/mpp/osal/ |
| H A D | mpp_list.cpp | 66 static inline void _mpp_list_add(mpp_list_node * _new, mpp_list_node * prev, mpp_list_node * next) in _mpp_list_add() argument 68 next->prev = _new; in _mpp_list_add() 69 _new->next = next; in _mpp_list_add() 70 _new->prev = prev; in _mpp_list_add() 71 prev->next = _new; in _mpp_list_add() 74 static inline void mpp_list_add(mpp_list_node *_new, mpp_list_node *head) in mpp_list_add() argument 76 _mpp_list_add(_new, head, head->next); in mpp_list_add() 79 static inline void mpp_list_add_tail(mpp_list_node *_new, mpp_list_node *head) in mpp_list_add_tail() argument 81 _mpp_list_add(_new, head->prev, head); in mpp_list_add_tail()
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/simplediff/ |
| H A D | __init__.py | 196 _new = [val for (a, vals) in result if (a in '=+') for val in vals] 197 assert new == _new, 'Expected %s, got %s' % (new, _new)
|
| /OK3568_Linux_fs/kernel/drivers/clocksource/ |
| H A D | arm_arch_timer.c | 217 u64 _old, _new; \ 222 _new = read_sysreg(reg); \ 224 } while (unlikely(_old != _new) && _retries); \ 227 _new; \ 263 u64 _old, _new; \ 268 _new = read_sysreg(reg); \ 270 } while (unlikely((_new - _old) >> 5) && _retries); \ 273 _new; \
|
| /OK3568_Linux_fs/u-boot/arch/arm/mach-rockchip/ |
| H A D | resource_img.c | 119 bool _new = true; in resource_add_file() local 125 _new = false; in resource_add_file() 130 if (_new) { in resource_add_file()
|
| /OK3568_Linux_fs/external/rkwifibt/tools/rtk_hciattach/ |
| H A D | rtb_fwc.c | 291 static inline void __list_add(struct list_head *_new, in __list_add() argument 295 next->prev = _new; in __list_add() 296 _new->next = next; in __list_add() 297 _new->prev = prev; in __list_add() 298 prev->next = _new; in __list_add() 301 static inline void list_add_tail(struct list_head *_new, struct list_head *head) in list_add_tail() argument 303 __list_add(_new, head->prev, head); in list_add_tail()
|
| /OK3568_Linux_fs/kernel/arch/x86/include/asm/ |
| H A D | cmpxchg.h | 158 #define __raw_try_cmpxchg(_ptr, _pold, _new, size, lock) \ argument 163 __typeof__(*(_ptr)) __new = (_new); \
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v1/export-user_ta/host_include/openssl/ |
| H A D | asn1t.h | 741 (ASN1_new_func *)sname##_new, \ 783 pre stname *fname##_new(void) \ 793 stname *fname##_new(void) \
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v1/export-user_ta/include/openssl/ |
| H A D | asn1t.h | 741 (ASN1_new_func *)sname##_new, \ 783 pre stname *fname##_new(void) \ 793 stname *fname##_new(void) \
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/host/openssl/include/openssl/ |
| H A D | asn1t.h | 795 (ASN1_new_func *)sname##_new, \ 837 pre stname *fname##_new(void) \ 847 stname *fname##_new(void) \
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/host_include/openssl/ |
| H A D | asn1t.h | 654 pre stname *fname##_new(void) \ 664 stname *fname##_new(void) \
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/openssl/ |
| H A D | asn1t.h | 654 pre stname *fname##_new(void) \ 664 stname *fname##_new(void) \
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/openssl/ |
| H A D | asn1t.h | 654 pre stname *fname##_new(void) \ 664 stname *fname##_new(void) \
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/host_include/openssl/ |
| H A D | asn1t.h | 654 pre stname *fname##_new(void) \ 664 stname *fname##_new(void) \
|