Lines Matching defs:count
379 int dcache_update_cache(int fd, void *buf, off64_t offset, size_t count)
381 return dcache_update_rw(fd, buf, offset, count, true);
385 int dcache_read(int fd, void *buf, off64_t offset, size_t count)
387 return dcache_update_rw(fd, buf, offset, count, false);
403 static int sparse_read_blk(__u64 block, int count, void *buf)
409 for (i = 0; i < count; ++i) {
420 static int sparse_write_blk(__u64 block, int count, const void *buf)
426 for (i = 0; i < count; ++i) {
441 static int sparse_write_zeroed_blk(__u64 block, int count)
446 for (i = 0; i < count; ++i) {
502 int UNUSED(count), void *UNUSED(buf))
508 int UNUSED(count), const void *UNUSED(buf))
513 static int sparse_write_zeroed_blk(__u64 UNUSED(block), int UNUSED(count))