HomeSort by relevance Sort by last modified time
    Searched refs:max (Results 101 - 125 of 3702) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/gtest/samples/
prime_tables.h 82 // 'max' specifies the maximum number the prime table holds.
83 explicit PreCalculatedPrimeTable(int max)
84 : is_prime_size_(max + 1), is_prime_(new bool[max + 1]) {
85 CalculatePrimesUpTo(max);
102 void CalculatePrimesUpTo(int max) {
106 for (int i = 2; i <= max; i++) {
110 for (int j = 2*i; j <= max; j += i) {
  /external/libvpx/libvpx/third_party/googletest/src/samples/
prime_tables.h 82 // 'max' specifies the maximum number the prime table holds.
83 explicit PreCalculatedPrimeTable(int max)
84 : is_prime_size_(max + 1), is_prime_(new bool[max + 1]) {
85 CalculatePrimesUpTo(max);
102 void CalculatePrimesUpTo(int max) {
106 for (int i = 2; i <= max; i++) {
110 for (int j = 2*i; j <= max; j += i) {
  /external/protobuf/gtest/samples/
prime_tables.h 82 // 'max' specifies the maximum number the prime table holds.
83 explicit PreCalculatedPrimeTable(int max)
84 : is_prime_size_(max + 1), is_prime_(new bool[max + 1]) {
85 CalculatePrimesUpTo(max);
102 void CalculatePrimesUpTo(int max) {
106 for (int i = 2; i <= max; i++) {
110 for (int j = 2*i; j <= max; j += i) {
  /frameworks/native/services/surfaceflinger/
clz.h 41 static inline T max(T a, T b) { function in namespace:android
45 static inline T max(T a, T b, T c) { function in namespace:android
46 return max(a, max(b, c));
49 static inline T max(T a, T b, T c, T d) { function in namespace:android
50 return max(a, b, max(c, d));
  /libcore/luni/src/test/java/libcore/java/lang/
LongTest.java 23 final long max = Long.MAX_VALUE; local
24 assertTrue(Long.compare(max, max) == 0);
27 assertTrue(Long.compare(max, zero) > 0);
28 assertTrue(Long.compare(max, min) > 0);
29 assertTrue(Long.compare(zero, max) < 0);
32 assertTrue(Long.compare(min, max) < 0);
  /external/chromium/testing/gmock/src/
gmock-cardinalities.cc 52 BetweenCardinalityImpl(int min, int max)
54 max_(max >= min_ ? max : min_) {
60 } else if (max < 0) {
62 << "but is actually " << max << "."; local
64 } else if (min > max) {
65 ss << "The invocation upper bound (" << max
147 // Creates a cardinality that allows between min and max calls.
148 Cardinality Between(int min, int max) {
149 return Cardinality(new BetweenCardinalityImpl(min, max));
    [all...]
  /external/chromium/base/
rand_util_unittest.cc 14 const int kIntMax = std::numeric_limits<int>::max();
35 EXPECT_LE(std::numeric_limits<ptrdiff_t>::max(),
36 std::numeric_limits<int64>::max());
  /external/chromium/third_party/libjingle/source/talk/base/
urlencode.h 41 int UrlEncode(const char *source, char *dest, unsigned max);
45 unsigned max);
49 int UrlEncodeOnlyUnsafeChars(const char *source, char *dest, unsigned max);
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
PacketKexDhGexRequest.java 21 int max; field in class:PacketKexDhGexRequest
27 this.max = para.getMax_group_len();
38 tw.writeUINT32(max);
TypesReader.java 23 int max = 0; field in class:TypesReader
29 max = arr.length;
36 this.max = arr.length;
46 this.max = off + len;
51 if ((max < 0) || (max > arr.length))
57 if (pos >= max)
65 if ((pos + len) > max)
78 if ((pos + len) > max)
87 if (pos >= max)
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
mathutil.h 49 const unsigned int max = 0xFFFFFFFF >> (32 - n); local
53 return max;
61 return (unsigned int)(max * x + 0.5f);
  /external/webkit/Source/WebCore/html/
HTMLProgressElement.cpp 96 return (value > max()) ? max() : value;
108 double HTMLProgressElement::max() const function in class:WebCore::HTMLProgressElement
110 double max; local
111 bool ok = parseToDoubleForNumberType(getAttribute(maxAttr), &max);
112 if (!ok || max <= 0)
114 return max;
117 void HTMLProgressElement::setMax(double max, ExceptionCode& ec)
119 if (!isfinite(max)) {
123 setAttribute(maxAttr, String::number(max > 0 ? max : 1))
    [all...]
  /external/webrtc/test/testsupport/metrics/
video_metrics.h 31 min(std::numeric_limits<double>::max()),
32 max(std::numeric_limits<double>::min()),
38 double max; member in struct:webrtc::test::QualityMetricsResult
  /libcore/benchmarks/src/benchmarks/regression/
LoopingBackwardsBenchmark.java 29 @Param({"2", "20", "2000", "20000000"}) int max; field in class:LoopingBackwardsBenchmark
34 for (int j = 0; j < max; j++) {
44 for (int j = max - 1; j >= 0; j--) {
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
RangeBoolArray.java 19 // This is an array whose index ranges from min to max (inclusive).
24 public RangeBoolArray(int min, int max) {
25 mData = new boolean[max - min + 1];
30 public RangeBoolArray(boolean[] src, int min, int max) {
RangeIntArray.java 19 // This is an array whose index ranges from min to max (inclusive).
24 public RangeIntArray(int min, int max) {
25 mData = new int[max - min + 1];
30 public RangeIntArray(int[] src, int min, int max) {
  /dalvik/libdex/
DexCatch.cpp 54 // Note: Signed type is important for max and min.
56 int max = triesSize - 1; local
58 while (max >= min) {
59 int guess = (min + max) >> 1;
64 max = guess - 1;
  /external/dropbear/
random.h 34 void gen_random_mpint(mp_int *max, mp_int *rand);
  /external/webkit/Source/WebCore/platform/win/
SystemTimeWin.cpp 43 return std::numeric_limits<float>::max();
  /external/webkit/Source/WebCore/platform/wx/wxcode/
scrollbar_render.h 51 int max, int step, int flags=0);
53 inline void calcThumbStartAndLength(int physicalLength, int max, int current,
56 float proportion = ((float)physicalLength - 8)/ (max + step);
61 float thumbPos = ((float)current / (float)max) * ((float)physicalLength - thumbSize);
  /ndk/sources/cxx-stl/llvm-libc++/src/support/android/
stdlib_support.c 12 int mbtowc(wchar_t *pwc, const char *pmb, size_t max) {
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/
max.pass.cpp 15 // result_type max() const;
25 D::result_type m = d.max();
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.chisq/
max.pass.cpp 15 // result_type max() const;
25 D::result_type m = d.max();
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/
max.pass.cpp 15 // result_type max() const;
25 D::result_type m = d.max();
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.lognormal/
max.pass.cpp 15 // result_type max() const;
25 D::result_type m = d.max();

Completed in 829 milliseconds

1 2 3 45 6 7 8 91011>>