HomeSort by relevance Sort by last modified time
    Searched full:maxvalue (Results 126 - 150 of 366) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/icu/icu4c/source/common/
propsvec.h 165 int32_t maxValue;
  /external/python/cpython2/Demo/tkinter/guido/
sortvisu.py 48 self.size = self.maxvalue = 0
58 self.maxvalue = max(data)
60 height=(self.maxvalue+1)*YGRID)
325 y2 = (self.array.maxvalue+1)*YGRID
  /external/python/cpython3/Tools/demo/
sortvisu.py 48 self.size = self.maxvalue = 0
58 self.maxvalue = max(data)
60 height=(self.maxvalue+1)*YGRID)
327 y2 = (self.array.maxvalue+1)*YGRID
  /external/skia/src/core/
SkScan_AntiPath.cpp 489 U8CPU stopAlpha, U8CPU maxValue) {
498 alpha[0] = SkToU8(alpha[0] + maxValue);
505 uint32_t qval = quadplicate_byte(maxValue);
516 alpha[0] = SkToU8(alpha[0] + maxValue);
  /external/skqp/src/core/
SkScan_AntiPath.cpp 489 U8CPU stopAlpha, U8CPU maxValue) {
498 alpha[0] = SkToU8(alpha[0] + maxValue);
505 uint32_t qval = quadplicate_byte(maxValue);
516 alpha[0] = SkToU8(alpha[0] + maxValue);
  /external/syslinux/gpxe/src/include/gpxe/efi/Uefi/
UefiInternalFormRepresentation.h 931 UINT8 MaxValue;
936 UINT16 MaxValue;
941 UINT32 MaxValue;
946 UINT64 MaxValue;
    [all...]
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
quantize_and_dequantize_op.cc 61 b->ReduceAll(input, XlaHelpers::MaxValue(b, data_type), *fmin);
reduction_ops.cc 67 return builder->ConstantLiteral(xla::Literal::MaxValue(type));
  /external/tensorflow/tensorflow/compiler/tf2xla/
xla_helpers.h 38 static xla::ComputationDataHandle MaxValue(xla::ComputationBuilder* b,
  /hardware/libhardware/modules/sensors/dynamic_sensor/
HidRawSensor.h 63 int64_t maxValue;
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-dynload/
_multiprocessing.so 
  /frameworks/native/services/inputflinger/
InputReader.cpp     [all...]
EventHub.h 83 int32_t maxValue; // maximum value
91 maxValue = 0;
  /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...]
  /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...]
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/internal/report/
report.go 205 maxValue := rpt.total
207 minValue = maxValue
212 maxValue = int64(float64(maxValue) * r)
216 _, maxUnit := measurement.Scale(maxValue, o.SampleUnit, "minimum")
219 if minUnit != maxUnit && minValue*100 < maxValue && o.OutputFormat != Callgrind {
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/internal/report/
report.go 205 maxValue := rpt.total
207 minValue = maxValue
212 maxValue = int64(float64(maxValue) * r)
216 _, maxUnit := measurement.Scale(maxValue, o.SampleUnit, "minimum")
219 if minUnit != maxUnit && minValue*100 < maxValue && o.OutputFormat != Callgrind {
    [all...]
  /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 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();
  /hardware/interfaces/audio/common/all-versions/default/include/common/all-versions/default/
HidlUtils.impl.h 88 gain->maxValue = halGain.max_value;
99 halGain->max_value = gain.maxValue;
  /art/libartbase/base/
atomic.h 233 static T MaxValue() {
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTDecompress.cpp 537 PVRTuint32 MaxValue=YPos;
553 MaxValue = XPos;
575 MaxValue >>= ShiftCount;
576 Twiddled |= (MaxValue << (2*ShiftCount));
    [all...]

Completed in 1261 milliseconds

1 2 3 4 56 7 8 91011>>