HomeSort by relevance Sort by last modified time
    Searched full:minvalue (Results 101 - 125 of 309) sorted by null

1 2 3 45 6 7 8 91011>>

  /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...]
  /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...]
glsDrawTest.cpp 764 inline T minValue (void);
767 inline GLValue::Float minValue (void)
773 inline GLValue::Double minValue (void)
779 inline GLValue::Short minValue (void)
785 inline GLValue::Ushort minValue (void)
791 inline GLValue::Byte minValue (void)
797 inline GLValue::Ubyte minValue (void)
803 inline GLValue::Fixed minValue (void)
809 inline GLValue::Int minValue (void)
815 inline GLValue::Uint minValue (void
    [all...]
  /external/deqp/modules/gles31/functional/
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])
    [all...]
es31fShaderAtomicOpTests.cpp 442 int minValue = (int)m_initialValue;
448 minValue = de::min(inputValue, minValue);
451 if (!intEqualsAfterUintCast(minValue, groupOutput, m_precision))
456 << ": expected minimum " << minValue << " (" << tcu::Format::Hex<8>((deUint32)minValue) << ")"
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
RSUtils.java 196 // maxValue and abs(minValue). The lower bound is FLOAT16_MIN_NORMAL.
201 // If abs(minDoubleValue) is greater than maxDoubleValue, pick abs(minValue) as the
  /external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
vktSpvAsmComputeShaderTestUtil.hpp 67 static void fillRandomScalars (de::Random& rnd, deInt32 minValue, deInt32 maxValue, deInt32* dst, deInt32 numValues)
70 dst[i] = rnd.getInt(minValue, maxValue);
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
ContiguousSetTest.java 49 @Override public Integer minValue() {
50 return integers().minValue();
  /external/guava/guava-tests/test/com/google/common/collect/
ContiguousSetTest.java 66 @Override public Integer minValue() {
67 return integers().minValue();
  /frameworks/native/services/inputflinger/
EventHub.h 82 int32_t minValue; // minimum value
90 minValue = 0;
InputReader.cpp     [all...]
  /hardware/interfaces/audio/common/all-versions/default/include/common/all-versions/default/
HidlUtils.impl.h 87 gain->minValue = halGain.min_value;
98 halGain->min_value = gain.minValue;
  /frameworks/data-binding/integration-tests/TestApp/app/src/main/res/layout/
two_way.xml 48 android:minValue="@{1}"
  /hardware/libhardware/modules/input/evdev/
InputHub.h 43 int32_t minValue = 0; // minimum value
  /prebuilts/vndk/v27/x86/arch-x86-x86/shared/vndk-core/
android.hardware.audio.common@2.0.so 
  /prebuilts/vndk/v27/x86_64/arch-x86-x86_64/shared/vndk-core/
android.hardware.audio.common@2.0.so 
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/UefiHiiLib/
HiiLib.c     [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
AbstractRealVector.java 302 double minValue = Double.POSITIVE_INFINITY;
306 if (entry.getValue() <= minValue) {
308 minValue = entry.getValue();
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
ScrollController.java     [all...]
  /external/icu/icu4c/source/common/
ucnvmbcs.cpp     [all...]
  /external/tcpdump/
print-snmp.c 973 if (smiRange->minValue.value.unsigned32
975 ok = (elem->asnlen == smiRange->minValue.value.unsigned32);
977 ok = (elem->asnlen >= smiRange->minValue.value.unsigned32
983 ok = (elem->data.integer >= smiRange->minValue.value.integer32
988 ok = (elem->data.uns >= smiRange->minValue.value.unsigned32
    [all...]
  /frameworks/base/core/java/android/widget/
RadialTimePickerView.java     [all...]
NumberPicker.java     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderCommonFunctionTests.cpp 77 template<typename T> T randomScalar (de::Random& rnd, T minValue, T maxValue);
78 template<> inline float randomScalar (de::Random& rnd, float minValue, float maxValue) { return rnd.getFloat(minValue, maxValue); }
79 template<> inline deInt32 randomScalar (de::Random& rnd, deInt32 minValue, deInt32 maxValue) { return rnd.getInt(minValue, maxValue); }
82 inline tcu::Vector<T, Size> randomVector (de::Random& rnd, const tcu::Vector<T, Size>& minValue, const tcu::Vector<T, Size>& maxValue)
86 res[ndx] = randomScalar<T>(rnd, minValue[ndx], maxValue[ndx]);
91 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)
95 access[offset + ndx] = randomVector<T, Size>(rnd, minValue, maxValue);
99 static void fillRandomScalars (de::Random& rnd, T minValue, T maxValue, void* dst, int numValues, int offset = 0
    [all...]
  /frameworks/base/core/tests/coretests/src/com/android/internal/os/
BstatsCpuTimesValidationTest.java 643 long actualvalue, double minValue, double maxValue) {
645 actualvalue, minValue, maxValue);
647 assertTrue(errorMsg, actualvalue > minValue);
    [all...]

Completed in 1276 milliseconds

1 2 3 45 6 7 8 91011>>