MCPcopy Create free account
hub / github.com/MariaDB/server / clear_bit

Method clear_bit

sql/sql_bitmap.h:111–114  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

109 buffer[bit_index(n)] |= bit_mask(n);
110 }
111 void clear_bit(uint n)
112 {
113 buffer[bit_index(n)] &= ~bit_mask(n);
114 }
115 bool is_set(uint n) const
116 {
117 return buffer[bit_index(n)] & bit_mask(n);

Callers 10

sel_trees_can_be_oredFunction · 0.80
remove_nonrange_treesFunction · 0.80
set_switchMethod · 0.80
alter_table_manage_keysFunction · 0.80
setup_without_groupFunction · 0.80
finalizeMethod · 0.80
openMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected