Searched refs:ma (Results 1 – 2 of 2) sorted by relevance
1885 pub {const} fn makedev(ma: c_uint, mi: c_uint) -> dev_t {1886 let ma = ma as dev_t; localVariable1888 (ma << 16) | (mi & 0xffff)
3460 pub {const} fn makedev(ma: c_uint, mi: c_uint) -> crate::dev_t {3461 let ma = ma as crate::dev_t; localVariable3463 ((ma & 0xfff) << 8) | (mi & 0xff) | ((mi & 0xfff00) << 12)