Searched refs:max (Results 176 - 200 of 1843) sorted by relevance

1234567891011>>

/external/chromium/net/disk_cache/
H A Dhistogram_macros.h23 #define CACHE_HISTOGRAM_CUSTOM_COUNTS(name, sample, min, max, bucket_count) \
28 name, min, max, bucket_count, \
42 #define CACHE_HISTOGRAM_CUSTOM_TIMES(name, sample, min, max, bucket_count) \
47 name, min, max, bucket_count, \
/external/chromium/webkit/glue/
H A Dwebframe_unittest.cc34 string16 text = frame->contentAsText(std::numeric_limits<size_t>::max());
54 text = frame->contentAsText(std::numeric_limits<size_t>::max());
73 string16 text = frame->contentAsText(std::numeric_limits<size_t>::max());
84 text = frame->contentAsText(std::numeric_limits<size_t>::max());
/external/clang/test/SemaCXX/
H A Dfunction-overload-typo-crash.cpp7 template <typename T> void max(T); //expected-note {{'max' declared here}}
11 fax(0); //expected-error {{use of undeclared identifier 'fax'; did you mean 'max'}}
H A Di-c-e-cxx.cpp43 unsigned max = 80 / x; local
/external/icu4c/layout/
H A DHanLayoutEngine.h85 * @param max - the number of characters in the input context
99 virtual le_int32 characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft,
H A DOpenTypeLayoutEngine.cpp178 le_int32 OpenTypeLayoutEngine::characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, argument
185 if (offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
227 le_int32 OpenTypeLayoutEngine::glyphProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, argument
234 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
260 le_int32 OpenTypeLayoutEngine::glyphSubstitution(le_int32 count, le_int32 max, le_bool rightToLeft, argument
267 if ( count < 0 || max <
299 computeGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, LEGlyphStorage &glyphStorage, LEErrorCode &success) argument
[all...]
H A DOpenTypeLayoutEngine.h260 * @param max - the number of characters in the input context
273 virtual le_int32 characterProcessing(const LEUnicode /*chars*/[], le_int32 offset, le_int32 count, le_int32 max, le_bool /*rightToLeft*/,
289 * @param max - the number of characters in the input context
305 virtual le_int32 glyphProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft,
308 virtual le_int32 glyphSubstitution(le_int32 count, le_int32 max, le_bool rightToLeft, LEGlyphStorage &glyphStorage, LEErrorCode &success);
345 * @param max - the number of characters in the input context
359 virtual le_int32 computeGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, LEGlyphStorage &glyphStorage, LEErrorCode &success);
/external/iptables/extensions/
H A Dlibip6t_ah.c54 print_spis(const char *name, uint32_t min, uint32_t max, argument
59 if (min != 0 || max != 0xFFFFFFFF || invert) {
60 if (min == max)
63 printf("%ss:%s%u:%u", name, inv, min, max);
/external/iptables/include/net/netfilter/
H A Dnf_nat.h42 union nf_conntrack_man_proto min, max; member in struct:nf_nat_range
/external/replicaisland/src/com/replica/replicaisland/
H A DAABoxCollisionVolume.java111 maxX = Math.max(getMaxX(), other.getMaxX());
112 minX = Math.max(getMinX(), other.getMinX());
113 maxY = Math.max(getMaxY(), other.getMaxY());
114 minY = Math.max(getMinY(), other.getMinY());
/external/skia/include/views/
H A DSkProgressBarView.h20 //SkProgressBarView(int max);
27 void setMax(int max);
/external/webkit/PerformanceTests/Parser/resources/
H A Drunner.js26 var max = values.length ? values[0] : 0;
28 if (max < values[i])
29 max = values[i];
31 return max;
67 log("max " + computeMax(times));
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityProgressIndicator.cpp62 return narrowPrecisionToFloat(element()->max());
/external/webkit/Source/WebCore/html/
H A DHTMLProgressElement.h41 double max() const;
H A DRangeInputType.cpp119 double max = parseToDouble(element()->fastGetAttribute(maxAttr), rangeDefaultMaximum); local
120 // A remedy for the inconsistent min/max values.
123 if (max < min)
124 max = std::max(min, rangeDefaultMaximum);
125 return max;
171 double max = maximum(); local
174 double step = (max - min) / 100;
183 if (newValue > max)
184 newValue = max;
[all...]
/external/webkit/Source/WebCore/platform/graphics/
H A DFloatQuad.cpp34 using std::max;
46 return max(max(a, b), max(c, d));
/external/webkit/Source/WebKit/efl/DefaultTheme/widget/progressbar/
H A Dprogressbar.edc24 max: 999999 999999;
53 max: 999999 99999;
/external/webkit/Source/WebKit/efl/DefaultTheme/widget/scrollbar/
H A Dscrollbar.edc85 max: 10 999999;
117 max: 1 999999;
136 max: 5 999999;
156 max: 5 999999;
263 max: 999999 10;
294 max: 999999 1;
314 max: 999999 5;
334 max: 999999 5;
/external/chromium/base/metrics/
H A Dhistogram.h76 #define HISTOGRAM_CUSTOM_COUNTS(name, sample, min, max, bucket_count) do { \
79 counter = base::Histogram::FactoryGet(name, min, max, bucket_count, \
90 #define HISTOGRAM_CUSTOM_TIMES(name, sample, min, max, bucket_count) do { \
93 counter = base::Histogram::FactoryTimeGet(name, min, max, bucket_count, \
100 #define HISTOGRAM_CLIPPED_TIMES(name, sample, min, max, bucket_count) do { \
103 counter = base::Histogram::FactoryTimeGet(name, min, max, bucket_count, \
106 if ((sample) < (max)) counter->AddTime(sample); \
139 #define DHISTOGRAM_CUSTOM_TIMES(name, sample, min, max, bucket_count) \
140 HISTOGRAM_CUSTOM_TIMES(name, sample, min, max, bucket_count)
141 #define DHISTOGRAM_CLIPPED_TIMES(name, sample, min, max, bucket_coun
[all...]
/external/icu4c/test/intltest/
H A Dtzbdtest.cpp81 UDate max = min + SIX_MONTHS; local
82 while ((max - min) > INTERVAL) {
83 UDate mid = (min + max) / 2;
89 max = mid;
93 logln("Date After: " + showDate(max));
95 UDate maxdelta = max - expectedBoundary;
121 UDate max = min + SIX_MONTHS; local
127 if (tz->inDaylightTime(max, status) == startsInDST) {
128 dataerrln("FAIL: " + tz->getID(str) + " inDaylightTime(" + dateToString(max) + ") != " + (startsInDST ? "false" : "true"));
132 while ((max
386 UDate max = min + SIX_MONTHS; local
[all...]
/external/openssl/crypto/x509v3/
H A Dv3_addr.c80 ASN1_SIMPLE(IPAddressRange, max, ASN1_BIT_STRING)
233 if (!i2r_address(out, afi, 0xFF, aor->u.addressRange->max))
390 const unsigned char *max,
396 OPENSSL_assert(memcmp(min, max, length) <= 0);
397 for (i = 0; i < length && min[i] == max[i]; i++)
399 for (j = length - 1; j >= 0 && min[j] == 0x00 && max[j] == 0xFF; j--)
405 mask = min[i] ^ max[i];
416 if ((min[i] & mask) != 0 || (max[i] & mask) != mask)
462 unsigned char *max,
468 if ((prefixlen = range_should_be_prefix(min, max, lengt
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRDFA.h37 const unichar *max; variable
74 @property const unichar *max; variable
/external/bluetooth/bluedroid/stack/mcap/
H A Dmca_dsm.c178 int i, max; local
186 max = p_cs->max_mdl;
187 for (i=0; i<max; i++, p_dcb_tmp++)
218 int i, max; local
228 max = p_cs->max_mdl;
229 for (i=0; i<max; i++, p_dcb++)
240 max = 0;
243 left = max - count;
/external/chromium/base/test/
H A Dtest_timeouts.cc25 *value = std::max(*value, timeout);
27 *value = std::max(*value, min_value);
/external/chromium/chrome/browser/resources/gpu_internals/
H A Dtimeline_view.css25 max-height: 250px;

Completed in 578 milliseconds

1234567891011>>