Home
last modified time | relevance | path

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

/freebsd/sys/compat/linux/
H A Dlinux_ioctl.c2681 linux_to_bsd_v4l_buffer(struct l_video_buffer *lvb, struct video_buffer *vb) in linux_to_bsd_v4l_buffer() argument
2683 vb->base = PTRIN(lvb->base); /* possible pointer size conversion */ in linux_to_bsd_v4l_buffer()
2684 vb->height = lvb->height; in linux_to_bsd_v4l_buffer()
2685 vb->width = lvb->width; in linux_to_bsd_v4l_buffer()
2686 vb->depth = lvb->depth; in linux_to_bsd_v4l_buffer()
2687 vb->bytesperline = lvb->bytesperline; in linux_to_bsd_v4l_buffer()
2692 bsd_to_linux_v4l_buffer(struct video_buffer *vb, struct l_video_buffer *lvb) in bsd_to_linux_v4l_buffer() argument
2694 lvb->base = PTROUT(vb->base); /* possible pointer size conversion */ in bsd_to_linux_v4l_buffer()
2695 lvb->height = vb->height; in bsd_to_linux_v4l_buffer()
2696 lvb->width = vb->width; in bsd_to_linux_v4l_buffer()
[all …]
/freebsd/sys/contrib/openzfs/cmd/zfs/
H A Dzfs_main.c2867 boolean_t lvb, rvb; in us_compare() local
2939 if (nvlist_lookup_boolean_value(lnvl, "smbentity", &lvb) == 0 && in us_compare()
2941 lvb != rvb) in us_compare()
2942 return (lvb < rvb ? -1 : 1); in us_compare()