Searched refs:pold (Results 1 – 6 of 6) sorted by relevance
/linux-6.3-rc2/arch/x86/include/asm/ |
A D | cmpxchg_32.h | 48 static inline bool __try_cmpxchg64(volatile u64 *ptr, u64 *pold, u64 new) in __try_cmpxchg64() argument 51 u64 old = *pold; in __try_cmpxchg64() 62 *pold = old; in __try_cmpxchg64()
|
A D | cmpxchg.h | 221 #define __try_cmpxchg(ptr, pold, new, size) \ argument 222 __raw_try_cmpxchg((ptr), (pold), (new), (size), LOCK_PREFIX) 224 #define arch_try_cmpxchg(ptr, pold, new) \ argument 225 __try_cmpxchg((ptr), (pold), (new), sizeof(*(ptr)))
|
/linux-6.3-rc2/arch/x86/kvm/vmx/ |
A D | posted_intr.c | 39 static int pi_try_set_control(struct pi_desc *pi_desc, u64 *pold, u64 new) in pi_try_set_control() argument 47 if (!try_cmpxchg64(&pi_desc->control, pold, new)) in pi_try_set_control()
|
/linux-6.3-rc2/drivers/input/ |
A D | input.c | 194 int *pold; in input_handle_abs_event() local 210 pold = &dev->absinfo[code].value; in input_handle_abs_event() 212 pold = &mt->slots[mt->slot].abs[code - ABS_MT_FIRST]; in input_handle_abs_event() 218 pold = NULL; in input_handle_abs_event() 221 if (pold) { in input_handle_abs_event() 222 *pval = input_defuzz_abs_event(*pval, *pold, in input_handle_abs_event() 224 if (*pold == *pval) in input_handle_abs_event() 227 *pold = *pval; in input_handle_abs_event()
|
/linux-6.3-rc2/include/net/ |
A D | sch_generic.h | 1136 struct Qdisc **pold) in qdisc_replace() argument 1141 old = *pold; in qdisc_replace() 1142 *pold = new; in qdisc_replace()
|
/linux-6.3-rc2/drivers/gpu/drm/amd/amdkfd/ |
A D | kfd_svm.c | 866 unsigned char *new, *old, *pold; in svm_range_split_array() local 871 pold = *(unsigned char **)ppold; in svm_range_split_array() 872 if (!pold) in svm_range_split_array() 880 memcpy(new, pold + d, new_n * size); in svm_range_split_array() 889 memcpy(old, pold + d, old_n * size); in svm_range_split_array() 891 kvfree(pold); in svm_range_split_array()
|
Completed in 28 milliseconds