Lines Matching refs:ba_ptr
847 struct buf_arg *ba_ptr = private; in abd_copy_to_buf_off_cb() local
849 (void) memcpy(ba_ptr->arg_buf, buf, size); in abd_copy_to_buf_off_cb()
850 ba_ptr->arg_buf = (char *)ba_ptr->arg_buf + size; in abd_copy_to_buf_off_cb()
861 struct buf_arg ba_ptr = { buf }; in abd_copy_to_buf_off() local
864 &ba_ptr); in abd_copy_to_buf_off()
871 struct buf_arg *ba_ptr = private; in abd_cmp_buf_off_cb() local
873 ret = memcmp(buf, ba_ptr->arg_buf, size); in abd_cmp_buf_off_cb()
874 ba_ptr->arg_buf = (char *)ba_ptr->arg_buf + size; in abd_cmp_buf_off_cb()
885 struct buf_arg ba_ptr = { (void *) buf }; in abd_cmp_buf_off() local
887 return (abd_iterate_func(abd, off, size, abd_cmp_buf_off_cb, &ba_ptr)); in abd_cmp_buf_off()
893 struct buf_arg *ba_ptr = private; in abd_copy_from_buf_off_cb() local
895 (void) memcpy(buf, ba_ptr->arg_buf, size); in abd_copy_from_buf_off_cb()
896 ba_ptr->arg_buf = (char *)ba_ptr->arg_buf + size; in abd_copy_from_buf_off_cb()
907 struct buf_arg ba_ptr = { (void *) buf }; in abd_copy_from_buf_off() local
910 &ba_ptr); in abd_copy_from_buf_off()