HomeSort by relevance Sort by last modified time
    Searched refs:maxValue (Results 26 - 50 of 314) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/support/dynamic-animation/src/android/support/animation/
FlingAnimation.java 118 * @param maxValue maximum value of the property to be animated
122 public FlingAnimation setMaxValue(float maxValue) {
123 super.setMaxValue(maxValue);
  /external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
Correlation.java 70 double maxValue = 0;
83 if (mDataAutocorrelated[i] > maxValue) {
84 maxValue = mDataAutocorrelated[i];
91 log(String.format(" Maxvalue %f, max Index : %d/%d (%d) minIndex = %d", maxValue, maxIndex,
GlitchAndCallbackHeatMapView.java 278 private static void drawHeatMap(Canvas canvas, int[] bucketedValues, int maxValue,
293 float logMax = (float) Math.log(maxValue + 1);
308 private static void drawColorLegend(Canvas canvas, int maxValue, ColorInterpolator colorInter,
323 int tickSpacing = (maxValue + NUM_LEGEND_LABELS - 1) / NUM_LEGEND_LABELS;
324 for (int i = 0; i < maxValue; i += tickSpacing) {
325 float yPos = legendArea.bottom - (((float) i / maxValue) * legendArea.height());
331 canvas.drawText(Integer.toString(maxValue), legendArea.right + INNER_MARGIN,
  /external/parameter-framework/upstream/parameter/
IntegerParameterType.cpp 401 type minValue, type maxValue,
405 if (value < minValue || value > maxValue) {
418 stream << maxValue;
422 stream << minValue << ", " << maxValue;
IntegerParameterType.h 95 type maxValue, CParameterAccessContext &parameterAccessContext,
  /external/llvm/utils/lit/lit/
util.py 120 maxValue = max([v for _,v in items])
123 power = int(math.ceil(math.log(maxValue, 10)))
126 N = int(math.ceil(maxValue / barH))
134 bin = min(int(N * v/maxValue), N-1)
145 pDigits = int(math.ceil(math.log(maxValue, 10)))
  /external/harfbuzz_ng/src/
hb-ot-var-fvar-table.hh 69 Fixed maxValue; /* The maximum coordinate value for the axis. */
119 info->max_value = MAX<float> (info->default_value, axis.maxValue / 65536.);
  /external/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonAsmBackend.cpp 596 int64_t maxValue;
600 maxValue = 1 << 8;
603 maxValue = 1 << 10;
606 maxValue = 1 << 16;
609 maxValue = 1 << 23;
612 maxValue = INT64_MAX;
616 bool isFarAway = -maxValue > sValue || sValue > maxValue - 1;
  /external/skia/src/core/
SkAntiRun.h 46 * middleCount pixels with value += maxValue
54 U8CPU maxValue, int offsetX) {
88 alpha[0] = SkToU8(CatchOverflow(alpha[0] + maxValue));
SkColorMatrixFilterRowMajor255.cpp 102 SkScalar maxValue = row[4] / 255;
106 maxValue += row[i];
110 return (maxValue > 1) || (minValue < 0);
  /external/icu/icu4c/source/common/
propsvec.h 165 int32_t maxValue;
  /frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/
Flagged.h 126 * \param maxValue maximum value to cover
132 static constexpr Flag minMask(Flag maxValue, int shift=sizeof(Flag) * 4) {
135 return shift ? minMask<Flag>(Flag(maxValue | (maxValue >> shift)), shift >> 1) : maxValue;
  /external/skia/src/effects/
SkColorMatrix.cpp 20 SkScalar maxValue = row[4] / 255;
24 maxValue += row[i];
28 return (maxValue > 1) || (minValue < 0);
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
ISO8601Converter.java 466 * @param maxValue the max value of the number to return
470 public int gatherInt(String errorMsg, int maxValue) throws XMPException
485 if (value > maxValue)
487 return maxValue;
  /external/deqp/modules/gles31/functional/
es31fAtomicCounterTests.cpp 674 deUint32 maxValue = 0;
683 maxValue = std::max(maxValue, values[valueNdx]);
687 counts.resize(maxValue - minValue + 1, 0);
721 deUint32 maxValue = 0;
728 maxValue = std::max(maxValue, increments[valueNdx]);
737 maxValue = std::max(maxValue, decrements[valueNdx]);
742 maxValue = std::max(maxValue, (deUint32)initialValue)
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
RSBaseCompute.java 176 int size, long seed, double minValue, double maxValue) {
182 RSUtils.genRandomDoubles(seed, minValue, maxValue, inArray, false);
186 RSUtils.genRandomFloats(seed, (float) minValue, (float) maxValue, inArray, false);
190 RSUtils.genRandomFloat16s(seed, minValue, maxValue, inArray, false);
278 double maxValue = Float16Utils.convertFloat16ToDouble(maxArray[i]);
279 if (minValue > maxValue) {
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
RadialPickerLayout.java     [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/
CameraSettings.java 206 int maxValue = (int) Math.floor(max * step);
208 CharSequence entries[] = new CharSequence[maxValue - minValue + 1];
209 CharSequence entryValues[] = new CharSequence[maxValue - minValue + 1];
210 for (int i = minValue; i <= maxValue; ++i) {
211 entryValues[maxValue - i] = Integer.toString(Math.round(i / step));
214 entries[maxValue - i] = builder.append(i).toString();
  /external/dng_sdk/source/
dng_utils.cpp 434 uint32 maxValue,
440 DoZeroBytes (hist, (maxValue + 1) * (uint32) sizeof (uint32));
479 if (maxValue == 0x0FFFF && step2 == 1)
503 if (x <= maxValue)
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ContiguousSet.java 59 effectiveRange = effectiveRange.intersection(Range.atMost(domain.maxValue()));
  /external/mesa3d/src/mesa/main/
image.c 807 GLint maxValue)
811 if (*dstX1 > maxValue) {
813 assert(*dstX0 < maxValue); /* X0 should be inside right edge */
814 t = (GLfloat) (maxValue - *dstX0) / (GLfloat) (*dstX1 - *dstX0);
817 *dstX1 = maxValue;
821 else if (*dstX0 > maxValue) {
823 assert(*dstX1 < maxValue); /* X1 should be inside right edge */
824 t = (GLfloat) (maxValue - *dstX1) / (GLfloat) (*dstX0 - *dstX1);
827 *dstX0 = maxValue;
  /external/skia/tools/lua/
bbh_filter.lua 81 maxValue = meta[1].value
87 verbWeights[v.key] = v.value / maxValue
  /hardware/intel/common/utils/ituxd/src/com/intel/thermal/
ThermalZone.java 88 int maxValue = Integer.MIN_VALUE; // -2^31
114 maxValue = Math.max(mNumberOfInstances[i], maxValue);
116 mRecordedValues = new int[maxValue];
  /hardware/libhardware/modules/sensors/dynamic_sensor/
HidRawSensor.h 63 int64_t maxValue;
  /cts/tests/tests/database/src/android/database/cts/
CursorJoinerTest.java 174 * This function accepts integer maxValue to determine max length of number.
179 * @param maxValue
182 private String getOrderNumberString(int value, int maxValue) {
184 int maxLength = Integer.toString(maxValue).length();

Completed in 642 milliseconds

12 3 4 5 6 7 8 91011>>