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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/sqlite/src/
addopcodes.awk 10 max = 0
14 if( max<$3 ) max = $3
17 printf "#define TK_%-29s %4d\n", "TO_TEXT", ++max
18 printf "#define TK_%-29s %4d\n", "TO_BLOB", ++max
19 printf "#define TK_%-29s %4d\n", "TO_NUMERIC", ++max
20 printf "#define TK_%-29s %4d\n", "TO_INT", ++max
21 printf "#define TK_%-29s %4d\n", "TO_REAL", ++max
22 printf "#define TK_%-29s %4d\n", "ISNOT", ++max
23 printf "#define TK_%-29s %4d\n", "END_OF_FILE", ++max
    [all...]
  /external/chromium_org/third_party/lcov/example/methods/
gauss.c 27 * s = (1/2) * (max + min) * (max - min + 1)
38 int gauss_get_sum (int min, int max)
42 if (max < min)
47 return (int) ((max + min) * (double) (max - min + 1) / 2);
  /external/chromium_org/third_party/angle/samples/angle/sample_util/
random_utils.h 10 float RandomBetween(float min, float max);
  /external/fio/
io_u_queue.c 21 ring->max = nr + 1;
22 if (ring->max & (ring->max - 1)) {
23 ring->max--;
24 ring->max |= ring->max >> 1;
25 ring->max |= ring->max >> 2;
26 ring->max |= ring->max >> 4
    [all...]
minmax.h 7 #ifndef max
8 #define max(a, b) ((a) > (b) ? (a) : (b)) macro
  /external/libcxx/test/algorithms/alg.sorting/alg.min.max/
max_init_list.pass.cpp 14 // max(initializer_list<T> t);
22 int i = std::max({2, 3, 1});
24 i = std::max({2, 1, 3});
26 i = std::max({3, 1, 2});
28 i = std::max({3, 2, 1});
30 i = std::max({1, 2, 3});
32 i = std::max({1, 3, 2});
36 static_assert(std::max({1, 3, 2}) == 3, "");
37 static_assert(std::max({2, 1, 3}) == 3, "");
38 static_assert(std::max({3, 2, 1}) == 3, "")
    [all...]
max_init_list_comp.pass.cpp 14 // max(initializer_list<T> t, Compare comp);
23 int i = std::max({2, 3, 1}, std::greater<int>());
25 i = std::max({2, 1, 3}, std::greater<int>());
27 i = std::max({3, 1, 2}, std::greater<int>());
29 i = std::max({3, 2, 1}, std::greater<int>());
31 i = std::max({1, 2, 3}, std::greater<int>());
33 i = std::max({1, 3, 2}, std::greater<int>());
37 static_assert(std::max({1, 3, 2}, std::greater<int>()) == 1, "");
38 static_assert(std::max({2, 1, 3}, std::greater<int>()) == 1, "");
39 static_assert(std::max({3, 2, 1}, std::greater<int>()) == 1, "")
    [all...]
  /external/chromium_org/remoting/protocol/
network_settings_unittest.cc 13 int min, max; local
16 EXPECT_TRUE(NetworkSettings::ParsePortRange("1-65535", &min, &max));
18 EXPECT_EQ(65535, max);
20 EXPECT_TRUE(NetworkSettings::ParsePortRange(" 1 - 65535 ", &min, &max));
22 EXPECT_EQ(65535, max);
24 EXPECT_TRUE(NetworkSettings::ParsePortRange("12400-12400", &min, &max));
26 EXPECT_EQ(12400, max);
29 EXPECT_FALSE(NetworkSettings::ParsePortRange("", &min, &max));
30 EXPECT_FALSE(NetworkSettings::ParsePortRange("-65535", &min, &max));
31 EXPECT_FALSE(NetworkSettings::ParsePortRange("1-", &min, &max));
    [all...]
  /external/libcxx/test/utilities/time/time.traits/time.traits.duration_values/
max.pass.cpp 12 // duration_values::max
22 assert(std::chrono::duration_values<int>::max() ==
23 std::numeric_limits<int>::max());
24 assert(std::chrono::duration_values<double>::max() ==
25 std::numeric_limits<double>::max());
26 assert(std::chrono::duration_values<Rep>::max() ==
27 std::numeric_limits<Rep>::max());
29 static_assert(std::chrono::duration_values<int>::max() ==
30 std::numeric_limits<int>::max(), "");
31 static_assert(std::chrono::duration_values<double>::max() =
    [all...]
  /external/ltrace/sysdeps/linux-gnu/
arch_mksyscallent 26 max=0;
36 if ($3 > max) {
37 max=$3;
41 if ($4 > max) {
42 max=$4;
49 for(i=0; i<=max; i++) {
mksyscallent 28 max=0;
39 if ($3 > max) {
40 max=$3;
44 if ($4 > max) {
45 max=$4;
52 for(i=0; i<=max; i++) {
  /external/chromium_org/chrome/browser/resources/options/
factory_reset_overlay.css 6 max-width: 550px;
easy_unlock_turn_off_overlay.css 6 max-width: 480px;
  /external/chromium_org/third_party/WebKit/Source/core/css/
xhtmlmp.css 36 max-zoom: 5;
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.geo/
max.pass.cpp 15 // result_type max() const;
25 assert(d.max() == std::numeric_limits<int>::max());
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.negbin/
max.pass.cpp 15 // result_type max() const;
25 assert(d.max() == std::numeric_limits<int>::max());
  /external/libcxx/test/utilities/template.bitset/bitset.members/
to_ullong.pass.cpp 22 const unsigned long long max = M == 0 ? 0 : (unsigned long long)(-1) >> X;
24 std::min<unsigned long long>(1, max),
25 std::min<unsigned long long>(2, max),
26 std::min<unsigned long long>(3, max),
27 std::min(max, max-3),
28 std::min(max, max-2),
29 std::min(max, max-1)
    [all...]
  /development/ndk/platforms/android-3/include/linux/netfilter/
xt_length.h 16 u_int16_t min, max; member in struct:xt_length_info
  /external/chromium_org/third_party/lcov/example/
gauss.h 4 extern int gauss_get_sum (int min, int max);
iterate.h 4 extern int iterate_get_sum (int min, int max);
  /external/dhcpcd/compat/
closefrom.c 35 long max; local
39 max = sysconf(_SC_OPEN_MAX);
41 max = getdtablesize();
44 for (i = fd; i < max; i++) {
  /external/chromium_org/cc/resources/
memory_history.cc 22 void MemoryHistory::GetMinAndMax(size_t* min, size_t* max) const {
23 *min = std::numeric_limits<size_t>::max();
24 *max = 0;
31 if (bytes_total > *max)
32 *max = bytes_total;
35 if (*min > *max)
36 *min = *max;
  /bionic/libc/bionic/
strftime_l.cpp 31 size_t strftime_l(char *s, size_t max, const char *format, const struct tm *tm,
33 return strftime(s, max, format, tm);
  /external/chromium_org/content/renderer/media/
media_stream_audio_level_calculator.cc 15 // Note, the return value can be bigger than std::numeric_limits<int16>::max().
17 int max = 0, absolute = 0; local
20 if (absolute > max)
21 max = absolute;
23 // The range of int16 is [-32768, 32767], verify the |max| should not be
25 DCHECK(max <= std::abs(std::numeric_limits<int16>::min()));
27 return max;
51 int max = MaxAmplitude(audio_data, number_of_channels * number_of_frames); local
52 max_amplitude_ = std::max(max_amplitude_, max);
    [all...]
  /external/eigen/doc/snippets/
Cwise_max.cpp 2 cout << v.max(w) << endl;

Completed in 1186 milliseconds

1 2 3 4 5 6 7 8 91011>>