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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/libcxx/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/
max_size.pass.cpp 51 constexpr std::size_t Max = std::numeric_limits<std::size_t>::max();
52 assert(getMaxSize<1>() == Max);
53 assert(getMaxSize<2>() == Max / 2);
54 assert(getMaxSize<4>() == Max / 4);
55 assert(getMaxSize<8>() == Max / 8);
56 assert(getMaxSize<16>() == Max / 16);
57 assert(getMaxSize<32>() == Max / 32);
58 assert(getMaxSize<64>() == Max / 64);
59 assert(getMaxSize<1024>() == Max / 1024)
    [all...]
  /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/r11/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.adapt/rand.adapt.ibits/
result_type.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 _LIBCPP_CONSTEXPR result_type max() {return Max;}
48 if (x_ > Max)
49 x_ = Max;
55 if (x_ < Max)
eval.pass.cpp 20 template <class UIntType, UIntType Min, UIntType Max>
30 static_assert(Min < Max, "rand1 invalid parameters");
36 static const result_type _Max = Max;
40 static _LIBCPP_CONSTEXPR result_type max() {return Max;}
44 if (x_ > Max)
45 x_ = Max;
51 if (x_ < Max)
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.adapt/rand.adapt.shuf/
result_type.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 _LIBCPP_CONSTEXPR result_type max() {return Max;}
48 if (x_ > Max)
49 x_ = Max;
55 if (x_ < Max)
eval.pass.cpp 20 template <class UIntType, UIntType Min, UIntType Max>
30 static_assert(Min < Max, "rand1 invalid parameters");
36 static const result_type _Max = Max;
40 static _LIBCPP_CONSTEXPR result_type max() {return Max;}
44 if (x_ > Max)
45 x_ = Max;
51 if (x_ < Max)
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/numerics/rand/rand.adapt/rand.adapt.ibits/
result_type.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 _LIBCPP_CONSTEXPR result_type max() {return Max;}
48 if (x_ > Max)
49 x_ = Max;
55 if (x_ < Max)
eval.pass.cpp 20 template <class UIntType, UIntType Min, UIntType Max>
30 static_assert(Min < Max, "rand1 invalid parameters");
36 static const result_type _Max = Max;
40 static _LIBCPP_CONSTEXPR result_type max() {return Max;}
44 if (x_ > Max)
45 x_ = Max;
51 if (x_ < Max)
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/numerics/rand/rand.adapt/rand.adapt.shuf/
result_type.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 _LIBCPP_CONSTEXPR result_type max() {return Max;}
48 if (x_ > Max)
49 x_ = Max;
55 if (x_ < Max)
eval.pass.cpp 20 template <class UIntType, UIntType Min, UIntType Max>
30 static_assert(Min < Max, "rand1 invalid parameters");
36 static const result_type _Max = Max;
40 static _LIBCPP_CONSTEXPR result_type max() {return Max;}
44 if (x_ > Max)
45 x_ = Max;
51 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...]
  /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/math/
dim.go 16 return max(x-y, 0)
19 // Max returns the larger of x or y.
22 // Max(x, +Inf) = Max(+Inf, x) = +Inf
23 // Max(x, NaN) = Max(NaN, x) = NaN
24 // Max(+0, ±0) = Max(±0, +0) = +0
25 // Max(-0, -0) = -0
26 func Max(x, y float64) float6
28 func max(x, y float64) float64 { func
    [all...]
dim_386.s 10 TEXT ·Max(SB),NOSPLIT,$0
11 JMP ·max(SB)
  /prebuilts/go/linux-x86/src/math/
dim.go 16 return max(x-y, 0)
19 // Max returns the larger of x or y.
22 // Max(x, +Inf) = Max(+Inf, x) = +Inf
23 // Max(x, NaN) = Max(NaN, x) = NaN
24 // Max(+0, ±0) = Max(±0, +0) = +0
25 // Max(-0, -0) = -0
26 func Max(x, y float64) float6
28 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/runtime/cgo/
gcc_traceback.c 14 uintptr_t Max;
28 arg.Max = 32; // must match len(runtime.cgoCallers)
  /external/skia/include/private/
SkMiniRecorder.h 47 struct Max { static const size_t val = A > B ? A : B; };
50 Max<sizeof(SkRecords::DrawPath),
51 Max<sizeof(SkRecords::DrawRect),
  /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 628 milliseconds

1 2 3 4 5 6 7 8 91011>>