Lines Matching refs:bit
28 int bit);
30 int bit);
69 int bit) in __ocfs2_node_map_set_bit() argument
71 set_bit(bit, map->map); in __ocfs2_node_map_set_bit()
76 int bit) in ocfs2_node_map_set_bit() argument
78 if (bit==-1) in ocfs2_node_map_set_bit()
80 BUG_ON(bit >= map->num_nodes); in ocfs2_node_map_set_bit()
82 __ocfs2_node_map_set_bit(map, bit); in ocfs2_node_map_set_bit()
87 int bit) in __ocfs2_node_map_clear_bit() argument
89 clear_bit(bit, map->map); in __ocfs2_node_map_clear_bit()
94 int bit) in ocfs2_node_map_clear_bit() argument
96 if (bit==-1) in ocfs2_node_map_clear_bit()
98 BUG_ON(bit >= map->num_nodes); in ocfs2_node_map_clear_bit()
100 __ocfs2_node_map_clear_bit(map, bit); in ocfs2_node_map_clear_bit()
106 int bit) in ocfs2_node_map_test_bit() argument
109 if (bit >= map->num_nodes) { in ocfs2_node_map_test_bit()
110 mlog(ML_ERROR, "bit=%d map->num_nodes=%d\n", bit, map->num_nodes); in ocfs2_node_map_test_bit()
114 ret = test_bit(bit, map->map); in ocfs2_node_map_test_bit()