Lines Matching refs:rw
32 #define __build_read_lock_ptr(rw, helper) \ argument
47 : "d" (rw) \
51 #define __build_read_lock_const(rw, helper) \ argument
66 : "d" (rw) \
70 #define __build_read_lock(rw, helper) \ argument
72 if (__builtin_constant_p(rw)) \
73 __build_read_lock_const(rw, helper); \
75 __build_read_lock_ptr(rw, helper); \
78 #define __build_write_lock_ptr(rw, helper) \ argument
93 : "d" (rw) \
97 #define __build_write_lock_const(rw, helper) \ argument
112 : "d" (rw) \
116 #define __build_write_lock(rw, helper) \ argument
118 if (__builtin_constant_p(rw)) \
119 __build_write_lock_const(rw, helper); \
121 __build_write_lock_ptr(rw, helper); \