HomeSort by relevance Sort by last modified time
    Searched defs:Max (Results 1 - 25 of 212) sorted by null

1 2 3 4 5 6 7 8 9

  /external/webrtc/tools/cpu/
cpu_mon.py 31 return ('%s: avg=%s, median=%s, min=%s, max=%s' %
34 numpy.min(self.samples), numpy.max(self.samples)))
36 def Max(self):
37 return numpy.max(self.samples)
  /prebuilts/go/darwin-x86/src/math/
dim.go 28 // Max returns the larger of x or y.
31 // Max(x, +Inf) = Max(+Inf, x) = +Inf
32 // Max(x, NaN) = Max(NaN, x) = NaN
33 // Max(+0, ±0) = Max(±0, +0) = +0
34 // Max(-0, -0) = -0
35 func Max(x, y float64) float64
37 func max(x, y float64) float64 func
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/cgo/
gcc_traceback.c 14 uintptr_t Max;
28 arg.Max = 32; // must match len(runtime.cgoCallers)
  /prebuilts/go/linux-x86/src/math/
dim.go 28 // Max returns the larger of x or y.
31 // Max(x, +Inf) = Max(+Inf, x) = +Inf
32 // Max(x, NaN) = Max(NaN, x) = NaN
33 // Max(+0, ±0) = Max(±0, +0) = +0
34 // Max(-0, -0) = -0
35 func Max(x, y float64) float64
37 func max(x, y float64) float64 func
    [all...]
  /prebuilts/go/linux-x86/src/runtime/cgo/
gcc_traceback.c 14 uintptr_t Max;
28 arg.Max = 32; // must match len(runtime.cgoCallers)
  /device/linaro/bootloader/edk2/OptionRomPkg/Bus/Usb/UsbNetworking/Ax88772/
