/external/chromium-trace/catapult/telemetry/telemetry/value/ |
histogram_util.py | 29 # the highest bucket will have a 'low': maxvalue entry in the dict but no
|
/external/deqp/modules/glshared/ |
glsStateQueryUtil.hpp | 402 void verifyIntegerMax (tcu::ResultCollector& result, QueriedState& state, int maxValue); 406 void verifyFloatMax (tcu::ResultCollector& result, QueriedState& state, float maxValue); 420 void verifyStateIntegerMax (tcu::ResultCollector& result, glu::CallLogWrapper& gl, glw::GLenum target, int maxValue, QueryType type); 424 void verifyStateFloatMax (tcu::ResultCollector& result, glu::CallLogWrapper& gl, glw::GLenum target, float maxValue, QueryType type);
|
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...] |
/external/guava/guava/src/com/google/common/collect/ |
ContiguousSet.java | 62 effectiveRange = effectiveRange.intersection(Range.atMost(domain.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/icu/icu4c/source/common/ |
propsvec.h | 163 int32_t maxValue;
|
/external/skia/src/core/ |
SkScan_AntiPath.cpp | 490 U8CPU stopAlpha, U8CPU maxValue) { 499 alpha[0] = SkToU8(alpha[0] + maxValue); 506 uint32_t qval = quadplicate_byte(maxValue); 517 alpha[0] = SkToU8(alpha[0] + maxValue);
|
/prebuilts/go/darwin-x86/src/image/jpeg/ |
writer.go | 182 maxValue := 0 184 if int(v) > maxValue { 185 maxValue = int(v) 188 *h = make([]uint32, maxValue+1)
|
/prebuilts/go/linux-x86/src/image/jpeg/ |
writer.go | 182 maxValue := 0 184 if int(v) > maxValue { 185 maxValue = int(v) 188 *h = make([]uint32, maxValue+1)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-dynload/ |
_multiprocessing.so | |
/external/llvm/lib/Target/SystemZ/AsmParser/ |
SystemZAsmParser.cpp | 23 // Return true if Expr is in the range [MinValue, MaxValue]. 24 static bool inRange(const MCExpr *Expr, int64_t MinValue, int64_t MaxValue) { 27 return Value >= MinValue && Value <= MaxValue; 217 bool isImm(int64_t MinValue, int64_t MaxValue) const { 218 return Kind == KindImm && inRange(Imm, MinValue, MaxValue); [all...] |
/frameworks/native/services/inputflinger/ |
InputReader.cpp | [all...] |
EventHub.h | 85 int32_t maxValue; // maximum value 93 maxValue = 0;
|
/external/deqp/modules/gles31/functional/ |
es31fShaderAtomicOpTests.cpp | 524 int maxValue = (int)m_initialValue; 530 maxValue = de::max(maxValue, inputValue); 533 if (!intEqualsAfterUintCast(maxValue, groupOutput, m_precision)) 538 << ": expected maximum " << maxValue << " (" << tcu::Format::Hex<8>((deUint32)maxValue) << ")" [all...] |
es31fShaderCommonFunctionTests.cpp | 72 template<typename T> T randomScalar (de::Random& rnd, T minValue, T maxValue); 73 template<> inline float randomScalar (de::Random& rnd, float minValue, float maxValue) { return rnd.getFloat(minValue, maxValue); } 74 template<> inline deInt32 randomScalar (de::Random& rnd, deInt32 minValue, deInt32 maxValue) { return rnd.getInt(minValue, maxValue); } 75 template<> inline deUint32 randomScalar (de::Random& rnd, deUint32 minValue, deUint32 maxValue) { return minValue + rnd.getUint32() % (maxValue - minValue + 1); } 78 inline tcu::Vector<T, Size> randomVector (de::Random& rnd, const tcu::Vector<T, Size>& minValue, const tcu::Vector<T, Size>& maxValue) 82 res[ndx] = randomScalar<T>(rnd, minValue[ndx], maxValue[ndx]); 87 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/icu/icu4c/source/tools/gennorm2/ |
n2builder.cpp | [all...] |
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
ContiguousSetTest.java | 53 @Override public Integer maxValue() { 54 return integers().maxValue();
|
/external/guava/guava-tests/test/com/google/common/collect/ |
ContiguousSetTest.java | 70 @Override public Integer maxValue() { 71 return integers().maxValue();
|
MinMaxPriorityQueueTest.java | 847 int maxValue) { 849 assertTrue("maxValue is incorrect", replicatedMaxValue == maxValue);
|
/external/opencv3/modules/features2d/test/ |
test_nearestneighbors.cpp | 61 static const int maxValue = 1; 130 randu( desc, Scalar(minValue), Scalar(maxValue) );
|
/hardware/libhardware/modules/input/evdev/ |
InputHub.h | 44 int32_t maxValue = 0; // maximum value
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
AbstractRealVector.java | 328 double maxValue = Double.NEGATIVE_INFINITY; 332 if (entry.getValue() >= maxValue) { 334 maxValue = entry.getValue();
|
/external/opencv3/modules/highgui/src/ |
window_cocoa.mm | 124 - (void)createSliderWithName:(const char *)name maxValue:(int)max value:(int *)value callback:(CvTrackbarCallback)callback; 312 maxValue:count 754 - (void)createSliderWithName:(const char *)name maxValue:(int)max value:(int *)value callback:(CvTrackbarCallback)callback {
|
/frameworks/base/core/jni/android/graphics/ |
BitmapFactory.cpp | 93 static void scaleDivRange(int32_t* divs, int count, float scale, int maxValue) { 101 if (CC_UNLIKELY(divs[count - 1] > maxValue)) { 104 int highestAvailable = maxValue;
|
/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...] |