Home
last modified time | relevance | path

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

/xnu-8796.121.2/bsd/vfs/
H A Dvfs_cluster.c1542 uint32_t bytes_in_last_page; in cluster_io() local
1551 bytes_in_last_page = cbp_head->b_uploffset & PAGE_MASK; in cluster_io()
1553 bytes_in_last_page += cbp->b_bcount; in cluster_io()
1555 bytes_in_last_page &= PAGE_MASK; in cluster_io()
1557 while (bytes_in_last_page) { in cluster_io()
1571 if (bytes_in_last_page >= cbp->b_bcount) { in cluster_io()
1575 bytes_in_last_page -= cbp->b_bcount; in cluster_io()
1581 assert(bytes_in_last_page == 0); in cluster_io()
1603 cbp->b_bcount -= bytes_in_last_page; in cluster_io()
1605 bytes_in_last_page = 0; in cluster_io()