Lines Matching refs:cnt
36 s64 cnt = count;
47 (unsigned long long)cnt, (unsigned int)value,
50 BUG_ON(cnt < 0);
54 * bits, i.e. @start_bit and @start_bit + @cnt - 1, respectively.
57 end_index = (start_bit + cnt - 1) >> (3 + PAGE_SHIFT);
79 while ((bit & 7) && cnt) {
80 cnt--;
87 if (!cnt)
95 * to @cnt.
97 len = min_t(s64, cnt >> 3, PAGE_SIZE - pos);
99 cnt -= len << 3;
102 if (cnt < 8)
107 BUG_ON(cnt <= 0);
119 * page up to @cnt.
121 len = min_t(s64, cnt >> 3, PAGE_SIZE);
123 cnt -= len << 3;
130 if (cnt) {
133 BUG_ON(cnt > 7);
135 bit = cnt;
155 * - @count - @cnt is the number of bits that have been modified
159 if (count != cnt)
160 pos = __ntfs_bitmap_set_bits_in_run(vi, start_bit, count - cnt,