Lines Matching refs:i_ByteValue
26 bool DdimmVpdParser::checkValidValue(uint8_t i_ByteValue, uint8_t i_shift,
30 uint8_t l_ByteValue = i_ByteValue >> i_shift;
42 uint8_t DdimmVpdParser::getDdr5DensityPerDie(uint8_t i_ByteValue)
45 if (i_ByteValue < constants::VALUE_5)
47 l_densityPerDie = i_ByteValue * constants::VALUE_4;
51 switch (i_ByteValue)
79 uint8_t DdimmVpdParser::getDdr5DiePerPackage(uint8_t i_ByteValue)
82 if (i_ByteValue < constants::VALUE_2)
84 l_DiePerPackage = i_ByteValue + constants::VALUE_1;
89 pow(constants::VALUE_2, (i_ByteValue - constants::VALUE_1));