Searched refs:cutoff (Results 1 – 7 of 7) 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.rs | 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.rs | 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.rs | 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 | 505 public ClockVisibilityTransition setCutoff(float cutoff) { in setCutoff() argument 506 mCutoff = cutoff; in setCutoff() 546 final float cutoff = mCutoff; in onAppear() local 551 return createAnimator(view, cutoff, startVisibility, endVisibility, startScale, in onAppear() 561 final float cutoff = 1f - mCutoff; in onDisappear() local 566 return createAnimator(view, cutoff, startVisibility, endVisibility, startScale, in onDisappear() 570 private Animator createAnimator(View view, float cutoff, int startVisibility, in createAnimator() argument 576 if (fraction > cutoff) { in createAnimator()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/io/ |
D | coded_stream.h | 268 uint32 cutoff); 1024 uint32 cutoff) { in ReadTagWithCutoff() argument 1038 return std::make_pair(tag, cutoff >= kMax1ByteVarint || tag <= cutoff); in ReadTagWithCutoff() 1043 if (cutoff >= 0x80 && in ReadTagWithCutoff() 1055 bool at_or_below_cutoff = cutoff >= kMax2ByteVarint || tag <= cutoff; in ReadTagWithCutoff() 1061 return std::make_pair(last_tag_, static_cast<uint32>(last_tag_ - 1) < cutoff); in ReadTagWithCutoff()
|
/frameworks/base/core/java/android/net/ |
D | NetworkStatsHistory.java | 497 public void removeBucketsBefore(long cutoff) { in removeBucketsBefore() argument 505 if (curEnd > cutoff) break; in removeBucketsBefore()
|