HomeSort by relevance Sort by last modified time
    Searched refs:maxValue (Results 51 - 75 of 164) sorted by null

1 23 4 5 6 7

  /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];
  /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();
  /external/chromium_org/third_party/WebKit/Source/platform/
Length.cpp 235 float Length::nonNanCalculatedValue(int maxValue) const
238 float result = calculationValue().evaluate(maxValue);
  /external/aac/libSBRenc/src/
ps_main.cpp 558 FIXP_QMF maxValue = FL2FXCONST_DBL(0.f);
606 maxValue = fixMax(maxValue,fixMax(maxVal[0][band],maxVal[1][band]));
612 *dmxScale = fixMin(DFRACT_BITS, CountLeadingBits(maxValue));
614 *dmxScale = fixMax(0,fixMin(FRACT_BITS, CountLeadingBits(FX_QMF2FX_DBL(maxValue))));
  /frameworks/av/media/libstagefright/codecs/aacenc/src/
qc_main.c 52 UWord16 maxValue[MAX_GROUPED_SFB]);
407 UWord16 maxValue[MAX_GROUPED_SFB])
426 maxValue[sfbOffs+sfb] = maxThisSfb;
  /frameworks/support/v7/palette/src/android/support/v7/graphics/
Palette.java 330 float maxValue = 0f;
341 if (max == null || thisValue > maxValue) {
343 maxValue = thisValue;
  /external/chromium_org/content/browser/accessibility/
browser_accessibility_cocoa.h 84 @property(nonatomic, readonly) NSNumber* maxValue;
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
NormalizeAlgorithm.cpp 333 bool getOptionalInteger(const Dictionary& raw, const char* propertyName, bool& hasProperty, double& value, double minValue, double maxValue, const ErrorContext& context, AlgorithmError* error)
348 if (std::isinf(number) || number < minValue || number > maxValue) {
357 bool getInteger(const Dictionary& raw, const char* propertyName, double& value, double minValue, double maxValue, const ErrorContext& context, AlgorithmError* error)
360 if (!getOptionalInteger(raw, propertyName, hasProperty, value, minValue, maxValue, context, error))
  /external/chromium_org/third_party/skia/src/core/
SkScan_AntiPath.cpp 465 U8CPU stopAlpha, U8CPU maxValue) {
474 alpha[0] = SkToU8(alpha[0] + maxValue);
481 uint32_t qval = quadplicate_byte(maxValue);
492 alpha[0] = SkToU8(alpha[0] + maxValue);
  /external/skia/src/core/
SkScan_AntiPath.cpp 465 U8CPU stopAlpha, U8CPU maxValue) {
474 alpha[0] = SkToU8(alpha[0] + maxValue);
481 uint32_t qval = quadplicate_byte(maxValue);
492 alpha[0] = SkToU8(alpha[0] + maxValue);
  /frameworks/native/services/inputflinger/
EventHub.h 85 int32_t maxValue; // maximum value
93 maxValue = 0;
InputReader.cpp     [all...]
  /frameworks/support/v4/java/android/support/v4/widget/
AutoScrollHelper.java 600 * @param maxValue The maximum size of the inset, used to clamp (relative *
605 private float getEdgeValue(float relativeValue, float size, float maxValue, float current) {
607 final float edgeSize = constrain(relativeValue * size, NO_MIN, maxValue);
    [all...]
  /external/deqp/modules/gles2/performance/
es2pShaderControlStatementTests.cpp 325 float maxValue = (float)getViewportWidth()*0.5f;
327 Vec4(maxValue, 0.0f, 0.0f, 0.0f),
329 Vec4(maxValue, 0.0f, 0.0f, 0.0f)));
601 float maxValue = (float)getViewportWidth()*0.5f;
603 Vec4(maxValue, 0.0f, 0.0f, 0.0f),
605 Vec4(maxValue, 0.0f, 0.0f, 0.0f)));
  /external/deqp/modules/gles3/performance/
es3pShaderControlStatementTests.cpp 329 float maxValue = (float)getViewportWidth()*0.5f;
331 Vec4(maxValue, 0.0f, 0.0f, 0.0f),
333 Vec4(maxValue, 0.0f, 0.0f, 0.0f)));
609 float maxValue = (float)getViewportWidth()*0.5f;
611 Vec4(maxValue, 0.0f, 0.0f, 0.0f),
613 Vec4(maxValue, 0.0f, 0.0f, 0.0f)));
  /frameworks/rs/api/
