Lines Matching refs:l_tmpValue
236 uint8_t l_tmpValue = 0; in getDdr4BasedDdimmSize() local
239 l_tmpValue = i_iterator[constants::SPD_BYTE_4] & in getDdr4BasedDdimmSize()
243 if (l_tmpValue > constants::JEDEC_SDRAMCAP_RESERVED) in getDdr4BasedDdimmSize()
251 l_sdramCapacity = (l_sdramCapacity << l_tmpValue) * in getDdr4BasedDdimmSize()
255 l_tmpValue = i_iterator[constants::SPD_BYTE_13] & in getDdr4BasedDdimmSize()
258 if (l_tmpValue > constants::JEDEC_RESERVED_BITS) in getDdr4BasedDdimmSize()
266 l_primaryBusWid = (l_primaryBusWid << l_tmpValue) * in getDdr4BasedDdimmSize()
270 l_tmpValue = i_iterator[constants::SPD_BYTE_12] & in getDdr4BasedDdimmSize()
273 if (l_tmpValue > constants::JEDEC_RESERVED_BITS) in getDdr4BasedDdimmSize()
281 l_sdramWidth = (l_sdramWidth << l_tmpValue) * in getDdr4BasedDdimmSize()
285 l_tmpValue = i_iterator[constants::SPD_BYTE_12] & in getDdr4BasedDdimmSize()
287 l_tmpValue >>= constants::JEDEC_RESERVED_BITS; in getDdr4BasedDdimmSize()
289 if (l_tmpValue > constants::JEDEC_RESERVED_BITS) in getDdr4BasedDdimmSize()
295 uint8_t l_logicalRanksPerDimm = l_tmpValue + 1; in getDdr4BasedDdimmSize()
298 l_tmpValue = i_iterator[constants::SPD_BYTE_6] & in getDdr4BasedDdimmSize()
301 if (l_tmpValue == constants::JEDEC_SINGLE_LOAD_STACK) in getDdr4BasedDdimmSize()
304 l_tmpValue = i_iterator[constants::SPD_BYTE_6] & in getDdr4BasedDdimmSize()
306 l_tmpValue >>= constants::JEDEC_DIE_COUNT_RIGHT_SHIFT; in getDdr4BasedDdimmSize()
308 uint8_t l_dieCount = l_tmpValue + 1; in getDdr4BasedDdimmSize()