Lines Matching full:chipset
15 /// Enum representation of the GPU chipset.
17 pub(crate) enum Chipset {
21 impl Chipset { impl
22 pub(crate) const ALL: &'static [Chipset] = &[
23 $( Chipset::$variant, )*
36 impl TryFrom<u32> for Chipset {
41 $( $value => Ok(Chipset::$variant), )*
70 impl Chipset { impl
94 impl fmt::Display for Chipset { implementation
130 chipset: Chipset, field
131 /// The revision of the chipset.
141 chipset: boot0.chipset().try_into()?, in new()
158 let mut chip_name = CString::try_from_fmt(fmt!("{}", spec.chipset))?; in new()
191 "NVIDIA (Chipset: {}, Architecture: {:?}, Revision: {})\n", in new()
192 spec.chipset, in new()
193 spec.chipset.arch(), in new()