HomeSort by relevance Sort by last modified time
    Searched defs:max (Results 101 - 125 of 3625) sorted by null

1 2 3 45 6 7 8 91011>>

  /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 Word16 max; local
201 max = -32767;
204 if (*(tmp2 + j) >= max)
206 max = *(tmp2 + j);
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
cor_h_x2.cpp 173 Word32 s, y32[L_CODE], max, tot;
181 max = 0;
191 if (L_sub (s, max) > (Word32) 0L)
192 max = s;
194 tot = L_add (tot, L_shr (max, 1));
244 Word32 max; local
252 max = 0;
266 if (s > max)
268 max = s;
271 tot = (tot + (max >> 1))
    [all...]
  /tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/
ZipFieldInvariantMaxValue.java 27 private long max; field in class:ZipFieldInvariantMaxValue
32 * @param max the maximum value allowed for the field
34 ZipFieldInvariantMaxValue(int max) {
35 this.max = max;
40 return value <= max;
45 return "Maximum value " + max;
  /art/test/053-wait-some/src/
Main.java 66 long max = delay + epsilon; local
71 } else if (elapsed > max) {
73 + "elapsed=" + elapsed + " max=" + max);
  /art/test/574-irreducible-and-constant-area/src/
Main.java 32 Math.max(a, b);
38 Math.max(a, b);
  /bionic/libc/kernel/uapi/linux/
atm_nicstar.h 29 unsigned max; member in struct:buf_nr
  /bionic/tests/
sys_select_test.cpp 89 int max = STDERR_FILENO + 1; local
91 // Invalid max fd.
95 int num_fds = select(max, &r, &w, &e, NULL);
110 ASSERT_EQ(-1, select(max, &r, &w, &e, &tv));
144 int max = STDERR_FILENO + 1; local
146 // Invalid max fd.
153 int num_fds = pselect(max, &r, &w, &e, NULL, &ss);
165 ASSERT_EQ(-1, pselect(max, &r, &w, &e, &tv, &ss));
  /dalvik/libdex/
DexCatch.cpp 54 // Note: Signed type is important for max and min.
56 int max = triesSize - 1; local
58 while (max >= min) {
59 int guess = (min + max) >> 1;
64 max = guess - 1;
DexDataMap.cpp 52 map->max = maxCount;
77 assert(map->count < map->max);
98 // Note: Signed type is important for max and min.
100 int max = map->count - 1; local
103 while (max >= min) {
104 int guessIdx = (min + max) >> 1;
108 max = guessIdx - 1;
  /device/google/accessory/arduino/AndroidAccessory/
AndroidAccessory.h 31 MAX3421E max; member in class:AndroidAccessory
  /device/google/cuttlefish_common/guest/hals/camera/
EmulatedFakeCamera.cpp 28 #undef max macro
  /external/ImageMagick/MagickCore/
opencl.h 39 max, member in struct:_KernelProfileRecord
  /external/aac/libSBRenc/src/
env_bit.cpp 115 #ifndef max
116 #define max(a, b) (a > b ? a : b) macro
  /external/adhd/cras/src/dsp/
dsp_util.c 8 #ifndef max
9 #define max(a, b) ({ __typeof__(a) _a = (a); \ macro
80 * to the min or max value that fits an int.
123 *output++ = max(-32768, min(32767, (int)(f)));
126 *output++ = max(-32768, min(32767, (int)(f)));
184 * to the min or max value that fits an int.
238 *output++ = max(-32768, min(32767, (int)(f)));
241 *output++ = max(-32768, min(32767, (int)(f)));
367 *output++ = max(-32768, min(32767, (int)(f)));
370 *output++ = max(-32768, min(32767, (int)(f)))
    [all...]
  /external/adhd/cras/src/dsp/tests/
cmpraw.c 17 static inline double max(double a, double b) function
49 maxdiff = max(fabs(data1[i] - data2[i]), maxdiff);
52 printf("avg diff = %g, max diff = %g, changed = %.3f%%\n",
  /external/annotation-tools/asmx/src/org/objectweb/asm/tree/
TableSwitchInsnNode.java 55 public int max; field in class:TableSwitchInsnNode
72 * @param max the maximum key value.
79 final int max,
85 this.max = max;
96 mv.visitTableSwitchInsn(min, max, dflt, labels);
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3cyclicdfa.h 80 const ANTLR3_INT32 * const max; member in struct:ANTLR3_CYCLIC_DFA_struct
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
Stats.cs 104 public static int max(int[] X) { method in class:Antlr.Runtime.Misc.Stats
105 return EnumerableExtensions.Max(EnumerableExtensions.DefaultIfEmpty(X, int.MinValue));
  /external/apache-commons-math/src/main/java/org/apache/commons/math/exception/
NumberIsTooLargeException.java 36 private final Number max; field in class:NumberIsTooLargeException
46 * @param max maximum.
50 Number max,
52 this(null, wrong, max, boundIsAllowed);
59 * @param max maximum.
64 Number max,
70 wrong, max);
72 this.max = max;
87 return max;
    [all...]
  /external/curl/docs/examples/
ftpuploadfrommem.c 49 size_t max = size*nmemb; local
51 if(max < 1)
55 size_t copylen = max;
  /external/e2fsprogs/misc/
e2freefrag.h 18 unsigned long min, max, avg; /* chunk size stats */ member in struct:chunk_info
  /external/eigen/test/
sparse.h 23 #ifdef max
24 #undef max macro
  /external/fio/lib/
lfsr.c 114 * a. Return if the number of max values has been exceeded.
191 uint64_t max = (fl->cached_bit << 1) - 1; local
198 x = max / (spin + 1);
199 y = max % (spin + 1);
  /external/freetype/src/pfr/
pfrcmap.c 74 FT_UInt max = cmap->num_chars; local
77 while ( min < max )
83 mid = min + ( max - min ) / 2;
92 max = mid;
109 FT_UInt max = cmap->num_chars; local
114 while ( min < max )
116 mid = min + ( ( max - min ) >> 1 );
135 max = mid;
  /external/guava/guava/src/com/google/common/collect/
ReverseNaturalOrdering.java 46 // Override the min/max methods to "hoist" delegation outside loops
49 return NaturalOrdering.INSTANCE.max(a, b);
53 return NaturalOrdering.INSTANCE.max(a, b, c, rest);
57 return NaturalOrdering.INSTANCE.max(iterator);
61 return NaturalOrdering.INSTANCE.max(iterable);
64 @Override public <E extends Comparable> E max(E a, E b) { method in class:ReverseNaturalOrdering
68 @Override public <E extends Comparable> E max(E a, E b, E c, E... rest) { method in class:ReverseNaturalOrdering
72 @Override public <E extends Comparable> E max(Iterator<E> iterator) { method in class:ReverseNaturalOrdering
76 @Override public <E extends Comparable> E max(Iterable<E> iterable) { method in class:ReverseNaturalOrdering

Completed in 779 milliseconds

1 2 3 45 6 7 8 91011>>