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

<<31323334353637383940>>

  /external/apache-xml/src/main/java/org/apache/xml/serializer/
NamespaceMappings.java 376 private int max = 20; field in class:NamespaceMappings.Stack
377 Object[] m_stack = new Object[max];
381 clone.max = this.max;
383 clone.m_stack = new Object[clone.max];
398 if (max <= top) {
399 int newMax = 2*max + 1;
401 System.arraycopy(m_stack,0, newArray, 0, max);
402 max = newMax;
  /external/autotest/client/tests/signaltest/src/
signaltest.c 57 long max; member in struct:thread_stat
172 if (diff > stat->max)
173 stat->max = diff;
298 "Min:%7ld Act:%5ld Avg:%5ld Max:%8ld\n",
302 (long)(stat->avg/stat->cycles) : 0, stat->max);
362 stat[i].max = -1000000;
  /external/blktrace/
blktrace.h 21 #define max(a, b) ((a) > (b) ? (a) : (b)) macro
  /external/chromium-trace/catapult/tracing/third_party/gl-matrix/src/gl-matrix/
vec3.js 203 vec3.max = function(out, a, b) {
204 out[0] = Math.max(a[0], b[0]);
205 out[1] = Math.max(a[1], b[1]);
206 out[2] = Math.max(a[2], b[2]);
  /external/clang/lib/StaticAnalyzer/Core/
HTMLDiagnostics.cpp 64 const PathDiagnosticPiece& P, unsigned num, unsigned max);
156 unsigned max = n; local
161 HandlePiece(R, FID, **I, n, max);
349 unsigned num, unsigned max) {
402 if (num == max)
457 os << "; max-width:" << em << "em";
460 os << "; max-width:100em";
464 if (max > 1) {
504 if (max > 1) {
506 if (num < max) {
    [all...]
  /external/deqp/modules/egl/
teglMemoryStressTests.cpp 435 int max = m_allocationCounts[0]; local
442 max = deMax32(m_allocationCounts[allocNdx], max);
445 if (min == 0 && max != 0)
452 float change = (float)(min - max) / ((float)(max));
456 log << TestLog::Message << "Allocated objects max: " << max << ", min: " << min << ", difference: " << change << "% threshold: " << threshold << "%" << TestLog::EndMessage;
  /external/deqp/modules/glshared/
glsStateChangePerfTestCases.cpp 62 deUint64 max; member in struct:deqp::gls::__anon10759::ResultStats
97 result.max = std::max(result.max, values[i]);
191 deUint64 max = 0; local
194 max = std::max(values[valueNdx], max);
196 return max;
550 log << TestLog::Message << "Interleaved max: " << interleaved.max << TestLog::EndMessage
    [all...]
  /external/dnsmasq/src/
dhcp.c 578 int count, max = (int)(0.6 * (((float)PING_CACHE_TIME)/ local
595 else if (++count == max || r->addr.s_addr == addr.s_addr)
  /external/e2fsprogs/contrib/
spd_readdir.c 73 int max; member in struct:dir_s
161 dirstruct->max = dirstruct->num = 0;
209 if (dirstruct->num >= dirstruct->max) {
210 dirstruct->max += ALLOC_STEPSIZE;
212 dirstruct->max));
214 dirstruct->max * sizeof(struct dir_s));
  /external/e2fsprogs/debugfs/
logdump.c 527 int offset, max; local
537 max = be32_to_cpu(header->r_count);
539 while (offset < max) {
  /external/e2fsprogs/lib/uuid/
gen_uuid.c 239 * max(sizeof(ifreq), sizeof(ifreq.ifr_name)+ifreq.ifr_addr.sa_len
244 #ifndef max
245 #define max(a,b) ((a) > (b) ? (a) : (b)) macro
247 #define ifreq_size(i) max(sizeof(struct ifreq),\
452 int i, max; local
455 max = sysconf(_SC_OPEN_MAX);
457 max = getdtablesize();
462 max = rl.rlim_cur;
464 max = OPEN_MAX;
467 for (i=0; i < max; i++)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
FingerPrintGraph.java 223 double max = kind == TIME_LOG ? Math.log(this.maxValue) : this.maxValue; local
249 int baselineBarLength= (int) (baselineGraphValue / max * this.graphWidth);
250 int baselineErrorLength= (int) (baselineError / max * this.graphWidth / 2);
290 int currentBarLength= (int) (currentGraphValue / max * this.graphWidth);
291 int currentErrorLength= (int) (currentError / max * this.graphWidth / 2);
463 double max = Math.log(this.maxValue);
501 x = MARGIN + (int) (this.graphWidth * Math.log(value) / max);
LineGraph.java 49 return new Point(Math.max(e1.x, e2.x), e1.y+e2.y);
79 int max= (int) (Math.ceil(maxItem * (maxItem < 0 ? 0.9 : 1.2))); local
85 String smax= this.fDimension.getDisplayValue(max);
88 int labelWidth= Math.max(emin.x, emax.x) + 2;
100 // draw the max and min values
114 int graduations= max - min;
TimeLineGraph.java 43 int max= (int) (Math.ceil(maxItem * (maxItem < 0 ? 0.8 : 1.2))); local
49 String smax= this.fDimension.getDisplayValue(max);
52 int labelWidth= Math.max(emin.x, emax.x) + 2;
64 // draw the max and min values
76 setCoordinates(right-left,left,bottom-top,bottom,max-min);
234 double max=getMaxItem()*1.2; local
240 thisItem.setY((int)(PADDING+((max-thisItem.value) * (height)/(yValueRange))));
255 thisItem.setY((int)(PADDING+((max-thisItem.value) * (height)/(yValueRange))));
  /external/eigen/Eigen/src/Core/arch/NEON/
PacketMath.h 367 // max
370 float32x2_t a_lo, a_hi, max; local
374 max = vpmax_f32(a_lo, a_hi);
375 max = vpmax_f32(max, max);
377 return vget_lane_f32(max, 0);
382 int32x2_t a_lo, a_hi, max; local
386 max = vpmax_s32(a_lo, a_hi);
388 return vget_lane_s32(max, 0)
    [all...]
  /external/eigen/test/
main.h 22 // definition of macros min() and max(). The reason is that many STL
23 // implementations will not work properly as the min and max symbols collide
24 // with the STL functions std:min() and std::max(). The STL headers may check
25 // for the macro definition of min/max and issue a warning or undefine the
28 // Still, Windows defines min() and max() in windef.h as part of the regular
30 // macros being available. To prevent the macro expansion of min/max and to
32 // std::min() and std::max() have to be written with parenthesis around the
37 // against multiple inclusions, no STL header will see our own min/max macro
46 // To test that all calls from Eigen code to std::min() and std::max() are
47 // protected by parenthesis against macro expansion, the min()/max() macro
51 #define max macro
    [all...]
  /external/freetype/src/cff/
cf2hints.h 91 CF2_Fixed max; member in struct:CF2_StemHintRec_
  /external/freetype/src/pshinter/
pshrec.c 681 FT_UInt max = dim->hints.num_hints; local
685 for ( idx = 0; idx < max; idx++, hint++ )
692 if ( idx >= max )
  /external/gemmlowp/internal/
fixedpoint.h 172 return overflow ? std::numeric_limits<int32_t>::max() : ab_x2_high32;
188 const int64_t max = std::numeric_limits<int32_t>::max(); local
189 return x >= (1 << (31 - Exponent)) ? max : x <= -(1 << (31 - Exponent))
244 return std::numeric_limits<ScalarRawType>::max();
404 std::min(std::max(round(x * double(1ll << F::kFractionalBits)),
  /external/guava/guava/src/com/google/common/collect/
Ordering.java 74 * <li>{@link #min} / {@link #max}
537 public <E extends T> E max(Iterator<E> iterator) { method in class:Ordering
542 maxSoFar = max(maxSoFar, iterator.next());
557 public <E extends T> E max(Iterable<E> iterable) { method in class:Ordering
558 return max(iterable.iterator());
566 * implementations of the other {@code max} overloads, so overriding it will
574 public <E extends T> E max(@Nullable E a, @Nullable E b) { method in class:Ordering
589 public <E extends T> E max( method in class:Ordering
591 E maxSoFar = max(max(a, b), c)
    [all...]
Range.java 348 C max = min; local
352 max = Ordering.natural().max(max, value);
354 return closed(min, max);
  /external/guava/guava/src/com/google/common/primitives/
Doubles.java 232 * of comparison as {@link Math#max(double, double)}.
239 public static double max(double... array) { method in class:Doubles
241 double max = array[0]; local
243 max = Math.max(max, array[i]);
245 return max;
Ints.java 253 public static int max(int... array) { method in class:Ints
255 int max = array[0]; local
257 if (array[i] > max) {
258 max = array[i];
261 return max;
Longs.java 220 public static long max(long... array) { method in class:Longs
222 long max = array[0]; local
224 if (array[i] > max) {
225 max = array[i];
228 return max;
  /external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/
Ints.java 252 public static int max(int... array) { method in class:Ints
254 int max = array[0]; local
256 if (array[i] > max) {
257 max = array[i];
260 return max;

Completed in 705 milliseconds

<<31323334353637383940>>