Lines Matching refs:bit
44 int bit);
46 int bit);
85 int bit) in __ocfs2_node_map_set_bit() argument
87 set_bit(bit, map->map); in __ocfs2_node_map_set_bit()
92 int bit) in ocfs2_node_map_set_bit() argument
94 if (bit==-1) in ocfs2_node_map_set_bit()
96 BUG_ON(bit >= map->num_nodes); in ocfs2_node_map_set_bit()
98 __ocfs2_node_map_set_bit(map, bit); in ocfs2_node_map_set_bit()
103 int bit) in __ocfs2_node_map_clear_bit() argument
105 clear_bit(bit, map->map); in __ocfs2_node_map_clear_bit()
110 int bit) in ocfs2_node_map_clear_bit() argument
112 if (bit==-1) in ocfs2_node_map_clear_bit()
114 BUG_ON(bit >= map->num_nodes); in ocfs2_node_map_clear_bit()
116 __ocfs2_node_map_clear_bit(map, bit); in ocfs2_node_map_clear_bit()
122 int bit) in ocfs2_node_map_test_bit() argument
125 if (bit >= map->num_nodes) { in ocfs2_node_map_test_bit()
126 mlog(ML_ERROR, "bit=%d map->num_nodes=%d\n", bit, map->num_nodes); in ocfs2_node_map_test_bit()
130 ret = test_bit(bit, map->map); in ocfs2_node_map_test_bit()