Searched refs:oldp (Results 1 – 3 of 3) sorted by relevance
| /include/linux/ |
| D | refcount.h | 174 bool __refcount_add_not_zero(int i, refcount_t *r, int *oldp) in __refcount_add_not_zero() argument 183 if (oldp) in __refcount_add_not_zero() 184 *oldp = old; in __refcount_add_not_zero() 216 bool __refcount_add_not_zero_limited_acquire(int i, refcount_t *r, int *oldp, in __refcount_add_not_zero_limited_acquire() argument 226 if (oldp) in __refcount_add_not_zero_limited_acquire() 227 *oldp = old; in __refcount_add_not_zero_limited_acquire() 232 if (oldp) in __refcount_add_not_zero_limited_acquire() 233 *oldp = old; in __refcount_add_not_zero_limited_acquire() 242 __refcount_inc_not_zero_limited_acquire(refcount_t *r, int *oldp, int limit) in __refcount_inc_not_zero_limited_acquire() argument 244 return __refcount_add_not_zero_limited_acquire(1, r, oldp, limit); in __refcount_inc_not_zero_limited_acquire() [all …]
|
| D | nodemask.h | 356 const nodemask_t *oldp, const nodemask_t *newp, int nbits) in __node_remap() argument 358 return bitmap_bitremap(oldbit, oldp->bits, newp->bits, nbits); in __node_remap() 364 const nodemask_t *oldp, const nodemask_t *newp, int nbits) in __nodes_remap() argument 366 bitmap_remap(dstp->bits, srcp->bits, oldp->bits, newp->bits, nbits); in __nodes_remap()
|
| /include/linux/atomic/ |
| D | atomic-instrumented.h | 4873 #define try_cmpxchg(ptr, oldp, ...) \ argument 4876 typeof(oldp) __ai_oldp = (oldp); \ 4883 #define try_cmpxchg_acquire(ptr, oldp, ...) \ argument 4886 typeof(oldp) __ai_oldp = (oldp); \ 4892 #define try_cmpxchg_release(ptr, oldp, ...) \ argument 4895 typeof(oldp) __ai_oldp = (oldp); \ 4902 #define try_cmpxchg_relaxed(ptr, oldp, ...) \ argument 4905 typeof(oldp) __ai_oldp = (oldp); \ 4911 #define try_cmpxchg64(ptr, oldp, ...) \ argument 4914 typeof(oldp) __ai_oldp = (oldp); \ [all …]
|