Lines Matching refs:map
41 #define physid_set(physid, map) set_bit(physid, (map).mask) argument
42 #define physid_clear(physid, map) clear_bit(physid, (map).mask) argument
43 #define physid_isset(physid, map) test_bit(physid, (map).mask) argument
44 #define physid_test_and_set(physid, map) test_and_set_bit(physid, (map).mask) argument
46 #define first_physid(map) find_first_bit((map).mask, \ argument
48 #define next_physid(id, map) find_next_bit((map).mask, \ argument
50 #define last_physid(map) ({ \ argument
51 const unsigned long *mask = (map).mask; \
61 #define physids_clear(map) bitmap_zero((map).mask, MAX_APICS) argument
63 #define physids_empty(map) bitmap_empty((map).mask, MAX_APICS) argument
65 #define physids_weight(map) bitmap_weight((map).mask, MAX_APICS) argument