Searched defs:min (Results 51 - 75 of 752) sorted by relevance

1234567891011>>

/external/icu/icu4c/source/common/
H A Dsimplepatternformatter.h62 * @param min The pattern must have at least this many placeholders.
65 SimplePatternFormatter(const UnicodeString& pattern, int32_t min, int32_t max, argument
67 compileMinMaxPlaceholders(pattern, min, max, errorCode);
100 * @param min The pattern must have at least this many placeholders.
105 int32_t min, int32_t max, UErrorCode &errorCode);
/external/icu/icu4c/source/test/intltest/
H A Dcalcasts.h35 int32_t min; member in struct:CalendarCaseTest::TestCase
/external/jemalloc/test/unit/
H A Dsmoothstep.c12 uint64_t sum, min, max; local
27 min = max - SMOOTHSTEP_NSTEPS;
29 assert_u64_ge(sum, min,
/external/kernel-headers/original/uapi/linux/
H A Datm_nicstar.h33 unsigned min; member in struct:buf_nr
/external/libchrome/base/
H A Drand_util.cc19 int RandInt(int min, int max) { argument
20 DCHECK_LE(min, max);
22 uint64_t range = static_cast<uint64_t>(max) - min + 1;
26 static_cast<int>(min + static_cast<int64_t>(base::RandGenerator(range)));
27 DCHECK_GE(result, min);
/external/libchrome/sandbox/linux/bpf_dsl/
H A Dsyscall_set_unittest.cc46 // numbers in the inclusive range [min, max].
47 void AssertRange(uint32_t min, uint32_t max) { argument
48 SANDBOX_ASSERT(min < max);
49 uint32_t prev = min - 1;
51 if (sysnum >= min && sysnum <= max) {
/external/libcxx/test/std/utilities/time/time.duration/time.duration.literals/
H A Dliterals.pass.cpp23 static_assert ( std::is_same<decltype( 3min ), std::chrono::minutes>::value, "" );
34 std::chrono::minutes min = 36min; local
35 assert ( min == std::chrono::minutes(36));
36 auto min2 = 36.0min;
37 assert ( min == min2 );
H A Dliterals1.pass.cpp23 minutes min = 36min; local
24 assert ( min == minutes(36));
25 auto min2 = 36.0min;
26 assert ( min == min2 );
H A Dliterals2.pass.cpp26 std::chrono::minutes min = 36min; local
27 assert ( min == std::chrono::minutes(36));
28 auto min2 = 36.0min;
29 assert ( min == min2 );
/external/libdrm/libkms/
H A Dlinux.c59 unsigned maj, min; local
83 min = minor(buffer.st_rdev);
85 snprintf(path, PATH_SIZE, "/sys/dev/char/%d:%d/device/driver", maj, min);
/external/libweave/third_party/chromium/base/
H A Drand_util.cc19 int RandInt(int min, int max) { argument
20 DCHECK_LE(min, max);
22 uint64_t range = static_cast<uint64_t>(max) - min + 1;
26 static_cast<int>(min + static_cast<int64_t>(base::RandGenerator(range)));
27 DCHECK_GE(result, min);
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
H A DTableSwitchInsnNode.java51 public int min; field in class:TableSwitchInsnNode
72 * @param min the minimum key value.
76 * the beginning of the handler block for the <tt>min + i</tt> key.
79 final int min,
85 this.min = min;
103 mv.visitTableSwitchInsn(min, max, dflt.getLabel(), labels);
107 return new TableSwitchInsnNode(min,
78 TableSwitchInsnNode( final int min, final int max, final LabelNode dflt, final LabelNode[] labels) argument
/external/opencv3/samples/gpu/
H A Dmulti.cpp19 # undef min macro
/external/skia/include/effects/
H A DSkTableMaskFilter.h25 /** Utility that creates a clipping table: clamps values below min to 0
28 static void MakeClipTable(uint8_t table[256], uint8_t min, uint8_t max);
40 static SkMaskFilter* CreateClip(uint8_t min, uint8_t max) { argument
42 MakeClipTable(table, min, max);
/external/tlsdate/src/
H A Dutil-plan9.h37 static inline int min(int x, int y) { return x < y ? x : y; } function
/external/valgrind/memcheck/tests/
H A Dmallinfo.c12 static size_t check(size_t min, size_t max) argument
31 printf("(min = %zu, max = %zu)\n", min, max);
37 if (used < min)
43 // used should be reasonably close to min
45 if (used/5*4 > min)
74 static size_t check(size_t min, size_t max) argument
89 size_t min, max; local
105 min = 0;
109 min
[all...]
/external/webrtc/webrtc/system_wrappers/source/
H A Dmetrics_default.cc18 Histogram* HistogramFactoryGetCounts(const std::string& name, int min, int max, argument
/external/webrtc/webrtc/test/testsupport/metrics/
H A Dvideo_metrics.h34 min(std::numeric_limits<double>::max()),
35 max(std::numeric_limits<double>::min()),
40 double min; member in struct:webrtc::test::QualityMetricsResult
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
H A DLaguerreSolver.java92 public double solve(final double min, final double max) argument
94 return solve(p, min, max);
99 public double solve(final double min, final double max, final double initial) argument
101 return solve(p, min, max, initial);
110 * @param min the lower bound for the interval
122 final double min, final double max, final double initial)
125 return solve(f, min, max, initial);
134 * @param min the lower bound for the interval
146 final double min, final double max, final double initial)
150 if (f.value(min)
121 solve(int maxEval, final UnivariateRealFunction f, final double min, final double max, final double initial) argument
145 solve(final UnivariateRealFunction f, final double min, final double max, final double initial) argument
190 solve(int maxEval, final UnivariateRealFunction f, final double min, final double max) argument
217 solve(final UnivariateRealFunction f, final double min, final double max) argument
265 isRootOK(double min, double max, Complex z) argument
[all...]
H A DUnivariateRealSolver.java67 * @param min the lower bound for the interval.
73 * @throws IllegalArgumentException if min > max or the endpoints do not
79 double solve(double min, double max) throws ConvergenceException, FunctionEvaluationException; argument
88 * @param min the lower bound for the interval.
94 * @throws IllegalArgumentException if min > max or the endpoints do not
100 double solve(UnivariateRealFunction f, double min, double max) argument
109 * @param min the lower bound for the interval.
116 * @throws IllegalArgumentException if min > max or the arguments do not
122 double solve(double min, double max, double startValue) argument
132 * @param min th
145 solve(UnivariateRealFunction f, double min, double max, double startValue) argument
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/
H A DUnivariateRealOptimizer.java61 * @param min the lower bound for the interval.
67 * @throws IllegalArgumentException if min > max or the endpoints do not
71 double min, double max)
82 * @param min the lower bound for the interval.
89 * @throws IllegalArgumentException if min > max or the arguments do not
94 double min, double max, double startValue)
70 optimize(UnivariateRealFunction f, GoalType goalType, double min, double max) argument
93 optimize(UnivariateRealFunction f, GoalType goalType, double min, double max, double startValue) argument
/external/chromium-trace/catapult/telemetry/telemetry/timeline/
H A Dbounds.py6 """Represents a min-max bounds."""
22 return "Bounds(min=%s,max=%s)" % (self.min_, self.max_)
29 def min(self): member in class:Bounds
53 return self.min <= other.min and self.max >= other.max
56 return self.min <= start and self.max >= end
61 return not (other.max < self.min or other.min > self.max)
82 self.min_ = min(self.min_, value)
113 overlapped_range_end = min(first_bounds_ma
[all...]
/external/clang/test/Modules/Inputs/
H A Dcxx-irgen-top.h8 template<typename T> T min(T a, T b) { return a < b ? a : b; } function
10 extern decltype(min(1, 2)) instantiate_min_decl;
/external/eigen/blas/f2c/
H A Ddatatypes.h19 #define min(a,b) ((a) <= (b) ? (a) : (b)) macro
21 #define dmin(a,b) (doublereal)min(a,b)
/external/eigen/test/
H A Dsparse.h19 #ifdef min
20 #undef min macro

Completed in 1599 milliseconds

1234567891011>>