Lines Matching refs:bit
45 int bit);
47 int bit);
86 int bit) in __ocfs2_node_map_set_bit() argument
88 set_bit(bit, map->map); in __ocfs2_node_map_set_bit()
93 int bit) in ocfs2_node_map_set_bit() argument
95 if (bit==-1) in ocfs2_node_map_set_bit()
97 BUG_ON(bit >= map->num_nodes); in ocfs2_node_map_set_bit()
99 __ocfs2_node_map_set_bit(map, bit); in ocfs2_node_map_set_bit()
104 int bit) in __ocfs2_node_map_clear_bit() argument
106 clear_bit(bit, map->map); in __ocfs2_node_map_clear_bit()
111 int bit) in ocfs2_node_map_clear_bit() argument
113 if (bit==-1) in ocfs2_node_map_clear_bit()
115 BUG_ON(bit >= map->num_nodes); in ocfs2_node_map_clear_bit()
117 __ocfs2_node_map_clear_bit(map, bit); in ocfs2_node_map_clear_bit()
123 int bit) in ocfs2_node_map_test_bit() argument
126 if (bit >= map->num_nodes) { in ocfs2_node_map_test_bit()
127 mlog(ML_ERROR, "bit=%d map->num_nodes=%d\n", bit, map->num_nodes); in ocfs2_node_map_test_bit()
131 ret = test_bit(bit, map->map); in ocfs2_node_map_test_bit()