Home
last modified time | relevance | path

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

/frameworks/base/services/people/java/com/android/server/people/prediction/
DSharesheetModelScorer.java348 private static float normalizeFreqScore(double freqRatio) { in normalizeFreqScore() argument
349 if (freqRatio >= 2.5) { in normalizeFreqScore()
351 } else if (freqRatio >= 1.5) { in normalizeFreqScore()
353 } else if (freqRatio >= 1.0) { in normalizeFreqScore()
355 } else if (freqRatio >= 0.75) { in normalizeFreqScore()
363 private static float normalizeMimeFreqScore(double freqRatio) { in normalizeMimeFreqScore() argument
364 if (freqRatio >= 2.0) { in normalizeMimeFreqScore()
366 } else if (freqRatio >= 1.2) { in normalizeMimeFreqScore()
368 } else if (freqRatio > 0.0) { in normalizeMimeFreqScore()
/frameworks/native/opengl/tests/hwc/
DhwcStress.cpp126 const float freqRatio = 0.9; variable
459 if (testRandFract() <= freqRatio) { in main()