/external/deqp/modules/glshared/ |
glsStateQueryUtil.cpp | 1174 void verifyIntegerMax (tcu::ResultCollector& result, QueriedState& state, int maxValue) 1180 if (maxValue < 0 && state.getBoolAccess() != true) 1191 if (state.getIntAccess() > maxValue) 1194 buf << "Expected less or equal to " << maxValue << ", got " << state.getIntAccess(); 1202 if (state.getInt64Access() > maxValue) 1205 buf << "Expected less or equal to " << maxValue << ", got " << state.getInt64Access(); 1213 if (state.getFloatAccess() > deInt32ToFloatRoundToPosInf(maxValue) || deIsNaN(state.getFloatAccess())) 1216 buf << "Expected less or equal to " << maxValue << ", got " << state.getFloatAccess(); 1376 void verifyFloatMax (tcu::ResultCollector& result, QueriedState& state, float maxValue) 1382 if (maxValue < 0.0f && state.getBoolAccess() != true [all...] |
/external/llvm/lib/IR/ |
ConstantRange.cpp | 536 APInt MaxValue = APInt::getMaxValue(DstTySize).zext(getBitWidth()); 543 // Analyze wrapped sets in their two parts: [0, Upper) \/ [Lower, MaxValue] 544 // We use the non-wrapped set code to analyze the [Lower, MaxValue) part, and 545 // then we do the union with [MaxValue, Upper) 548 if (Upper.uge(MaxValue)) 554 // Union covers the MaxValue case, so return if the remaining range is just 555 // MaxValue. 561 if (LowerDiv.uge(MaxValue)) { 567 if (UpperDiv.ule(MaxValue))
|
/external/archive-patcher/shared/src/test/java/com/google/archivepatcher/shared/ |
CountingOutputStreamTest.java | 82 // Integer.maxValue. Use a NullStream to avoid excessive memory usage and make the test fast.
|
/external/chromium-trace/catapult/tracing/tracing/ui/extras/chrome/cc/ |
picture_ops_chart_view.html | 439 var maxValue; 441 maxValue = this.ninetyFifthPercentileCost_; 443 maxValue = this.maxCost_; 449 (op.cmd_time / maxValue) * maxHeight);
|
/external/opencv3/3rdparty/openexr/IlmImf/ |
ImfPizCompressor.cpp | 433 unsigned short maxValue = forwardLutFromBitmap (bitmap, lut); 464 maxValue); 566 unsigned short maxValue = reverseLutFromBitmap (bitmap, lut); 590 maxValue);
|
/external/parameter-framework/upstream/parameter/ |
IntegerParameterType.h | 95 type maxValue, CParameterAccessContext ¶meterAccessContext,
|
/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;
|
/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];
|
/art/compiler/optimizing/ |
induction_var_range_test.cc | 238 Value MaxValue(Value v1, Value v2) { return range_.MergeVal(v1, v2, false); } 552 TEST_F(InductionVarRangeTest, MaxValue) { 553 ExpectEqual(Value(100), MaxValue(Value(10), Value(100))); 554 ExpectEqual(Value(x_, 1, -1), MaxValue(Value(x_, 1, -4), Value(x_, 1, -1))); 555 ExpectEqual(Value(x_, 4, -1), MaxValue(Value(x_, 4, -4), Value(x_, 4, -1))); 556 ExpectEqual(Value(), MaxValue(Value(x_, 1, 5), Value(y_, 1, -7))); 557 ExpectEqual(Value(), MaxValue(Value(x_, 1, 20), Value(3))); 558 ExpectEqual(Value(), MaxValue(Value(55), Value(y_, 1, -50))); [all...] |
/external/chromium-trace/catapult/tracing/tracing/ui/base/ |
column_chart.html | 109 getYScaleDomain_: function(minValue, maxValue) { 112 this, minValue, maxValue);
|
chart_base_2d.html | 108 getYScaleDomain_: function(minValue, maxValue) { 110 return [this.getYScaleMin_(), maxValue]; 111 return [Math.min(minValue, this.getYScaleMin_()), maxValue];
|
/frameworks/rs/api/ |
GenerateTestFiles.cpp | 329 << vectorSize << ", " << seed << ", " << param.minValue << ", " << param.maxValue 347 double maxValue = 0.0; 353 maxValue = ldexp(0.95, (1 << bits) - 1); 354 minValue = -maxValue; 358 maxValue = maxDoubleForInteger(compatibleType.significantBits, 363 maxValue = maxDoubleForInteger(compatibleType.significantBits, 365 minValue = -maxValue - 1.0; 369 *mJava << minValue << ", " << maxValue << ")"; [all...] |
/packages/services/Car/car-lib/src/android/car/hardware/ |
CarPropertyConfig.java | 171 private AreaConfig(T minValue, T maxValue) { 173 mMaxValue = maxValue;
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
ndr64types.h | 135 NDR64_INT64 MaxValue; 569 NDR64_UINT32 MaxValue;
|
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/ |
RadialPickerLayout.java | [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/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))));
|
/external/pdfium/xfa/src/fxbarcode/pdf417/ |
BC_PDF417ScanningDecoder.cpp | 253 int32_t maxValue = -1;
256 maxValue = maxValue > value ? maxValue : value;
258 return maxValue;
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/rsa/rsa/ |
_version133.py | 114 def randint(minvalue, maxvalue): 115 """Returns a random integer x with minvalue <= x <= maxvalue""" 122 range = maxvalue - minvalue
|
_version200.py | 188 def randint(minvalue, maxvalue): 189 """Returns a random integer x with minvalue <= x <= maxvalue""" 196 range = (maxvalue - minvalue) + 1
|
/external/skia/src/core/ |
SkColorMatrixFilterRowMajor255.cpp | 186 SkScalar maxValue = row[4] / 255; 190 maxValue += row[i]; 194 return (maxValue > 1) || (minValue < 0);
|
/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/base/core/java/android/widget/ |
TimePickerSpinnerDelegate.java | 120 int maxValue = mMinuteSpinner.getMaxValue(); 121 if (oldVal == maxValue && newVal == minValue) { 128 } else if (oldVal == minValue && newVal == maxValue) {
|
/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)));
|