Searched refs:cutoff (Results 1 – 6 of 6) sorted by relevance
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
D | ScoreCardBasedScorer.java | 82 int cutoff = estimatedCutoff(candidate); in scoreCandidate() local 83 int score = (rssi - cutoff) * RSSI_SCORE_SLOPE_IS_4; in scoreCandidate() 106 int cutoff = -RSSI_SCORE_OFFSET; in estimatedCutoff() local 107 int lowest = cutoff - RSSI_RAIL; in estimatedCutoff() 108 int highest = cutoff + RSSI_RAIL; in estimatedCutoff() 110 if (signal == null) return cutoff; in estimatedCutoff() 111 if (!signal.hasRssi()) return cutoff; in estimatedCutoff() 118 cutoff = (int) Math.min(Math.max(value, lowest), highest); in estimatedCutoff() 120 return cutoff; in estimatedCutoff()
|
/frameworks/rs/tests/lldb/cpp/BranchingFunCalls/ |
D | scalars.rscript | 50 int cutoff = 2 << 6; 51 if(j > cutoff) 52 j = cutoff; 58 set_i(i, cutoff);
|
/frameworks/rs/tests/lldb/java/BranchingFunCalls/src/rs/ |
D | scalars.rscript | 50 int cutoff = 2 << 6; 51 if(j > cutoff) 52 j = cutoff; 58 set_i(i, cutoff);
|
/frameworks/rs/tests/lldb/jni/BranchingFunCalls/jnibranchingfuncalls/ |
D | scalars.rscript | 50 int cutoff = 2 << 6; 51 if(j > cutoff) 52 j = cutoff; 58 set_i(i, cutoff);
|
/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
D | KeyguardClockSwitch.java | 550 public ClockVisibilityTransition setCutoff(float cutoff) { in setCutoff() argument 551 mCutoff = cutoff; in setCutoff() 591 final float cutoff = mCutoff; in onAppear() local 596 return createAnimator(view, cutoff, startVisibility, endVisibility, startScale, in onAppear() 606 final float cutoff = 1f - mCutoff; in onDisappear() local 611 return createAnimator(view, cutoff, startVisibility, endVisibility, startScale, in onDisappear() 615 private Animator createAnimator(View view, float cutoff, int startVisibility, in createAnimator() argument 621 if (fraction > cutoff) { in createAnimator()
|
/frameworks/base/core/java/android/net/ |
D | NetworkStatsHistory.java | 499 public void removeBucketsBefore(long cutoff) { in removeBucketsBefore() argument 507 if (curEnd > cutoff) break; in removeBucketsBefore()
|