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

1 2 34 5 6 7 8 91011>>

  /external/apache-http/src/org/apache/http/conn/params/
ConnPerRouteBean.java 73 public void setDefaultMaxPerRoute(int max) {
74 if (max < 1) {
78 this.defaultMax = max;
81 public void setMaxForRoute(final HttpRoute route, int max) {
86 if (max < 1) {
90 this.maxPerHostMap.put(route, Integer.valueOf(max));
98 Integer max = this.maxPerHostMap.get(route); local
99 if (max != null) {
100 return max.intValue();
  /external/clang/utils/ABITest/return-types-32/
Makefile 7 TESTARGS += --max-args 0
  /external/clang/utils/ABITest/return-types-64/
Makefile 7 TESTARGS += --max-args 0
  /external/clang/utils/ABITest/single-args-32/
Makefile 7 TESTARGS += --no-function-return --max-args 1
  /external/clang/utils/ABITest/single-args-64/
Makefile 13 TESTARGS += --no-function-return --max-args 1
  /external/iptables/include/linux/netfilter/
xt_length.h 7 __u16 min, max; member in struct:xt_length_info
  /external/junit/src/org/junit/experimental/max/
CouldNotReadCoreException.java 1 package org.junit.experimental.max;
4 * Thrown when Max cannot read the MaxCore serialization
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
gmed_n.cpp 131 Word16 max;
143 max = -32767;
146 if (sub (tmp2[j], max) >= 0)
148 max = tmp2[j];
189 register Word16 max; local
201 max = -32767;
204 if (*(tmp2 + j) >= max)
206 max = *(tmp2 + j);
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bernoulli/
max.pass.cpp 14 // result_type max() const;
24 assert(d.max() == true);
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bin/
max.pass.cpp 15 // result_type max() const;
25 assert(d.max() == 4);
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.int/
max.pass.cpp 15 // result_type max() const;
25 assert(d.max() == 8);
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.real/
max.pass.cpp 15 // result_type max() const;
25 assert(d.max() == 8);
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/time/time.duration/time.duration.special/
max.pass.cpp 14 // static constexpr duration max();
27 Rep max_rep = std::chrono::duration_values<Rep>::max();
28 assert(D::max().count() == max_rep);
33 constexpr Rep max_rep = std::chrono::duration_values<Rep>::max();
34 static_assert(D::max().count() == max_rep, "");
  /system/vold/
Process.h 26 static int checkFileMaps(int pid, const char *path, char *openFilename, size_t max);
28 static int checkFileDescriptorSymLinks(int pid, const char *mountPoint, char *openFilename, size_t max);
29 static void getProcessName(int pid, char *buffer, size_t max);
31 static int readSymLink(const char *path, char *link, size_t max);
  /development/ndk/sources/android/libportable/arch-mips/
epoll.c 25 int WRAP(epoll_wait)(int epfd, struct epoll_event *events, int max, int timeout)
27 return REAL(epoll_wait)(epfd, events, max, timeout);
  /external/dropbear/libtommath/
bn_s_mp_add.c 23 int olduse, res, min, max; local
30 max = a->used;
34 max = b->used;
39 if (c->alloc < max + 1) {
40 if ((res = mp_grow (c, max + 1)) != MP_OKAY) {
47 c->used = max + 1;
80 if (min != max) {
81 for (; i < max; i++) {
  /frameworks/native/libs/utils/
primes.py 39 max = 2**31 - 1 variable
40 while n < max:
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/rand/rand.adapt/rand.adapt.ibits/
values.pass.cpp 21 // static constexpr result_type max() { return 2^w - 1; }
32 /*static_*/assert((E::max() == 0xFFFFFFFF)/*, ""*/);
40 /*static_*/assert((E::max() == 0xFFFFFFFFFFFFFFFFull)/*, ""*/);
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/
max.pass.cpp 15 // result_type max() const;
26 assert(d.max() == 2);
32 assert(d.max() == 3);
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/time/time.point/time.point.special/
max.pass.cpp 14 // static constexpr time_point max();
24 assert(TP::max() == TP(Duration::max()));
  /packages/apps/Gallery2/jni/filters/
bwfilter.c 31 float max = MAX(sg,sb); local
32 max = MAX(sr,max);
33 float avg = (min+max)/2;
47 max = MAX(g,b);
48 max = MAX(r,max)
    [all...]
  /external/openssh/openbsd-compat/regress/
closefromtest.c 39 int i, max, fds[NUM_OPENS]; local
45 max = i - 1;
48 closefrom(fds[max]);
49 if (close(fds[max]) != -1)
53 for (i = 0; i < max; i++)
  /external/bison/lib/
intprops.h 155 arguments (including the MIN and MAX arguments) must be of the same
157 must have minimum value MIN and maximum MAX. Unsigned types should
160 These macros are tuned for constant MIN and MAX. For commutative
163 /* Return 1 if A + B would overflow in [MIN,MAX] arithmetic.
165 #define INT_ADD_RANGE_OVERFLOW(a, b, min, max) \
168 : (max) - (b) < (a))
170 /* Return 1 if A - B would overflow in [MIN,MAX] arithmetic.
172 #define INT_SUBTRACT_RANGE_OVERFLOW(a, b, min, max) \
174 ? (max) + (b) < (a) \
177 /* Return 1 if - A would overflow in [MIN,MAX] arithmetic
    [all...]
  /external/oprofile/libop/
op_xml_out.c 96 void open_xml_element(tag_t tag, int with_attrs, char *buffer, size_t max)
101 buffer[max - 1] = '\0';
104 size = max - 1 - size;
116 void close_xml_element(tag_t tag, int has_nested, char *buffer, size_t max)
121 buffer[max - 1] = '\0';
124 size = max - 1 - size;
138 void init_xml_int_attr(tag_t attr, int value, char *buffer, size_t max)
143 buffer[max - 1] = '\0';
146 size = max - 1 - size;
157 void init_xml_dbl_attr(tag_t attr, double value, char *buffer, size_t max)
    [all...]
  /external/chromium/testing/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) {

Completed in 387 milliseconds

1 2 34 5 6 7 8 91011>>