_new              158 arch/x86/include/asm/cmpxchg.h #define __raw_try_cmpxchg(_ptr, _pold, _new, size, lock)		\
_new              163 arch/x86/include/asm/cmpxchg.h 	__typeof__(*(_ptr)) __new = (_new);				\
_new              213 drivers/clocksource/arm_arch_timer.c 	u64 _old, _new;					\
_new              218 drivers/clocksource/arm_arch_timer.c 		_new = read_sysreg(reg);		\
_new              220 drivers/clocksource/arm_arch_timer.c 	} while (unlikely(_old != _new) && _retries);	\
_new              223 drivers/clocksource/arm_arch_timer.c 	_new;						\
_new              259 drivers/clocksource/arm_arch_timer.c 	u64 _old, _new;						\
_new              264 drivers/clocksource/arm_arch_timer.c 		_new = read_sysreg(reg);			\
_new              266 drivers/clocksource/arm_arch_timer.c 	} while (unlikely((_new - _old) >> 5) && _retries);	\
_new              269 drivers/clocksource/arm_arch_timer.c 	_new;							\
_new             3414 drivers/net/bonding/bond_main.c 			    const struct rtnl_link_stats64 *_new,
_new             3417 drivers/net/bonding/bond_main.c 	const u64 *new = (const u64 *)_new;
_new              157 drivers/net/net_failover.c 				    const struct rtnl_link_stats64 *_new,
_new              160 drivers/net/net_failover.c 	const u64 *new = (const u64 *)_new;
_new               82 scripts/kconfig/list.h static inline void __list_add(struct list_head *_new,
_new               86 scripts/kconfig/list.h 	next->prev = _new;
_new               87 scripts/kconfig/list.h 	_new->next = next;
_new               88 scripts/kconfig/list.h 	_new->prev = prev;
_new               89 scripts/kconfig/list.h 	prev->next = _new;
_new              100 scripts/kconfig/list.h static inline void list_add_tail(struct list_head *_new, struct list_head *head)
_new              102 scripts/kconfig/list.h 	__list_add(_new, head->prev, head);