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

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.ibits/
result_type.pass.cpp 24 template <class UIntType, UIntType Min, UIntType Max>
34 static_assert(Min < Max, "rand1 invalid parameters");
40 static const result_type _Max = Max;
44 static TEST_CONSTEXPR result_type max() {return Max;}
50 if (x_ > Max)
51 x_ = Max;
57 if (x_ < Max)
eval.pass.cpp 22 template <class UIntType, UIntType Min, UIntType Max>
32 static_assert(Min < Max, "rand1 invalid parameters");
38 static const result_type _Max = Max;
42 static TEST_CONSTEXPR result_type max() {return Max;}
46 if (x_ > Max)
47 x_ = Max;
53 if (x_ < Max)
  /external/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.shuf/
result_type.pass.cpp 24 template <class UIntType, UIntType Min, UIntType Max>
34 static_assert(Min < Max, "rand1 invalid parameters");
40 static const result_type _Max = Max;
44 static TEST_CONSTEXPR result_type max() {return Max;}
50 if (x_ > Max)
51 x_ = Max;
57 if (x_ < Max)
eval.pass.cpp 22 template <class UIntType, UIntType Min, UIntType Max>
32 static_assert(Min < Max, "rand1 invalid parameters");
38 static const result_type _Max = Max;
42 static TEST_CONSTEXPR result_type max() {return Max;}
46 if (x_ > Max)
47 x_ = Max;
53 if (x_ < Max)
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/rand/rand.adapt/rand.adapt.ibits/
result_type.pass.cpp 24 template <class UIntType, UIntType Min, UIntType Max>
34 static_assert(Min < Max, "rand1 invalid parameters");
40 static const result_type _Max = Max;
44 static TEST_CONSTEXPR result_type max() {return Max;}
50 if (x_ > Max)
51 x_ = Max;
57 if (x_ < Max)
eval.pass.cpp 22 template <class UIntType, UIntType Min, UIntType Max>
32 static_assert(Min < Max, "rand1 invalid parameters");
38 static const result_type _Max = Max;
42 static TEST_CONSTEXPR result_type max() {return Max;}
46 if (x_ > Max)
47 x_ = Max;
53 if (x_ < Max)
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/rand/rand.adapt/rand.adapt.shuf/
result_type.pass.cpp 24 template <class UIntType, UIntType Min, UIntType Max>
34 static_assert(Min < Max, "rand1 invalid parameters");
40 static const result_type _Max = Max;
44 static TEST_CONSTEXPR result_type max() {return Max;}
50 if (x_ > Max)
51 x_ = Max;
57 if (x_ < Max)
eval.pass.cpp 22 template <class UIntType, UIntType Min, UIntType Max>
32 static_assert(Min < Max, "rand1 invalid parameters");
38 static const result_type _Max = Max;
42 static TEST_CONSTEXPR result_type max() {return Max;}
46 if (x_ > Max)
47 x_ = Max;
53 if (x_ < Max)
  /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...]
  /prebuilts/go/darwin-x86/src/math/
dim_386.s 7 TEXT ·Max(SB),NOSPLIT,$0
8 JMP ·max(SB)
dim_arm.s 10 TEXT ·Max(SB),NOSPLIT,$0
11 B ·max(SB)
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/math/
dim_386.s 7 TEXT ·Max(SB),NOSPLIT,$0
8 JMP ·max(SB)
dim_arm.s 10 TEXT ·Max(SB),NOSPLIT,$0
11 B ·max(SB)
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...]
  /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...]
  /prebuilts/go/darwin-x86/src/image/
geom.go 44 return r.Min.X <= p.X && p.X < r.Max.X &&
45 r.Min.Y <= p.Y && p.Y < r.Max.Y
77 // A Rectangle contains the points with Min.X <= X < Max.X, Min.Y <= Y < Max.Y.
78 // It is well-formed if Min.X <= Max.X and likewise for Y. Points are always
86 Min, Max Point
91 return r.Min.String() + "-" + r.Max.String()
96 return r.Max.X - r.Min.X
101 return r.Max.Y - r.Min.Y
107 r.Max.X - r.Min.X
    [all...]
  /prebuilts/go/linux-x86/src/image/
geom.go 44 return r.Min.X <= p.X && p.X < r.Max.X &&
45 r.Min.Y <= p.Y && p.Y < r.Max.Y
77 // A Rectangle contains the points with Min.X <= X < Max.X, Min.Y <= Y < Max.Y.
78 // It is well-formed if Min.X <= Max.X and likewise for Y. Points are always
86 Min, Max Point
91 return r.Min.String() + "-" + r.Max.String()
96 return r.Max.X - r.Min.X
101 return r.Max.Y - r.Min.Y
107 r.Max.X - r.Min.X
    [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/runtime/cgo/
gcc_traceback.c 14 uintptr_t Max;
28 arg.Max = 32; // must match len(runtime.cgoCallers)
  /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/swiftshader/third_party/subzero/src/
IceRNG.h 49 uint64_t next(uint64_t Max);
65 uint64_t operator()(uint64_t Max) { return RNG.next(Max); }
  /external/llvm/include/llvm/DebugInfo/PDB/
PDBSymbolUnknown.h 29 S->getSymTag() >= PDB_SymType::Max);
  /external/pdfium/xfa/fwl/
cfwl_eventscroll.h 17 Max,

Completed in 378 milliseconds

1 2 3 4 5 6 7 8 91011>>