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

1 2 3 4 5 6 7 8 910

  /external/libcxx/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");
37 static const result_type _Min = Min;
41 static _LIBCPP_CONSTEXPR result_type min() {return Min;}
44 explicit rand1(result_type sd = Min) : x_(sd)
46 if (x_ < Min)
47 x_ = Min;
58 x_ = Min;
eval.pass.cpp 20 template <class UIntType, UIntType Min, UIntType Max>
30 static_assert(Min < Max, "rand1 invalid parameters");
35 static const result_type _Min = Min;
39 static _LIBCPP_CONSTEXPR result_type min() {return Min;}
42 explicit rand1(result_type sd = Min) : x_(sd)
54 x_ = Min;
  /external/libcxx/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");
37 static const result_type _Min = Min;
41 static _LIBCPP_CONSTEXPR result_type min() {return Min;}
44 explicit rand1(result_type sd = Min) : x_(sd)
46 if (x_ < Min)
47 x_ = Min;
58 x_ = Min;
eval.pass.cpp 20 template <class UIntType, UIntType Min, UIntType Max>
30 static_assert(Min < Max, "rand1 invalid parameters");
35 static const result_type _Min = Min;
39 static _LIBCPP_CONSTEXPR result_type min() {return Min;}
42 explicit rand1(result_type sd = Min) : x_(sd)
54 x_ = Min;
  /ndk/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");
37 static const result_type _Min = Min;
41 static _LIBCPP_CONSTEXPR result_type min() {return Min;}
44 explicit rand1(result_type sd = Min) : x_(sd)
46 if (x_ < Min)
47 x_ = Min;
58 x_ = Min;
eval.pass.cpp 20 template <class UIntType, UIntType Min, UIntType Max>
30 static_assert(Min < Max, "rand1 invalid parameters");
35 static const result_type _Min = Min;
39 static _LIBCPP_CONSTEXPR result_type min() {return Min;}
42 explicit rand1(result_type sd = Min) : x_(sd)
54 x_ = Min;
  /ndk/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");