DriverBinding.c 353 UINTN Max;
405 Max = BufferSize / sizeof ( pHandle[ 0 ]);
406 for ( Index = 0; Max > Index; Index++ ) {
  /external/llvm/unittests/ADT/
PointerEmbeddedIntTest.cpp 56 IMax = std::numeric_limits<intptr_t>::max() >> 1,
58 EXPECT_EQ(std::numeric_limits<intptr_t>::max() >> 1, IMax);
62 UMax = std::numeric_limits<uintptr_t>::max() >> 1,
64 EXPECT_EQ(std::numeric_limits<uintptr_t>::max() >> 1, UMax);
74 Max = std::numeric_limits<uintptr_t>::max() >> 1;
75 using MaxTraits = PointerLikeTypeTraits<decltype(Max)>;
76 EXPECT_EQ(std::numeric_limits<uintptr_t>::max() >> 1,
77 MaxTraits::getFromVoidPointer(MaxTraits::getAsVoidPointer(Max)));
  /external/pdfium/xfa/fwl/
cfwl_eventscroll.h 17 Max,
  /external/protobuf/src/google/protobuf/stubs/
mathutil.h 96 // Note: 0.0 and -0.0 are not differentiated by Max (Max(0.0, -0.0) is -0.0),
101 static T Max(const T x, const T y) {
109 // which should be OK: see the comment for Max above.
154 T relative_margin = static_cast<T>(fraction * Max(Abs(x), Abs(y)));
155 return AbsDiff(x, y) <= Max(margin, relative_margin);
  /external/skia/src/core/
SkMiniRecorder.h 48 struct Max { static const size_t val = A > B ? A : B; };
51 Max<sizeof(SkRecords::DrawPath),
52 Max<sizeof(SkRecords::DrawRect),
  /external/skqp/src/core/
SkMiniRecorder.h 48 struct Max { static const size_t val = A > B ? A : B; };
51 Max<sizeof(SkRecords::DrawPath),
52 Max<sizeof(SkRecords::DrawRect),
  /external/tensorflow/tensorflow/contrib/reduce_slice_ops/kernels/
reduce_slice_ops.h 26 #define Max(a, b) ((a) > (b) ? (a) : (b))
49 return std::max<T>(std::numeric_limits<T>::max(),
64 Max, functor::reduce_functions::negative_infinity, ##__VA_ARGS__) \
  /external/tensorflow/tensorflow/core/grappler/costs/
utils.h 80 uint64 Max() const { return max_; }
  /prebuilts/clang/host/linux-x86/clang-3859424/prebuilt_include/llvm/lib/Fuzzer/
FuzzerDefs.h 41 template <class T> T Max(T a, T b) { return a > b ? a : b; }
  /device/linaro/bootloader/edk2/StdLib/SocketDxe/
EntryUnload.c 88 UINTN Max;
140 Max = BufferSize / sizeof ( pHandle[ 0 ]);
141 for ( Index = 0; Max > Index; Index++ ) {
  /external/eigen/unsupported/test/
polynomialutils.cpp 78 _Scalar Max = roots.array().abs().maxCoeff();
80 bool eval = (M >= Max) && (m <= min);
85 cerr << "Min,Max: (" << min << ", " << Max << ")" << endl;
  /external/llvm/unittests/Support/
MathExtrasTest.cpp 225 const T Max = std::numeric_limits<T>::max();
232 EXPECT_EQ(Max, SaturatingAdd(Max, T(1)));
233 EXPECT_EQ(Max, SaturatingAdd(Max, T(1), &ResultOverflowed));
236 EXPECT_EQ(Max, SaturatingAdd(T(1), T(Max - 1)));
237 EXPECT_EQ(Max, SaturatingAdd(T(1), T(Max - 1), &ResultOverflowed))
    [all...]
  /art/libartbase/base/
histogram.h 84 Value Max() const {
109 // histogram percentiles are. Grows adaptively when we hit max buckets.
  /device/linaro/bootloader/edk2/OptionRomPkg/Bus/Usb/UsbNetworking/Ax88772b/
DriverBinding.c 553 UINTN Max;
602 Max = BufferSize / sizeof ( pHandle[ 0 ]);
603 for ( Index = 0; Max > Index; Index++ ) {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/rank/
Max.java 40 public class Max extends AbstractStorelessUnivariateStatistic implements Serializable {
52 * Create a Max instance
54 public Max() {
60 * Copy constructor, creates a new {@code Max} identical
63 * @param original the {@code Max} instance to copy
65 public Max(Max original) {
128 double max = Double.NaN; local
130 max = values[begin];
133 max = (max > values[i]) ? max : values[i]
    [all...]
  /external/gemmlowp/internal/
simd_wrappers_msa.h 113 inline Int32x4 Max(Int32x4 a, Int32x4 b) { return __builtin_msa_max_s_w(a, b); }
simd_wrappers_neon.h 93 inline Int32x4 Max(Int32x4 a, Int32x4 b) { return vmaxq_s32(a, b); }
simd_wrappers_sse.h 88 inline Int32x4 Max(Int32x4 a, Int32x4 b) { return _mm_max_epi32(a, b); }
  /external/llvm/include/llvm/Transforms/IPO/
LowerTypeTests.h 72 uint64_t Min, Max;
74 BitSetBuilder() : Min(std::numeric_limits<uint64_t>::max()), Max(0) {}
79 if (Max < Offset)
80 Max = Offset;
  /external/llvm/unittests/ProfileData/
SampleProfTest.cpp 174 const uint64_t Max = std::numeric_limits<uint64_t>::max();
188 Result = FooSamples.addTotalSamples(Max);
190 ASSERT_EQ(FooSamples.getTotalSamples(), Max);
192 Result = FooSamples.addHeadSamples(Max);
194 ASSERT_EQ(FooSamples.getHeadSamples(), Max);
196 Result = FooSamples.addBodySamples(10, 0, Max);
200 ASSERT_EQ(BodySamples.get(), Max);

Completed in 413 milliseconds

1 2 3 4 5 6 7 8 9