Searched refs:snrDb (Results 1 – 1 of 1) sorted by relevance
410 int snrDb = rssiDbm - noiseFloorDbm; in predictThroughputInternal() local412 int bitPerTone = calculateBitPerTone(snrDb); in predictThroughputInternal()434 .append(" snrDb ").append(snrDb) in predictThroughputInternal()445 private static int calculateBitPerTone(int snrDb) { in calculateBitPerTone() argument447 if (snrDb <= SNR_DB_TO_BIT_PER_TONE_LUT_MAX) { in calculateBitPerTone()448 int lut_in_idx = Math.max(snrDb, SNR_DB_TO_BIT_PER_TONE_LUT_MIN) in calculateBitPerTone()456 bitPerTone = snrDb * SNR_DB_TO_BIT_PER_TONE_HIGH_SNR_SCALE; in calculateBitPerTone()