HomeSort by relevance Sort by last modified time
    Searched refs:maxValue (Results 1 - 25 of 37) sorted by null

1 2

  /libcore/luni/src/main/java/org/apache/harmony/security/x509/tsp/
PKIFailureInfo.java 97 private static int maxValue;
114 if (maxValue == 0) {
116 if (cur.value > maxValue) {
117 maxValue = cur.value;
120 return maxValue;
  /external/webkit/WebCore/platform/
Length.h 108 int calcValue(int maxValue, bool roundPercentages = false) const
115 return static_cast<int>(round(maxValue * percent() / 100.0));
116 return maxValue * rawValue() / (100 * percentScaleFactor);
118 return maxValue;
124 int calcMinValue(int maxValue, bool roundPercentages = false) const
131 return static_cast<int>(round(maxValue * percent() / 100.0));
132 return maxValue * rawValue() / (100 * percentScaleFactor);
139 float calcFloatValue(int maxValue) const
145 return static_cast<float>(maxValue * percent() / 100.0);
147 return static_cast<float>(maxValue);
    [all...]
  /cts/apps/CtsVerifier/jni/audioquality/
GlitchTest.cpp 77 float maxValue = 0.0;
78 findPeak(mRe, mLowestSpectrumBin, numSpectra, &maxLoc, &maxValue);
83 && (maxValue > mOnsetThresh)) {
95 if (maxValue < mOnsetThresh) {
121 (maxValue > mOnsetThresh)) { // tone should not pop up again!
169 int* maxLoc, float* maxValue) {
179 *maxValue = 10.0 * log10(amax / mWindowSize);
  /system/wlan/ti/sta_dk_4_0_4_32/pform/common/inc/
osRgstry.h 50 ULONG MaxValue;
80 ULONG maxValue,
  /packages/apps/Camera/src/com/android/camera/
CameraSettings.java 209 int maxValue = (int) Math.floor(max * step);
211 CharSequence entries[] = new CharSequence[maxValue - minValue + 1];
212 CharSequence entryValues[] = new CharSequence[maxValue - minValue + 1];
213 for (int i = minValue; i <= maxValue; ++i) {
214 entryValues[maxValue - i] = Integer.toString(Math.round(i / step));
217 entries[maxValue - i] = builder.append(i).toString();
  /external/skia/src/core/
SkAlphaRuns.cpp 84 void SkAlphaRuns::add(int x, U8CPU startAlpha, int middleCount, U8CPU stopAlpha, U8CPU maxValue)
116 alpha[0] = SkToU8(alpha[0] + maxValue);
SkScan_AntiPath.cpp 150 // we sub 1 from maxValue 1 time for each block, so that we don't
152 // int maxValue = (1 << (8 - SHIFT)) - (((y & MASK) + 1) >> SHIFT);
157 fRuns.add(x >> SHIFT, arun.getStartAlpha(), arun.getMiddleCount(), arun.getStopAlpha(), maxValue);
256 static void add_aa_span(uint8_t* alpha, U8CPU startAlpha, int middleCount, U8CPU stopAlpha, U8CPU maxValue)
271 alpha[0] = SkToU8(alpha[0] + maxValue);
312 // we sub 1 from maxValue 1 time for each block, so that we don't
314 // int maxValue = (1 << (8 - SHIFT)) - (((y & MASK) + 1) >> SHIFT);
SkAntiRun.h 154 void add(int x, U8CPU startAlpha, int middleCount, U8CPU stopAlpha, U8CPU maxValue);
  /frameworks/base/include/ui/
EventHub.h 80 int32_t maxValue; // maximum value
84 inline int32_t getRange() { return maxValue - minValue; }
89 maxValue = 0;
  /external/chromium/third_party/icu/source/common/
propsvec.h 178 int32_t maxValue;
propsvec.c 542 toUTrie2->maxValue=rowIndex;
  /external/icu4c/common/
propsvec.h 178 int32_t maxValue;
propsvec.c 544 toUTrie2->maxValue=rowIndex;
  /external/srec/portable/include/
ptrd.h 305 * @param maxValue Maximum semaphore value
311 unsigned int maxValue,
  /external/webkit/WebKitTools/DumpRenderTree/
AccessibilityUIElement.h 114 double maxValue();
  /frameworks/base/media/libstagefright/codecs/aacenc/src/
qc_main.c 51 UWord16 maxValue[MAX_GROUPED_SFB]);
409 UWord16 maxValue[MAX_GROUPED_SFB])
428 maxValue[sfbOffs+sfb] = maxThisSfb;
  /external/webkit/WebCore/svg/animation/
SVGSMILElement.h 72 SMILTime maxValue() const;
SVGSMILElement.cpp 541 SMILTime SVGSMILElement::maxValue() const
625 SMILTime maxValue = this->maxValue();
626 if (minValue > maxValue) {
630 maxValue = SMILTime::indefinite();
632 return resolvedBegin + min(maxValue, max(minValue, preliminaryActiveDuration));
    [all...]
  /cts/tests/tests/database/src/android/database/cts/
CursorJoinerTest.java 214 * This function accepts integer maxValue to determine max length of number.
219 * @param maxValue
222 private String getOrderNumberString(int value, int maxValue) {
224 int maxLength = Integer.toString(maxValue).length();
  /external/icu4c/tools/gennorm2/
n2builder.cpp     [all...]
  /external/webkit/WebKitTools/DumpRenderTree/gtk/
AccessibilityUIElementGtk.cpp 292 double AccessibilityUIElement::maxValue()
  /frameworks/base/libs/ui/
InputReader.cpp     [all...]
  /external/tcpdump/
print-snmp.c 959 == smiRange->maxValue.value.unsigned32) {
963 && elem->asnlen <= smiRange->maxValue.value.unsigned32);
969 && elem->data.integer <= smiRange->maxValue.value.integer32);
974 && elem->data.uns <= smiRange->maxValue.value.unsigned32);
    [all...]
  /external/freetype/src/truetype/
ttgxvar.c 589 FT_ULong maxValue;
659 FT_FRAME_ULONG ( maxValue ),
754 a->maximum = axis_rec.maxValue; /* A Fixed */
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/win/
AccessibilityUIElementWin.cpp 343 double AccessibilityUIElement::maxValue()

Completed in 662 milliseconds

1 2