Home
last modified time | relevance | path

Searched refs:THRESHOLD (Results 1 – 11 of 11) sorted by relevance

/aosp12/system/extras/checkpoint_gc/
H A Dcheckpoint_gc.sh41 THRESHOLD=25000
45 THRESHOLD=200
54 TODO=$((${START}-${THRESHOLD}))
55 while [ ${CURRENT} -gt ${THRESHOLD} ]; do
56 log -pi -t checkpoint_gc ${METRIC}:${CURRENT} \(threshold:${THRESHOLD}\)
/aosp12/frameworks/base/core/java/com/android/internal/widget/
H A DSlidingTab.java62 private static final float THRESHOLD = 2.0f / 3.0f; field in SlidingTab
358 final int leftTarget = (int) (THRESHOLD * parentWidth) - targetWidth + handleWidth / 2; in layout()
359 final int rightTarget = (int) ((1.0f - THRESHOLD) * parentWidth) - handleWidth / 2; in layout()
386 final int top = (int) (THRESHOLD * parentHeight) + handleHeight / 2 - targetHeight; in layout()
387 final int bottom = (int) ((1.0f - THRESHOLD) * parentHeight) - handleHeight / 2; in layout()
550 mThreshold = isHorizontal() ? THRESHOLD : 1.0f - THRESHOLD; in onInterceptTouchEvent()
555 mThreshold = isHorizontal() ? 1.0f - THRESHOLD : THRESHOLD; in onInterceptTouchEvent()
/aosp12/packages/apps/Car/Notification/src/com/android/car/notification/
H A DHeadsUpNotificationOnTouchListener.java42 private static final float THRESHOLD = 0.3f; field in HeadsUpNotificationOnTouchListener
100 if (Math.abs(deltaX) > viewWidth * THRESHOLD) { in onTouch()
/aosp12/frameworks/av/media/codecs/amrnb/enc/src/
H A Dpitch_ol.cpp72 #define THRESHOLD 27853 macro
1171 i = mult(max1, THRESHOLD, pOverflow); in Pitch_ol()
1187 i = mult(max1, THRESHOLD, pOverflow); in Pitch_ol()
/aosp12/system/chre/platform/shared/include/chre/platform/shared/
H A Dlog_buffer.h39 enum class LogBufferNotificationSetting : uint8_t { ALWAYS, NEVER, THRESHOLD }; enumerator
/aosp12/frameworks/base/tests/MemoryUsage/src/com/android/tests/memoryusage/
H A DMemoryUsageTest.java57 private static final int THRESHOLD = 1024; field in MemoryUsageTest
255 return (diff1 + diff2) < THRESHOLD; in stabilized()
/aosp12/system/chre/platform/shared/
H A Dlog_buffer.cc81 case LogBufferNotificationSetting::THRESHOLD: { in handleLogVa()
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneConnection.java1113 - audioCodecAttributes.getBitrateRangeKbps().getUpper()) > THRESHOLD) { in updateMediaCapabilities()
1119 - audioCodecAttributes.getBandwidthRangeKhz().getUpper()) > THRESHOLD) { in updateMediaCapabilities()
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DConnection.java197 public static final float THRESHOLD = 0.01f; field in Connection
/aosp12/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java2554 int THRESHOLD = 128; in getMarqueeColor() local
2564 if (r > THRESHOLD) { in getMarqueeColor()
2571 if (g > THRESHOLD) { in getMarqueeColor()
/aosp12/packages/services/Telephony/src/com/android/services/telephony/
H A DTelephonyConnection.java120 private static final float THRESHOLD = 0.01f; field in TelephonyConnection
1748 if (Math.abs(newBitrate - oldBitrate) > THRESHOLD) { in refreshCodec()
1758 if (Math.abs(newBandwidth - oldBandwidth) > THRESHOLD) { in refreshCodec()