Home
last modified time | relevance | path

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

/openbmc/smbios-mdr/include/
H A Ddimm.hpp39 using EccType = typedef
129 EccType ecc(EccType value) override;
247 const std::map<uint8_t, EccType> dimmEccTypeMap = {
248 {0x1, EccType::NoECC}, {0x2, EccType::NoECC},
249 {0x3, EccType::NoECC}, {0x4, EccType::AddressParity},
250 {0x5, EccType::SingleBitECC}, {0x6, EccType::MultiBitECC},
251 {0x7, EccType::NoECC}};
/openbmc/smbios-mdr/src/
H A Ddimm.cpp42 using EccType = typedef
137 std::map<uint8_t, EccType>::const_iterator it = in updateEccType()
141 ecc(EccType::NoECC); in updateEccType()
157 EccType Dimm::ecc(EccType value) in ecc()