Searched refs:io_count (Results 1 - 3 of 3) sorted by relevance

/macosx-10.9.5/ntfs-83/kext/
H A Dntfs_compress.c597 int err, io_count, pages_per_cb, cb_size, cur_pg, cur_pg_ofs, last_pg; local
684 io_count = cb_size - dst_ofs_in_cb;
685 if (io_count > count)
686 io_count = count;
693 io_count = PAGE_SIZE - cur_pg_ofs;
714 bzero(dst, io_count);
759 err = uio_addiov(uio, CAST_USER_ADDR_T(dst), io_count);
846 err = ntfs_decompress(vol, dst, dst_ofs_in_cb, io_count, cb, cb_size,
857 cur_pg_ofs += io_count;
865 ofs += io_count;
[all...]
/macosx-10.9.5/xnu-2422.115.4/osfmk/profiling/
H A Dprofile-mk.c194 ior->io_count,
213 ior->io_residual = ior->io_count - count;
/macosx-10.9.5/hfs-226.1.1/fsck_hfs/
H A Dcache.c1110 uint32_t io_count; local
1139 io_count = (write_len < cache->BlockSize) ? write_len : cache->BlockSize;
1142 write_buffer = malloc (io_count);
1155 /* The last buffer might be less than io_count bytes */
1156 if (write_len < io_count) {
1157 io_count = write_len;
1165 if (bytes_remain >= io_count) {
1170 bytes_remain = io_count;
1183 memset (write_buffer + bytes_remain, 0, io_count - bytes_remain);
1192 memset (write_buffer, 0, io_count);
[all...]

Completed in 175 milliseconds