Searched refs:snrDb (Results 1 – 2 of 2) sorted by relevance
333 int snrDb = rssiDbm - noiseFloorDbm; in predictThroughputInternal() local335 int bitPerTone = calculateBitPerTone(snrDb); in predictThroughputInternal()354 .append(" snrDb ").append(snrDb) in predictThroughputInternal()365 private static int calculateBitPerTone(int snrDb) { in calculateBitPerTone() argument367 if (snrDb <= SNR_DB_TO_BIT_PER_TONE_LUT_MAX) { in calculateBitPerTone()368 int lut_in_idx = Math.max(snrDb, SNR_DB_TO_BIT_PER_TONE_LUT_MIN) in calculateBitPerTone()376 bitPerTone = snrDb * SNR_DB_TO_BIT_PER_TONE_HIGH_SNR_SCALE; in calculateBitPerTone()
1415 SET(SnrInDb, measurement->snrDb); in translateSingleGnssMeasurement()