Home
last modified time | relevance | path

Searched refs:EccType (Results 1 – 2 of 2) sorted by relevance

/openbmc/smbios-mdr/include/
H A Ddimm.hpp38 using EccType = typedef
124 EccType ecc(EccType value) override;
241 const std::map<uint8_t, EccType> dimmEccTypeMap = {
242 {0x1, EccType::NoECC}, {0x2, EccType::NoECC},
243 {0x3, EccType::NoECC}, {0x4, EccType::AddressParity},
244 {0x5, EccType::SingleBitECC}, {0x6, EccType::MultiBitECC},
245 {0x7, EccType::NoECC}};
/openbmc/smbios-mdr/src/
H A Ddimm.cpp40 using EccType = typedef
131 std::map<uint8_t, EccType>::const_iterator it = in updateEccType()
135 ecc(EccType::NoECC); in updateEccType()
151 EccType Dimm::ecc(EccType value) in ecc()