/linux-6.3-rc2/scripts/kconfig/ |
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()
|
/linux-6.3-rc2/Documentation/driver-api/media/drivers/ |
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
|
/linux-6.3-rc2/arch/x86/include/asm/ |
A D | uaccess.h | 395 #define __try_cmpxchg_user_asm(itype, ltype, _ptr, _pold, _new, label) ({ \ argument 399 __typeof__(*(_ptr)) __new = (_new); \ 414 #define __try_cmpxchg64_user_asm(_ptr, _pold, _new, label) ({ \ argument 418 __typeof__(*(_ptr)) __new = (_new); \ 434 #define __try_cmpxchg_user_asm(itype, ltype, _ptr, _pold, _new, label) ({ \ argument 439 __typeof__(*(_ptr)) __new = (_new); \ 466 #define __try_cmpxchg64_user_asm(_ptr, _pold, _new, label) ({ \ argument 470 __typeof__(*(_ptr)) __new = (_new); \
|
A D | cmpxchg.h | 158 #define __raw_try_cmpxchg(_ptr, _pold, _new, size, lock) \ argument 163 __typeof__(*(_ptr)) __new = (_new); \
|
/linux-6.3-rc2/arch/s390/include/asm/ |
A D | uaccess.h | 405 unsigned int prev, shift, mask, _old, _new; in __cmpxchg_user_key() local 411 _new = ((unsigned int)new & 0xff) << shift; in __cmpxchg_user_key() 440 [new] "+&d" (_new), in __cmpxchg_user_key() 453 unsigned int prev, shift, mask, _old, _new; in __cmpxchg_user_key() local 459 _new = ((unsigned int)new & 0xffff) << shift; in __cmpxchg_user_key() 488 [new] "+&d" (_new), in __cmpxchg_user_key()
|
/linux-6.3-rc2/include/linux/atomic/ |
A D | atomic-arch-fallback.h | 88 #define arch_try_cmpxchg(_ptr, _oldp, _new) \ argument 91 ___r = arch_cmpxchg((_ptr), ___o, (_new)); \ 99 #define arch_try_cmpxchg_acquire(_ptr, _oldp, _new) \ argument 102 ___r = arch_cmpxchg_acquire((_ptr), ___o, (_new)); \ 110 #define arch_try_cmpxchg_release(_ptr, _oldp, _new) \ argument 113 ___r = arch_cmpxchg_release((_ptr), ___o, (_new)); \ 121 #define arch_try_cmpxchg_relaxed(_ptr, _oldp, _new) \ argument 124 ___r = arch_cmpxchg_relaxed((_ptr), ___o, (_new)); \ 158 #define arch_try_cmpxchg64(_ptr, _oldp, _new) \ argument 161 ___r = arch_cmpxchg64((_ptr), ___o, (_new)); \ [all …]
|
/linux-6.3-rc2/drivers/clocksource/ |
A D | arm_arch_timer.c | 257 u64 _old, _new; \ 262 _new = read_sysreg(reg); \ 264 } while (unlikely(_old != _new) && _retries); \ 267 _new; \ 293 u64 _old, _new; \ 298 _new = read_sysreg(reg); \ 300 } while (unlikely((_new - _old) >> 5) && _retries); \ 303 _new; \
|
/linux-6.3-rc2/scripts/atomic/ |
A D | gen-atomic-fallback.sh | 175 ___r = arch_${cmpxchg}${order}((_ptr), ___o, (_new)); \\
|
/linux-6.3-rc2/arch/x86/kernel/ |
A D | alternative.c | 1977 u8 _new[POKE_MAX_OPCODE_SIZE+1]; in text_poke_bp_batch() local 1987 _new[0] = 0x0f; in text_poke_bp_batch() 1988 memcpy(_new + 1, new, 5); in text_poke_bp_batch() 1989 new = _new; in text_poke_bp_batch()
|
/linux-6.3-rc2/drivers/net/ |
A D | net_failover.c | 157 const struct rtnl_link_stats64 *_new, in net_failover_fold_stats() argument 160 const u64 *new = (const u64 *)_new; in net_failover_fold_stats()
|
/linux-6.3-rc2/include/linux/ |
A D | bpf.h | 1152 #define __BPF_DISPATCHER_UPDATE(_d, _new) \ argument 1153 __static_call_update((_d)->sc_key, (_d)->sc_tramp, (_new)) 1159 #define __BPF_DISPATCHER_UPDATE(_d, _new) argument
|
/linux-6.3-rc2/drivers/net/bonding/ |
A D | bond_main.c | 4297 const struct rtnl_link_stats64 *_new, in bond_fold_stats() argument 4300 const u64 *new = (const u64 *)_new; in bond_fold_stats()
|