Lines Matching defs:count
171 u64 count, pgoff_t offset)
198 /* Adjust count with file length. */
201 count = 0;
202 else if (count + offset > filesize)
203 count = filesize - offset;
207 while (count > 0) {
227 if (len_in_blk > count)
228 len_in_blk = count;
240 count -= len_in_blk;
261 u64 count, pgoff_t offset, enum wr_addr_type addr_type)
278 if (count == 0)
302 while (count > 0) {
342 if (len_in_blk > count)
343 len_in_blk = count;
356 count -= len_in_blk;
361 if ((--remained_blkentries == 0 || count == 0) && (dn.ndirty))
381 u64 count, pgoff_t offset)
383 return f2fs_write_ex(sbi, ino, buffer, count, offset, WR_NORMAL);
387 u64 count, pgoff_t offset)
389 return f2fs_write_ex(sbi, ino, buffer, count, offset, WR_COMPRESS_DATA);
498 int count;
549 count = blkaddr == COMPRESS_ADDR ? cluster_size : 1;
550 cur_blk += count;
551 dn.ofs_in_node += count;
552 remained_blkentries -= count;