Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DThroughputPredictor.java333 int snrDb = rssiDbm - noiseFloorDbm; in predictThroughputInternal() local
335 int bitPerTone = calculateBitPerTone(snrDb); in predictThroughputInternal()
354 .append(" snrDb ").append(snrDb) in predictThroughputInternal()
365 private static int calculateBitPerTone(int snrDb) { in calculateBitPerTone() argument
367 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()
/frameworks/base/services/core/jni/
Dcom_android_server_location_GnssLocationProvider.cpp1415 SET(SnrInDb, measurement->snrDb); in translateSingleGnssMeasurement()