Lines Matching defs:ptr
114 #define ptr_mask_bits(ptr, n) ({ \ argument
119 #define ptr_unmask_bits(ptr, n) ((unsigned long)(ptr) & (BIT(n) - 1)) argument
121 #define ptr_unpack_bits(ptr, bits, n) ({ \ argument
127 #define ptr_pack_bits(ptr, bits, n) ({ \ argument
133 #define ptr_dec(ptr) ({ \ argument
138 #define ptr_inc(ptr) ({ \ argument
143 #define page_mask_bits(ptr) ptr_mask_bits(ptr, PAGE_SHIFT) argument
144 #define page_unmask_bits(ptr) ptr_unmask_bits(ptr, PAGE_SHIFT) argument
145 #define page_pack_bits(ptr, bits) ptr_pack_bits(ptr, bits, PAGE_SHIFT) argument
146 #define page_unpack_bits(ptr, bits) ptr_unpack_bits(ptr, bits, PAGE_SHIFT) argument
148 #define fetch_and_zero(ptr) ({ \ argument
165 #define container_of_user(ptr, type, member) ({ \ argument