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)
25 instrument_atomic_write(addr + BIT_WORD(nr), sizeof(long));
26 arch_clear_bit_unlock(nr, addr);
32 * @addr: Address to start counting from
38 static inline void __clear_bit_unlock(long nr, volatile unsigned long *addr)
40 instrument_write(addr + BIT_WORD(nr), sizeof(long));
41 arch___clear_bit_unlock(nr, addr);
47 * @addr: Address to count from
53 static inline bool test_and_set_bit_lock(long nr, volatile unsigned long *addr)
55 instrument_atomic_read_write(addr + BIT_WORD(nr), sizeof(long));
56 return arch_test_and_set_bit_lock(nr, addr);
64 * @addr: the address to start counting from
72 clear_bit_unlock_is_negative_byte(long nr, volatile unsigned long *addr)
74 instrument_atomic_write(addr + BIT_WORD(nr), sizeof(long));
75 return arch_clear_bit_unlock_is_negative_byte(nr, addr);