Lines Matching defs:c_uint
27 pub type c_uint = u32;
54 static_assertions::assert_type_eq_all!(ctypes::c_uint, libc::c_uint);
83 use crate::ctypes::{c_long, c_uint, c_uchar};
88 pub unsafe fn CMSG_ALIGN(len: c_uint) -> c_uint {
89 let c_long_size = size_of::<c_long>() as c_uint;
97 pub unsafe fn CMSG_SPACE(len: c_uint) -> c_uint {
98 size_of::<cmsghdr>() as c_uint + CMSG_ALIGN(len)
101 pub unsafe fn CMSG_LEN(len: c_uint) -> c_uint {
102 size_of::<cmsghdr>() as c_uint + len