Home
last modified time | relevance | path

Searched refs:tocpy (Results 1 – 1 of 1) sorted by relevance

/netbsd-src/external/cddl/osnet/dist/uts/common/fs/zfs/
H A Ddmu.c913 int tocpy; in dmu_read() local
920 tocpy = (int)MIN(db->db_size - bufoff, size); in dmu_read()
922 bcopy((char *)db->db_data + bufoff, buf, tocpy); in dmu_read()
924 offset += tocpy; in dmu_read()
925 size -= tocpy; in dmu_read()
926 buf = (char *)buf + tocpy; in dmu_read()
948 int tocpy; in dmu_write() local
955 tocpy = (int)MIN(db->db_size - bufoff, size); in dmu_write()
957 ASSERT(i == 0 || i == numbufs-1 || tocpy == db->db_size); in dmu_write()
959 if (tocpy == db->db_size) in dmu_write()
[all …]