Home
last modified time | relevance | path

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

/freebsd-9-stable/sys/compat/linux/
Dlinux_ioctl.c2686 linux_to_bsd_v4l_buffer(struct l_video_buffer *lvb, struct video_buffer *vb) in linux_to_bsd_v4l_buffer() argument
2688 vb->base = PTRIN(lvb->base); /* possible pointer size conversion */ in linux_to_bsd_v4l_buffer()
2689 vb->height = lvb->height; in linux_to_bsd_v4l_buffer()
2690 vb->width = lvb->width; in linux_to_bsd_v4l_buffer()
2691 vb->depth = lvb->depth; in linux_to_bsd_v4l_buffer()
2692 vb->bytesperline = lvb->bytesperline; in linux_to_bsd_v4l_buffer()
2697 bsd_to_linux_v4l_buffer(struct video_buffer *vb, struct l_video_buffer *lvb) in bsd_to_linux_v4l_buffer() argument
2699 lvb->base = PTROUT(vb->base); /* possible pointer size conversion */ in bsd_to_linux_v4l_buffer()
2700 lvb->height = vb->height; in bsd_to_linux_v4l_buffer()
2701 lvb->width = vb->width; in bsd_to_linux_v4l_buffer()
[all …]
/freebsd-9-stable/cddl/contrib/opensolaris/cmd/zfs/
Dzfs_main.c2273 boolean_t lvb, rvb; in us_compare() local
2339 if (nvlist_lookup_boolean_value(lnvl, "smbentity", &lvb) == 0 && in us_compare()
2341 lvb != rvb) in us_compare()
2342 return (lvb < rvb ? -1 : 1); in us_compare()