Searched defs:min (Results 26 - 50 of 703) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
H A DStats.cs99 public static int min(int[] X) { method in class:Antlr.Runtime.Misc.Stats
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
H A DStats.java85 public static int min(int[] X) { method in class:Stats
86 int min = Integer.MAX_VALUE;
92 if ( X[i] < min ) {
93 min = X[i];
96 return min;
129 public static int min(List<Integer> X) { method in class:Stats
130 int min = Integer.MAX_VALUE;
136 if ( X.get(i) < min ) {
137 min = X.get(i);
140 return min;
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DBigIntegers.java83 * Return a random BigInteger not less than 'min' and not greater than 'max'
85 * @param min the least value that may be generated
88 * @return a random BigInteger value in the range [min,max]
91 BigInteger min,
95 int cmp = min.compareTo(max);
100 throw new IllegalArgumentException("'min' may not be greater than 'max'");
103 return min;
106 if (min.bitLength() > max.bitLength() / 2)
108 return createRandomInRange(ZERO, max.subtract(min), random).add(min);
90 createRandomInRange( BigInteger min, BigInteger max, SecureRandom random) argument
[all...]
/external/chromium_org/content/renderer/pepper/
H A Dppb_uma_private_impl.cc30 int64_t min, int64_t max,
32 RETURN_IF_BAD_ARGS(name, sample, min, max, bucket_count);
40 base::TimeDelta::FromMilliseconds(min),
49 int32_t min, int32_t max,
51 RETURN_IF_BAD_ARGS(name, sample, min, max, bucket_count);
59 min,
28 HistogramCustomTimes(PP_Var name, int64_t sample, int64_t min, int64_t max, uint32_t bucket_count) argument
47 HistogramCustomCounts(PP_Var name, int32_t sample, int32_t min, int32_t max, uint32_t bucket_count) argument
/external/chromium_org/net/quic/
H A Dport_suggester.cc24 int PortSuggester::SuggestPort(int min, int max) { argument
34 DCHECK_LE(min, max);
35 DCHECK_GT(min, 0);
36 int range = max - min + 1;
40 previous_suggestion_ = static_cast<int>(seed_ % range) + min;
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DStringExtrasTest.cpp79 const IntegerType min = std::numeric_limits<IntegerType>::min(); local
80 CString minStringData = String::number(min).latin1();
81 snprintf(buffer.data(), bufferSize, PrintfFormatTrait<IntegerType>::format, min);
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dcalcasts.h35 int32_t min; member in struct:CalendarCaseTest::TestCase
/external/chromium_org/third_party/skia/include/effects/
H A DSkTableMaskFilter.h29 /** Utility that creates a clipping table: clamps values below min to 0
32 static void MakeClipTable(uint8_t table[256], uint8_t min, uint8_t max);
40 static SkTableMaskFilter* CreateClip(uint8_t min, uint8_t max) { argument
42 MakeClipTable(table, min, max);
/external/chromium_org/tools/telemetry/telemetry/core/timeline/
H A Dbounds.py6 """Represents a min-max bounds."""
17 def min(self): member in class:Bounds
58 self.min_ = min(self.min_, value)
/external/chromium_org/ui/gfx/animation/
H A Danimation_container.cc95 TimeDelta min; local
97 min = (*i)->GetTimerInterval();
99 if ((*i)->GetTimerInterval() < min)
100 min = (*i)->GetTimerInterval();
102 return min;
/external/dropbear/libtommath/
H A Dbn_s_mp_add.c23 int olduse, res, min, max; local
29 min = b->used;
33 min = a->used;
66 for (i = 0; i < min; i++) {
80 if (min != max) {
H A Dbn_s_mp_sub.c22 int olduse, res, min, max; local
25 min = b->used;
48 for (i = 0; i < min; i++) {
/external/e2fsprogs/lib/ext2fs/
H A Dsparse.c54 unsigned int *min = three; local
60 ret = *min;
61 *min += 1;
65 if (*five < *min) {
66 min = five;
69 if (*seven < *min) {
70 min = seven;
74 ret = *min;
75 *min *= mult;
/external/e2fsprogs/misc/
H A De2freefrag.h18 unsigned long min, max, avg; /* chunk size stats */ member in struct:chunk_info
/external/eigen/Eigen/src/plugins/
H A DArrayCwiseBinaryOps.h23 /** \returns an expression of the coefficient-wise min of \c *this and \a other
30 EIGEN_MAKE_CWISE_BINARY_OP(min,internal::scalar_min_op)
32 /** \returns an expression of the coefficient-wise min of \c *this and scalar \a other
37 (min)(const Scalar &other) const function
39 return (min)(Derived::PlainObject::Constant(rows(), cols(), other));
47 * \sa min()
53 * \sa min()
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
H A DPacketKexDhGexRequest.java19 int min; field in class:PacketKexDhGexRequest
25 this.min = para.getMin_group_len();
36 tw.writeUINT32(min);
/external/icu4c/test/intltest/
H A Dcalcasts.h35 int32_t min; member in struct:CalendarCaseTest::TestCase
/external/skia/include/effects/
H A DSkTableMaskFilter.h29 /** Utility that creates a clipping table: clamps values below min to 0
32 static void MakeClipTable(uint8_t table[256], uint8_t min, uint8_t max);
40 static SkTableMaskFilter* CreateClip(uint8_t min, uint8_t max) { argument
42 MakeClipTable(table, min, max);
/external/v8/test/mjsunit/
H A Dmath-min-max.js30 // Test Math.min().
32 assertEquals(Infinity, Math.min());
33 assertEquals(1, Math.min(1));
34 assertEquals(1, Math.min(1, 2));
35 assertEquals(1, Math.min(2, 1));
36 assertEquals(1, Math.min(1, 2, 3));
37 assertEquals(1, Math.min(3, 2, 1));
38 assertEquals(1, Math.min(2, 3, 1));
39 assertEquals(1.1, Math.min(1.1, 2.2, 3.3));
40 assertEquals(1.1, Math.min(3.
[all...]
/external/valgrind/main/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/test/testsupport/metrics/
H A Dvideo_metrics.h31 min(std::numeric_limits<double>::max()),
32 max(std::numeric_limits<double>::min()),
37 double min; member in struct:webrtc::test::QualityMetricsResult
/external/chromium/chrome/browser/extensions/
H A Dextension_metrics_module.cc73 int min,
81 min,
87 min,
107 int min; local
112 EXTENSION_FUNCTION_VALIDATE(metric_type->GetInteger("min", &min));
118 return RecordValue(name, histogram_type, min, max, buckets, sample);
71 RecordValue(const std::string& name, Histogram::ClassType type, int min, int max, size_t buckets, int sample) argument
/external/chromium_org/chrome/browser/extensions/api/metrics_private/
H A Dmetrics_private_api.cc116 int min, int max, size_t buckets,
120 min = std::min(min, INT_MAX - 3);
121 max = std::min(max, INT_MAX - 3);
122 buckets = std::min(buckets, kMaxBuckets);
124 min = std::max(min, 1);
125 max = std::max(max, min + 1);
128 if (buckets > static_cast<size_t>(max - min
113 RecordValue( const std::string& name, base::HistogramType type, int min, int max, size_t buckets, int sample) argument
[all...]
/external/chromium_org/chrome/browser/ui/webui/
H A Dtheme_source_unittest.cc71 size_t min = 0; local
72 EXPECT_GT(result_data_size_, min);
75 EXPECT_GT(result_data_size_, min);
/external/chromium_org/third_party/freetype/src/psnames/
H A Dpstables.h4080 int count, min, max; local
4091 min = 0;
4094 while ( min < max )
4096 int mid = ( min + max ) >> 1;
4110 min = mid + 1;

Completed in 1664 milliseconds

1234567891011>>