37 static const result_type _Min = Min;
41 static _LIBCPP_CONSTEXPR result_type min() {return Min;}
44 explicit rand1(result_type sd = Min) : x_(sd)
46 if (x_ < Min)
47 x_ = Min;
58 x_ = Min;
eval.pass.cpp 20 template <class UIntType, UIntType Min, UIntType Max>
30 static_assert(Min < Max, "rand1 invalid parameters");
35 static const result_type _Min = Min;
39 static _LIBCPP_CONSTEXPR result_type min() {return Min;}
42 explicit rand1(result_type sd = Min) : x_(sd)
54 x_ = Min;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
TokenTypes.cs 44 public const int Min = Up + 1;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/rank/
Min.java 40 public class Min extends AbstractStorelessUnivariateStatistic implements Serializable {
52 * Create a Min instance
54 public Min() {
60 * Copy constructor, creates a new {@code Min} identical
63 * @param original the {@code Min} instance to copy
65 public Min(Min original) {
128 double min = Double.NaN; local
130 min = values[begin];
133 min = (min < values[i]) ? min : values[i]
    [all...]
  /external/valgrind/VEX/priv/
host_mips_defs.c 763 i->Min.LI.dst = dst;
764 i->Min.LI.imm = imm;
772 i->Min.Alu.op = op;
773 i->Min.Alu.dst = dst;
774 i->Min.Alu.srcL = srcL;
775 i->Min.Alu.srcR = srcR;
784 i->Min.Shft.op = op;
785 i->Min.Shft.sz32 = sz32;
786 i->Min.Shft.dst = dst;
787 i->Min.Shft.srcL = srcL
    [all...]
  /external/vboot_reference/tests/
utility_tests.c 34 TEST_EQ(Min(1, 2), 1, "Min 1");
35 TEST_EQ(Min(4, 3), 3, "Min 2");
36 TEST_EQ(Min(5, 5), 5, "Min 5");
37 TEST_EQ(Min(a, b), b, "Min uint64 1");
38 TEST_EQ(Min(b, a), b, "Min uint64 2")
    [all...]
  /external/llvm/include/llvm/Transforms/IPO/
LowerBitSets.h 67 uint64_t Min, Max;
69 BitSetBuilder() : Min(std::numeric_limits<uint64_t>::max()), Max(0) {}
72 if (Min > Offset)
73 Min = Offset;
  /prebuilts/go/darwin-x86/src/math/
dim_386.s 13 TEXT ·Min(SB),NOSPLIT,$0
14 JMP ·min(SB)
dim_arm.s 10 TEXT ·Min(SB),NOSPLIT,$0
11 B ·min(SB)
  /prebuilts/go/linux-x86/src/math/
dim_386.s 13 TEXT ·Min(SB),NOSPLIT,$0
14 JMP ·min(SB)
dim_arm.s 10 TEXT ·Min(SB),NOSPLIT,$0
11 B ·min(SB)
  /external/libavc/encoder/
irc_cbr_buffer_control.h 44 #define CLIP(Number,Max,Min) if((Number) > (Max)) (Number) = (Max); \
45 else if((Number) < (Min)) (Number) = (Min);
  /external/libmpeg2/common/
impeg2_macros.h 27 #define MIN(x,y) ((x) < (y) ? (x) : (y))
29 #define CLIP(Number,Max,Min) if((Number) > (Max)) (Number) = (Max); \
30 else if((Number) < (Min)) (Number) = (Min)
  /external/llvm/include/llvm/CodeGen/PBQP/
ReductionRules.h 49 PBQPNum Min = ECosts[0][j] + XCosts[0];
52 if (C < Min)
53 Min = C;
55 YCosts[j] += Min;
59 PBQPNum Min = ECosts[i][0] + XCosts[0];
62 if (C < Min)
63 Min = C;
65 YCosts[i] += Min;
111 PBQPNum Min = (*YXECosts)[i][0] + (*ZXECosts)[j][0] + XCosts[0];
114 if (C < Min) {
    [all...]
  /external/clang/include/clang/Frontend/
VerifyDiagnosticConsumer.h 152 unsigned Min, unsigned Max);
161 unsigned Min, Max;
175 bool MatchAnyLine, StringRef Text, unsigned Min, unsigned Max)
177 Text(Text), Min(Min), Max(Max), MatchAnyLine(MatchAnyLine) {
  /external/compiler-rt/lib/ubsan/
ubsan_diag.cc 261 MemoryLocation Min = subtractNoOverflow(Loc, MinBytesNearLoc);
263 MemoryLocation OrigMin = Min;
265 Min = __sanitizer::Min(Ranges[I].getStart().getMemoryLocation(), Min);
271 if (Max - Min > BytesToShow)
272 Min = __sanitizer::Min(Max - BytesToShow, OrigMin);
273 Max = addNoOverflow(Min, BytesToShow);
275 if (!IsAccessibleMemoryRange(Min, Max - Min))
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/typemaps/
fragments.swg 217 #define %numeric_signed_type_asval(Type, Base, Frag, Min, Max) \
218 %numeric_type_asval(Type, Base, Frag, (v < Min || v > Max))
226 %define %numeric_slong(Type, Frag, Min, Max)
228 %numeric_signed_type_asval(Type, long, Frag , Min, Max)
241 %define %numeric_double(Type, Frag, Min, Max)
243 %numeric_signed_type_asval(Type, double, Frag , Min, Max)
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
TokenConstants.cs 62 public const int Min = Up + 1;
  /external/v8/src/compiler/
operation-typer.cc 75 double current_min = current_range->Min();
79 if (current_min != previous_range->Min()) {
81 for (double const min : kWeakenMinLimits) {
82 if (min <= current_min) {
83 new_min = min;
111 double min = type->Min(); local
115 if (std::isnan(min)) {
119 return Type::Range(min, max, zone());
132 x = std::min(a[i], x)
    [all...]

Completed in 1196 milliseconds

1 2 3 4 5 6 7 8 910