gen_runtime.cpp 113 string maxValue;
647 maxValue = option.substr(pComma + 1, pParen - pComma - 1);
    [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderCommonFunctionTests.cpp 68 template<typename T> T randomScalar (de::Random& rnd, T minValue, T maxValue);
69 template<> inline float randomScalar (de::Random& rnd, float minValue, float maxValue) { return rnd.getFloat(minValue, maxValue); }
70 template<> inline deInt32 randomScalar (de::Random& rnd, deInt32 minValue, deInt32 maxValue) { return rnd.getInt(minValue, maxValue); }
71 template<> inline deUint32 randomScalar (de::Random& rnd, deUint32 minValue, deUint32 maxValue) { return minValue + rnd.getUint32() % (maxValue - minValue + 1); }
74 inline tcu::Vector<T, Size> randomVector (de::Random& rnd, const tcu::Vector<T, Size>& minValue, const tcu::Vector<T, Size>& maxValue)
78 res[ndx] = randomScalar<T>(rnd, minValue[ndx], maxValue[ndx]);
83 static void fillRandomVectors (de::Random& rnd, const tcu::Vector<T, Size>& minValue, const tcu::Vector<T, Size>& maxValue, void* dst, int numValues, int offset = 0
    [all...]
  /external/deqp/modules/gles31/functional/
es31fShaderCommonFunctionTests.cpp 69 template<typename T> T randomScalar (de::Random& rnd, T minValue, T maxValue);
70 template<> inline float randomScalar (de::Random& rnd, float minValue, float maxValue) { return rnd.getFloat(minValue, maxValue); }
71 template<> inline deInt32 randomScalar (de::Random& rnd, deInt32 minValue, deInt32 maxValue) { return rnd.getInt(minValue, maxValue); }
72 template<> inline deUint32 randomScalar (de::Random& rnd, deUint32 minValue, deUint32 maxValue) { return minValue + rnd.getUint32() % (maxValue - minValue + 1); }
75 inline tcu::Vector<T, Size> randomVector (de::Random& rnd, const tcu::Vector<T, Size>& minValue, const tcu::Vector<T, Size>& maxValue)
79 res[ndx] = randomScalar<T>(rnd, minValue[ndx], maxValue[ndx]);
84 static void fillRandomVectors (de::Random& rnd, const tcu::Vector<T, Size>& minValue, const tcu::Vector<T, Size>& maxValue, void* dst, int numValues, int offset = 0
    [all...]
  /external/deqp/modules/glshared/
glsLongStressCase.cpp 779 val[i] = rnd.getFloat(spec.minValue.f[i], spec.maxValue.f[i]);
794 val[i] = rnd.getFloat(spec.minValue.f[i], spec.maxValue.f[i]);
814 val[i] = rnd.getInt(spec.minValue.i[i], spec.maxValue.i[i]);
830 DE_ASSERT(spec.minValue.i[i] >= 0 && spec.maxValue.i[i] >= 0);
831 val[i] = (deUint32)rnd.getInt(spec.minValue.i[i], spec.maxValue.i[i]);
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
RSBaseCompute.java 172 int size, long seed, double minValue, double maxValue) {
178 RSUtils.genRandomDoubles(seed, minValue, maxValue, inArray, false);
182 RSUtils.genRandomFloats(seed, (float) minValue, (float) maxValue, inArray, false);
  /external/chromium_org/base/android/java/src/org/chromium/base/library_loader/
Linker.java 628 final int maxValue = (1 << numBits) - 1;
629 Log.i(TAG, String.format(Locale.US, "offsetLimit=%d numBits=%d maxValue=%d (0x%x)",
630 offsetLimit, numBits, maxValue, maxValue));
    [all...]
  /frameworks/base/core/java/android/widget/
TimePickerClockDelegate.java 126 int maxValue = mMinuteSpinner.getMaxValue();
127 if (oldVal == maxValue && newVal == minValue) {
134 } else if (oldVal == minValue && newVal == maxValue) {
  /frameworks/base/core/jni/android/graphics/
BitmapFactory.cpp 91 static void scaleDivRange(int32_t* divs, int count, float scale, int maxValue) {
99 if (CC_UNLIKELY(divs[count - 1] > maxValue)) {
102 int highestAvailable = maxValue;
  /external/chromium_org/third_party/WebKit/Source/core/svg/animation/
SVGSMILElement.cpp 777 SMILTime SVGSMILElement::maxValue() const
885 SMILTime maxValue = this->maxValue();
886 if (minValue > maxValue) {
890 maxValue = SMILTime::indefinite();
892 return resolvedBegin + std::min(maxValue, std::max(minValue, preliminaryActiveDuration));
    [all...]
  /external/chromium_org/third_party/icu/source/tools/gennorm2/
n2builder.cpp     [all...]

Completed in 1426 milliseconds

1 23 4 5 6 7