Lines Matching defs:addr
19 * @addr: the address to start counting from
23 static inline void clear_bit_unlock(long nr, volatile unsigned long *addr)
26 instrument_atomic_write(addr + BIT_WORD(nr), sizeof(long));
27 arch_clear_bit_unlock(nr, addr);
33 * @addr: Address to start counting from
39 static inline void __clear_bit_unlock(long nr, volatile unsigned long *addr)
42 instrument_write(addr + BIT_WORD(nr), sizeof(long));
43 arch___clear_bit_unlock(nr, addr);
49 * @addr: Address to count from
55 static inline bool test_and_set_bit_lock(long nr, volatile unsigned long *addr)
57 instrument_atomic_read_write(addr + BIT_WORD(nr), sizeof(long));
58 return arch_test_and_set_bit_lock(nr, addr);
66 * @addr: the address to start counting from
74 clear_bit_unlock_is_negative_byte(long nr, volatile unsigned long *addr)
77 instrument_atomic_write(addr + BIT_WORD(nr), sizeof(long));
78 return arch_clear_bit_unlock_is_negative_byte(nr, addr);