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

<<31323334353637383940>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
stl_algobase.h 216 max(const _Tp& __a, const _Tp& __b) function
260 max(const _Tp& __a, const _Tp& __b, _Compare __comp) function
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
stl_algobase.h 216 max(const _Tp& __a, const _Tp& __b) function
260 max(const _Tp& __a, const _Tp& __b, _Compare __comp) function
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
stl_algobase.h 216 max(const _Tp& __a, const _Tp& __b) function
260 max(const _Tp& __a, const _Tp& __b, _Compare __comp) function
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
mhlib.py 338 return max(seqs['cur'])
396 return all[max(0, i-count):i]
819 self.pairs[i-1:i+1] = [(alo, max(ahi, bhi))]
851 def max(self): member in class:IntSet
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
mhlib.py 338 return max(seqs['cur'])
396 return all[max(0, i-count):i]
819 self.pairs[i-1:i+1] = [(alo, max(ahi, bhi))]
851 def max(self): member in class:IntSet
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
stl_algobase.h 217 max(const _Tp& __a, const _Tp& __b) function
261 max(const _Tp& __a, const _Tp& __b, _Compare __comp) function
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mhlib.py 338 return max(seqs['cur'])
396 return all[max(0, i-count):i]
819 self.pairs[i-1:i+1] = [(alo, max(ahi, bhi))]
851 def max(self): member in class:IntSet
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mhlib.py 338 return max(seqs['cur'])
396 return all[max(0, i-count):i]
819 self.pairs[i-1:i+1] = [(alo, max(ahi, bhi))]
851 def max(self): member in class:IntSet
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
arena.h 35 #ifdef max
36 #undef max // Visual Studio defines this macro macro
153 // Constants define default starting block size and max block size for
438 std::numeric_limits<size_t>::max() / sizeof(T))
632 std::numeric_limits<size_t>::max() / sizeof(T))
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
ExplodedRenderingHelper.java 178 * the layout, while the max is taken for the other direction.
192 // the axis in which we take the max of the padding of the children
195 int max = -1; local
198 if (max == -1 || max < p[maxIndex]) {
199 max = p[maxIndex];
202 resultPadding[maxIndex] = max;
  /system/core/adb/
file_sync_client.cpp 105 max = SYNC_DATA_MAX; // TODO: decide at runtime.
233 int bytes_read = adb_read(lfd, sbuf.data, max);
388 // TODO: add a char[max] buffer here, to replace syncsendbuf...
390 size_t max; member in class:SyncConnection
553 if (msg.data.size > sc.max) {
554 sc.Error("msg.data.size too large: %u (max %zu)", msg.data.size, sc.max);
    [all...]
  /system/core/libpixelflinger/
pixelflinger.cpp 78 static inline int max(int a, int b) CONST;
79 static inline int max(int a, int b) { function in namespace:android
603 c->state.scissor.left = max(0, l);
605 c->state.scissor.top = max(0, t);
  /system/core/logcat/tests/
logcat_test.cpp 353 int size, consumed, max, payload; local
357 size = consumed = max = payload = 0;
361 " max entry is %db, max payload is %db",
363 &max, &payload)) {
396 EXPECT_GT(full_size, max);
397 EXPECT_GT(max, payload);
400 && (full_size > max)
401 && (max > payload)) {
973 snprintf(buffer, sizeof(buffer), "logcat --pid %d -d --max-count 3", getpid())
    [all...]
  /toolchain/binutils/binutils-2.25/gprof/
hist.c 412 MIN (bin_high_pc, sym_high_pc) - MAX (bin_low_pc, sym_low_pc);
685 #if ! defined(max) macro
686 #define max(a,b) (((a)>(b)) ? (a) : (b))
704 common_low = max (histograms[i].lowpc, *p_lowpc);
  /art/compiler/optimizing/
induction_var_analysis.cc 756 const int64_t max = Primitive::MaxValueOfIntegralType(type); local
762 (IsAtMost(upper_expr, &value) && value <= (max - stride_value + 1));
764 return (IsAtMost(upper_expr, &value) && value <= (max - stride_value));
782 int64_t max = Primitive::MaxValueOfIntegralType(type); local
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
MediaCodecCapabilitiesTest.java 562 boolean isEncoder, String name, String mime, CodecCapabilities caps, int max) {
568 for (int i = 0; i < max; ++i) {
645 int max = caps.getMaxSupportedInstances(); local
646 Log.d(TAG, "getMaxSupportedInstances returns " + max);
647 assertTrue(max > 0);
651 Log.d(TAG, "actualMax " + actualMax + " vs reported max " + max);
652 if (actualMax < (int)(max * 0.9) || actualMax > (int) Math.ceil(max * 1.1)) {
655 String limit = " <Limit name=\"concurrent-instances\" max=\""
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
PresentationActivity.java 519 drawable.setGradientRadius(Math.max(p.x, p.y) / 2);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
ArrayRealVector.java 746 double max = 0; local
748 max = FastMath.max(max, FastMath.abs(a));
750 return max;
857 double max = 0; local
860 max = FastMath.max(max, FastMath.abs(delta));
862 return max;
871 double max = 0; local
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
SummaryStatistics.java 27 import org.apache.commons.math.stat.descriptive.rank.Max;
79 /** max of values that have been added */
80 protected Max max = new Max(); field in class:SummaryStatistics
104 private StorelessUnivariateStatistic maxImpl = max;
317 outBuffer.append("max: ").append(getMax()).append(endl);
681 if (source.max == source.maxImpl) {
682 dest.max = (Max) dest.maxImpl
    [all...]
  /external/autotest/client/deps/iwcap/src/
iwcap.c 237 unsigned int mcs_bit, max; local
239 max = 0;
250 if (mcs_bit > max)
251 max = mcs_bit;
253 return max;
343 int max = get_max_mcs(&mcs[0]); local
344 if (max > max_mcs)
345 max_mcs = max;
  /external/autotest/client/tests/cyclictest/src/
cyclictest.c 76 long max; member in struct:thread_stat
318 if (diff > stat->max)
319 stat->max = diff;
504 "Min:%7ld Act:%5ld Avg:%5ld Max:%8ld\n",
508 (long)(stat->avg/stat->cycles) : 0, stat->max);
576 stat[i].max = -1000000;
  /external/bison/lib/
ebitset.c 118 #undef max macro
120 #define max(a, b) ((a) > (b) ? (a) : (b)) macro
1045 ebitset_resize (dst, max (BITSET_NBITS_ (src1), BITSET_NBITS_ (src2)));
  /external/bison/src/
tables.c 326 int max = 0; local
337 if (count > max)
339 max = count;
350 if (max > 0)
536 size_t max = 0; local
548 if (state_count[s] > max)
550 max = state_count[s];
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
PKIXNameConstraintValidator.java 653 byte[] max;
654 max = min(minMax[1], minMax[3]);
655 min = max(minMax[0], minMax[2]);
657 // minimum IP address must be bigger than max
658 if (compareTo(min, max) == 1)
720 * min and max IP address of the first/second IP address and its
1730 private static byte[] max(byte[] ip1, byte[] ip2) method in class:PKIXNameConstraintValidator
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
PKIXNameConstraintValidator.java 384 byte[] max;
385 max = min(minMax[1], minMax[3]);
386 min = max(minMax[0], minMax[2]);
388 // minimum IP address must be bigger than max
389 if (compareTo(min, max) == 1)
451 * min and max IP address of the first/second IP address and its
1650 private static byte[] max(byte[] ip1, byte[] ip2) method in class:PKIXNameConstraintValidator
    [all...]

Completed in 1278 milliseconds

<<31323334353637383940>>