Home
last modified time | relevance | path

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

/xnu-8796.121.2/bsd/vfs/
H A Dvfs_io_compression_stats.c79 .marked_point = 0
130 iocs_store_buffer.marked_point = 0; in io_compression_stats_allocate_compression_buffers()
620 if (iocs_store_buffer.marked_point < iocs_store_buffer.current_position) {
621 expected_size = iocs_store_buffer.current_position - iocs_store_buffer.marked_point;
623 expected_size = IOCS_STORE_BUFFER_SIZE - iocs_store_buffer.marked_point;
633 if (iocs_store_buffer.marked_point < iocs_store_buffer.current_position) {
634 error = copyout((void *)((uintptr_t)iocs_store_buffer.buffer + iocs_store_buffer.marked_point),
636 iocs_store_buffer.current_position - iocs_store_buffer.marked_point);
641 ret_len = iocs_store_buffer.current_position - iocs_store_buffer.marked_point;
643 error = copyout((void *)((uintptr_t)iocs_store_buffer.buffer + iocs_store_buffer.marked_point),
[all …]
H A Dvfs_io_compression_stats.h53 uint32_t marked_point; member