Lines Matching refs:BitWidth
15 use crate::bitwidth::BitWidth::*;
35 pub enum BitWidth { enum
41 impl BitWidth { impl
59 impl Default for BitWidth { implementation
68 impl From<$from> for BitWidth {
69 fn from(x: $from) -> BitWidth {
90 impl From<f64> for BitWidth { implementation
91 fn from(x: f64) -> BitWidth { in from() argument
99 impl From<f32> for BitWidth { implementation
100 fn from(_: f32) -> BitWidth { in from() argument
106 pub fn align(buffer: &mut Vec<u8>, width: BitWidth) { in align() argument