HomeSort by relevance Sort by last modified time
    Searched refs:min (Results 176 - 200 of 4997) sorted by null

1 2 3 4 5 6 78 91011>>

  /dalvik/libdex/
DexCatch.cpp 54 // Note: Signed type is important for max and min.
55 int min = 0; local
58 while (max >= min) {
59 int guess = (min + max) >> 1;
71 min = guess + 1;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
UnivariateRealSolver.java 67 * @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;
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)
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)
132 * @param min the lower bound for the interval
    [all...]
  /external/chromium-trace/trace-viewer/tracing/tracing/ui/extras/chrome/cc/
picture_ops_chart_summary_view.css 10 min-height: 200px;
11 min-width: 200px;
  /external/deqp/framework/delibs/decpp/
deRandom.hpp 48 float getFloat (float min, float max);
49 double getDouble (double min, double max);
50 int getInt (int min, int max);
79 inline float Random::getFloat (float min, float max)
81 DE_ASSERT(min <= max);
82 return min + (max-min)*getFloat();
85 inline double Random::getDouble (double min, double max)
87 DE_ASSERT(min <= max);
88 return min + (max-min)*getDouble()
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/util/
PartialInputStream.java 36 return Math.min(super.available(), getBytesLeft());
51 len = Math.min(len, getBytesLeft());
56 n = Math.min(n, getBytesLeft());
61 return (int)Math.min(Integer.MAX_VALUE, limit - position);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/integration/
TrapezoidIntegrator.java 71 * @param min the lower bound for the interval
78 final double min, final double max, final int n)
82 s = 0.5 * (max - min) * (f.value(min) + f.value(max));
87 final double spacing = (max - min) / np; // spacing between adjacent new points
88 double x = min + 0.5 * spacing; // the first new point
101 public double integrate(final double min, final double max)
103 return integrate(f, min, max);
107 public double integrate(final UnivariateRealFunction f, final double min, final double max)
111 verifyInterval(min, max)
    [all...]
SimpsonIntegrator.java 61 public double integrate(final double min, final double max)
63 return integrate(f, min, max);
67 public double integrate(final UnivariateRealFunction f, final double min, final double max)
71 verifyInterval(min, max);
76 final double s = (4 * qtrap.stage(f, min, max, 1) - qtrap.stage(f, min, max, 0)) / 3.0;
82 double oldt = qtrap.stage(f, min, max, 0);
84 final double t = qtrap.stage(f, min, max, i);
  /external/tinyalsa/
tinypcminfo.c 133 unsigned int min; local
183 min = pcm_params_get_min(params, PCM_PARAM_RATE);
185 printf(" Rate:\tmin=%uHz\tmax=%uHz\n", min, max);
186 min = pcm_params_get_min(params, PCM_PARAM_CHANNELS);
188 printf(" Channels:\tmin=%u\t\tmax=%u\n", min, max);
189 min = pcm_params_get_min(params, PCM_PARAM_SAMPLE_BITS);
191 printf(" Sample bits:\tmin=%u\t\tmax=%u\n", min, max);
192 min = pcm_params_get_min(params, PCM_PARAM_PERIOD_SIZE);
194 printf(" Period size:\tmin=%u\t\tmax=%u\n", min, max);
195 min = pcm_params_get_min(params, PCM_PARAM_PERIODS)
    [all...]
  /external/valgrind/memcheck/tests/
mallinfo.c 12 static size_t check(size_t min, size_t max)
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)
89 size_t min, max; local
105 min = 0;
109 min += size
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/transform/
RealTransformer.java 48 * @param min the lower bound for the interval
55 double[] transform(UnivariateRealFunction f, double min, double max, int n)
70 * @param min the lower bound for the interval
77 double[] inversetransform(UnivariateRealFunction f, double min, double max, int n)
  /external/eigen/doc/examples/
