Lines Matching +full:zero +full:- +full:initialised

9 #include "dm-array.h"
11 /*----------------------------------------------------------------*/
18 * Like the dm-array that it's based on, the caller needs to keep track of
19 * the size of the bitset separately. The underlying dm-array implicitly
20 * knows how many words it's storing and will return -ENODATA if you try
24 * Bits are indexed from zero.
81 * tm - the transaction manager that should supervise this structure
82 * info - the structure being initialised
88 * Create an empty, zero length bitset.
90 * info - describes the bitset
91 * new_root - on success, points to the new root block
101 * info - describes the array
102 * root - the root block of the array on disk
103 * size - the number of entries in the array
104 * fn - the callback
105 * context - passed to the callback
114 * info - describes the bitset
115 * old_root - the root block of the array on disk
116 * old_nr_entries - the number of bits in the old bitset
117 * new_nr_entries - the number of bits you want in the new bitset
118 * default_value - the value for any new bits
119 * new_root - on success, points to the new root block
133 * info - describes the bitset
134 * root - the root block of the bitset
135 * index - the bit index
136 * new_root - on success, points to the new root block
138 * -ENODATA will be returned if the index is out of bounds.
146 * info - describes the bitset
147 * root - the root block of the bitset
148 * index - the bit index
149 * new_root - on success, points to the new root block
151 * -ENODATA will be returned if the index is out of bounds.
159 * info - describes the bitset
160 * root - the root block of the bitset
161 * index - the bit index
162 * new_root - on success, points to the new root block (cached values may have been written)
163 * result - the bit value you're after
165 * -ENODATA will be returned if the index is out of bounds.
173 * info - describes the bitset
174 * root - the root block of the bitset
175 * new_root - on success, points to the new root block
203 /*----------------------------------------------------------------*/