HomeSort by relevance Sort by last modified time
    Searched defs:max (Results 276 - 300 of 2969) sorted by null

<<11121314151617181920>>

  /external/gemmlowp/internal/
output_neon.h 224 const int32x4_t max = vdupq_n_s32(output_stage.max); local
225 return vminq_s32(vmaxq_s32(input, min), max);
  /external/guava/guava/src/com/google/common/primitives/
UnsignedBytes.java 154 public static byte max(byte... array) { method in class:UnsignedBytes
156 int max = toInt(array[0]); local
159 if (next > max) {
160 max = next;
163 return (byte) max;
UnsignedInts.java 106 public static int max(int... array) { method in class:UnsignedInts
108 int max = flip(array[0]); local
111 if (next > max) {
112 max = next;
115 return flip(max);
  /external/guava/guava-tests/benchmark/com/google/common/cache/
LoadingCacheSingleThreadBenchmark.java 46 int max; field in class:LoadingCacheSingleThreadBenchmark
54 max = Ints.checkedCast((long) Math.pow(distinctKeys, concentration));
86 int a = random.nextInt(max);
  /external/guava/guava-tests/benchmark/com/google/common/collect/
MapMakerSingleThreadBenchmark.java 49 int max; field in class:MapMakerSingleThreadBenchmark
57 max = Ints.checkedCast((long) Math.pow(distinctKeys, concentration));
89 int a = random.nextInt(max);
  /external/icu/android_icu4j/src/main/java/android/icu/text/
CharsetMatch.java 88 int max = maxLength < 0? Integer.MAX_VALUE : maxLength; local
91 while ((bytesRead = reader.read(buffer, 0, Math.min(max, 1024))) >= 0) {
93 max -= bytesRead;
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
UPropertyAliasesTest.java 59 int max = 0; local
61 max = 255;
64 the real max, U_GC_P_MASK */
65 max = 0x1000; // U_GC_NL_MASK;
68 max = 1;
98 if (!sawValue && v>=max) break;
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
UPropertyAliasesTest.java 55 int max = 0; local
57 max = 255;
60 the real max, U_GC_P_MASK */
61 max = 0x1000; // U_GC_NL_MASK;
64 max = 1;
94 if (!sawValue && v>=max) break;
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/timescale/
CalculateLimits.java 42 * the min and max values calculated above to <code>BigDecimalFrom()</code>. Because
60 BigDecimal min = UniversalTimeScale.toBigDecimalTrunc(universalMin, scale).max(universalMin);
61 BigDecimal max = UniversalTimeScale.toBigDecimalTrunc(universalMax, scale).min(universalMax); local
63 long maxLong = max.longValue();
66 limitArgs[3] = max.toString();
70 BigDecimal maxTrunc = UniversalTimeScale.bigDecimalFrom(max, scale);
77 max = maxTrunc.add(maxResidue.min(half));
79 limitArgs[1] = max.toString();
89 System.out.println("OOPS: max didn't round trip!");
97 if(UniversalTimeScale.toLong(max.longValue(), scale) != maxLong)
    [all...]
  /external/iptables/include/linux/netfilter/
xt_hashlimit.h 8 /* 1/10,000 sec period => max of 10,000/sec. Min rate is then 429490
33 __u32 max; /* max number of entries */ member in struct:hashlimit_cfg
57 __u32 max; /* max number of entries */ member in struct:hashlimit_cfg1
xt_u32.h 20 __u32 max; member in struct:xt_u32_value_element
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/table/
BarColumn.java 42 private int max; field in class:BarColumn
65 this.max = 0;
68 if (count > this.max) {
69 this.max = count;
86 if (max > 0) {
98 final int width = count * WIDTH / max;
  /external/jetty/src/java/org/eclipse/jetty/websocket/
WebSocketServlet.java 38 * which is also the max frame byte size (default 8192).
71 String max = getInitParameter("maxIdleTime"); local
72 if (max != null)
73 _webSocketFactory.setMaxIdleTime(Integer.parseInt(max));
75 max = getInitParameter("maxTextMessageSize");
76 if (max != null)
77 _webSocketFactory.setMaxTextMessageSize(Integer.parseInt(max));
79 max = getInitParameter("maxBinaryMessageSize");
80 if (max != null)
81 _webSocketFactory.setMaxBinaryMessageSize(Integer.parseInt(max));
    [all...]
  /external/kernel-headers/original/uapi/linux/netfilter/
nf_nat.h 26 union nf_conntrack_man_proto max; member in struct:nf_nat_ipv4_range
xt_hashlimit.h 8 /* 1/10,000 sec period => max of 10,000/sec. Min rate is then 429490
34 __u32 max; /* max number of entries */ member in struct:hashlimit_cfg
58 __u32 max; /* max number of entries */ member in struct:hashlimit_cfg1
xt_u32.h 20 __u32 max; member in struct:xt_u32_value_element
  /external/libchrome/base/metrics/
sample_map.cc 48 Sample max; local
51 iter->Get(&min, &max, &count);
52 if (min + 1 != max)
78 void SampleMapIterator::Get(Sample* min, Sample* max, Count* count) const {
82 if (max != NULL)
83 *max = iter_->first + 1;
  /external/libchrome/base/numerics/
safe_conversions_impl.h 35 // type if both numeric_limits<Src>::max() <= numeric_limits<Dst>::max() and
140 static Dst max() { function in struct:base::internal::NarrowingRange
141 // The following logic avoids warnings where the max function is
154 return DstLimits::max() - static_cast<Dst>((UINTMAX_C(1) << shift) - 1);
158 return std::numeric_limits<Dst>::is_iec559 ? -DstLimits::max()
202 return GetRangeConstraint((value <= NarrowingRange<Dst, Src>::max()),
215 return GetRangeConstraint(value <= NarrowingRange<Dst, Src>::max(), true);
230 value <= static_cast<Src>(NarrowingRange<Dst, Src>::max()),
247 value <= static_cast<Src>(NarrowingRange<Dst, Src>::max()),
    [all...]
  /external/libmicrohttpd/src/testcurl/https/
test_empty_response.c 73 MHD_socket max; local
137 max = 0;
141 mret = curl_multi_fdset (multi, &rs, &ws, &es, &max);
152 select (max + 1, &rs, &ws, &es, &tv);
test_https_get_select.c 87 MHD_socket max; local
149 max = 0;
153 mret = curl_multi_fdset (multi, &rs, &ws, &es, &max);
162 if (MHD_YES != MHD_get_fdset (d, &rs, &ws, &es, &max))
172 select (max + 1, &rs, &ws, &es, &tv);
  /external/libmicrohttpd/src/testcurl/
test_callback.c 40 called_twice(void *cls, uint64_t pos, char *buf, size_t max)
46 memset(buf, 0, max);
91 MHD_socket max; local
133 max = MHD_INVALID_SOCKET;
140 mret = curl_multi_fdset (multi, &rs, &ws, &es, &max);
151 MHD_get_fdset(d, &rs, &ws, &es, &max))
161 select(max + 1, &rs, &ws, &es, &tv);
test_parse_cookies.c 120 MHD_socket max; local
174 max = 0;
179 mret = curl_multi_fdset (multi, &rs, &ws, &es, &max);
188 if (MHD_YES != MHD_get_fdset (d, &rs, &ws, &es, &max))
198 select (max + 1, &rs, &ws, &es, &tv);
test_process_arguments.c 123 MHD_socket max; local
173 max = 0;
178 mret = curl_multi_fdset (multi, &rs, &ws, &es, &max);
187 if (MHD_YES != MHD_get_fdset (d, &rs, &ws, &es, &max))
197 select (max + 1, &rs, &ws, &es, &tv);
  /external/libmpeg2/common/x86/
ideint_cac_ssse3.c 171 __m128i min, max, diff, thresh; local
182 max = _mm_max_epu8(top_avg, bot_avg);
184 diff = _mm_sub_epi16(max, min);
  /external/libnl/include/
netlink-local.h 129 #define max(x,y) ({ \ macro

Completed in 508 milliseconds

<<11121314151617181920>>