Tutorial_ReductionsVisitorsBroadcasting_visitors.cpp 20 float min = m.minCoeff(&minRow, &minCol); local
24 cout << "Min: " << min << ", at: " <<
  /external/fio/
minmax.h 4 #ifndef min
5 #define min(x,y) ({ \ macro
  /external/libvncserver/test/
tjutil.h 39 #ifndef min
40 #define min(a,b) ((a)<(b)?(a):(b)) macro
  /external/linux-tools-perf/src/tools/perf/util/
stat.h 9 u64 max, min; member in struct:stats
22 stats->min = (u64) -1;
  /system/vold/
hash.h 44 #ifndef min
45 #define min(a,b) (((a)>(b))?(b):(a)) macro
  /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/libcxx/test/std/utilities/template.bitset/bitset.members/
to_ulong.pass.cpp 25 std::min<std::size_t>(1, max),
26 std::min<std::size_t>(2, max),
27 std::min<std::size_t>(3, max),
28 std::min(max, max-3),
29 std::min(max, max-2),
30 std::min(max, max-1),
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
TableSwitchInsnNode.java 51 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,
  /frameworks/base/libs/hwui/
Texture.cpp 45 void Texture::setFilterMinMag(GLenum min, GLenum mag, bool bindTexture, bool force,
48 if (mFirstFilter || force || min != mMinFilter || mag != mMagFilter) {
51 mMinFilter = min;
58 if (mipMap && min == GL_LINEAR) min = GL_LINEAR_MIPMAP_LINEAR;
60 glTexParameteri(renderTarget, GL_TEXTURE_MIN_FILTER, min);
  /hardware/ti/omap4-aah/libtiutils/
UtilsCommon.h 43 const T & min(const T & a, const T & b);
49 const T & bound(const T & min, const T & x, const T & max);
72 inline const T & min(const T & a, const T & b) { function in namespace:Ti
82 inline const T & bound(const T & min, const T & x, const T & max) {
83 return x < min ? min : x > max ? max : x;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/template.bitset/bitset.members/
to_ulong.pass.cpp 25 std::min<std::size_t>(1, max),
26 std::min<std::size_t>(2, max),
27 std::min<std::size_t>(3, max),
28 std::min(max, max-3),
29 std::min(max, max-2),
30 std::min(max, max-1),
  /external/skia/include/utils/
SkRandom.h 64 * Returns value [min...max) as a float
66 float nextRangeF(float min, float max) {
67 return min + this->nextF() * (max - min);
80 [min, max] inclusive.
82 uint32_t nextRangeU(uint32_t min, uint32_t max) {
83 SkASSERT(min <= max);
84 uint32_t range = max - min + 1;
88 return min + this->nextU() % range;
116 in the range [min..max)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/bounding/
Intersection.java 39 import static java.lang.Math.min;
71 // min = p0;
74 // min = p2;
78 // if(min > rad || max < -rad)
104 // float min,max,p0,p1,p2,rad,fex,fey,fez;
120 float min, max; local
131 min = min(p0, p2);
134 if (min > rad || max < -rad) {
142 min = min(p0, p2)
    [all...]
  /external/v8/test/mjsunit/
math-min-max.js 30 // 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.3, 2.2, 1.1))
    [all...]
  /cts/common/util/src/com/android/compatibility/common/util/
Stat.java 27 * Collection of statistical propertirs like average, max, min, and stddev
35 public StatResult(double average, double min, double max, double stddev, int dataCount) {
37 mMin = min;
45 * Calculate statistics properties likes average, min, max, and stddev for the given array
49 double min = data[0]; local
58 if (data[i] < min) {
59 min = data[i];
66 return new StatResult(average, min, max, stddev, data.length);
70 * Calculate statistics properties likes average, min, max, and stddev for the given array
88 double min = median local
135 double min = data[0]; local
    [all...]

Completed in 2136 milliseconds

1 2 3 4 5 6 78 91011>>