new_               61 arch/parisc/include/asm/cmpxchg.h 				   unsigned int new_);
new_               62 arch/parisc/include/asm/cmpxchg.h extern u64 __cmpxchg_u64(volatile u64 *ptr, u64 old, u64 new_);
new_               66 arch/parisc/include/asm/cmpxchg.h __cmpxchg(volatile void *ptr, unsigned long old, unsigned long new_, int size)
new_               70 arch/parisc/include/asm/cmpxchg.h 	case 8: return __cmpxchg_u64((u64 *)ptr, old, new_);
new_               73 arch/parisc/include/asm/cmpxchg.h 				     (unsigned int)old, (unsigned int)new_);
new_               91 arch/parisc/include/asm/cmpxchg.h 				      unsigned long new_, int size)
new_               95 arch/parisc/include/asm/cmpxchg.h 	case 8:	return __cmpxchg_u64((u64 *)ptr, old, new_);
new_               97 arch/parisc/include/asm/cmpxchg.h 	case 4:	return __cmpxchg_u32(ptr, old, new_);
new_               99 arch/parisc/include/asm/cmpxchg.h 		return __cmpxchg_local_generic(ptr, old, new_, size);
new_               42 arch/sparc/include/asm/cmpxchg_32.h unsigned long __cmpxchg_u32(volatile u32 *m, u32 old, u32 new_);
new_               46 arch/sparc/include/asm/cmpxchg_32.h __cmpxchg(volatile void *ptr, unsigned long old, unsigned long new_, int size)
new_               50 arch/sparc/include/asm/cmpxchg_32.h 		return __cmpxchg_u32((u32 *)ptr, (u32)old, (u32)new_);
new_              563 kernel/bpf/verifier.c 	struct bpf_##NAME##_state *new_##FIELD;				\
new_              576 kernel/bpf/verifier.c 	new_##FIELD = kmalloc_array(slot, sizeof(struct bpf_##NAME##_state), \
new_              578 kernel/bpf/verifier.c 	if (!new_##FIELD)						\
new_              582 kernel/bpf/verifier.c 			memcpy(new_##FIELD, state->FIELD,		\
new_              583 kernel/bpf/verifier.c 			       sizeof(*new_##FIELD) * (old_size / SIZE)); \
new_              584 kernel/bpf/verifier.c 		memset(new_##FIELD + old_size / SIZE, 0,		\
new_              585 kernel/bpf/verifier.c 		       sizeof(*new_##FIELD) * (size - old_size) / SIZE); \
new_              589 kernel/bpf/verifier.c 	state->FIELD = new_##FIELD;					\