Lines Matching +full:33 +full:_

77 /// // let _ = Bounded::<u8, 9>::new::<10>();
80 /// // let _ = Bounded::<i8, 4>::new::<8>();
144 /// let _: Bounded<u16, 12> = v.cast();
147 /// // let _: Bounded<u8, 12> = v.cast();
150 /// let _ = v.extend::<15>();
152 /// // ... to the limits of the backing type. This doesn't build as a `u32` cannot contain 33 bits.
153 /// // let _ = v.extend::<33>();
178 /// // let _ = Bounded::<u32, 6>::from(10u8);
189 /// // let _ = Bounded::<i8, 2>::from(true);
221 /// // let _ = bool::from(v);
364 /// // let _ = Bounded::<u32, 4>::from_expr(v);
367 /// let _ = Bounded::<u32, 4>::from_expr(v & 0xf);
467 /// // let _: Bounded<u8, 12> = v.cast();
484 /// Right-shifts `self` by `SHIFT` and returns the result as a `Bounded<_, RES>`, where `RES >=
493 /// let v_shifted: Bounded::<u32, 8> = v.shr::<8, _>();
507 /// `Bounded<_, RES>`, where `RES >= N - SHIFT`.
517 /// let v_shifted: Option<Bounded<u32, 8>> = v.shr_exact::<8, _>();
523 /// let v_shifted: Option<Bounded<u32, 8>> = v.shr_exact::<8, _>();
537 /// Left-shifts `self` by `SHIFT` and returns the result as a `Bounded<_, RES>`, where `RES >=
546 /// let v_shifted: Bounded::<u32, 16> = v.shl::<8, _>();
895 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt()
905 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt()
915 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt()
925 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt()
935 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt()
945 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt()
955 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt()
990 32 33 34 35 36 37 38 39
1077 33 34 35 36 37 38 39 40