/external/opencv3/modules/imgcodecs/src/ |
precomp.hpp | 72 #undef max macro
|
/external/opencv3/modules/videostab/src/ |
clp.hpp | 59 // Clp replaces min and max with ?: globally, we can't use std::min and std::max in case 62 #undef max macro
|
/external/skia/src/core/ |
SkAlphaRuns.cpp | 29 int max = (y + 1) * maxStep - (y == maxStep - 1); local 35 SkASSERT(*alpha <= max);
|
/external/skia/src/views/unix/ |
keysym2ucs.c | 821 int max = sizeof(keysymtab) \/ sizeof(struct codepair) - 1; local [all...] |
/external/tremolo/Tremolo/ |
os.h | 78 #ifndef max 79 # define max(x,y) ((x)<(y)?(y):(x)) macro
|
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/ |
frame_classify.c | 27 /* (o) Index to the max-energy sub frame */ 32 int16_t max, scale; local 48 max = WebRtcSpl_MaxAbsValueW16(residualFIX, iLBCenc_inst->blockl); 49 scale = WebRtcSpl_GetSizeInBits((uint32_t)(max * max));
|
/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...] |
/hardware/ti/omap4-aah/libtiutils/ |
UtilsCommon.h | 46 const T & max(const T & a, const T & b); 49 const T & bound(const T & min, const T & x, const T & max); 77 inline const T & max(const T & a, const T & b) { function in namespace:Ti 82 inline const T & bound(const T & min, const T & x, const T & max) { 83 return x < min ? min : x > max ? max : x;
|
/libcore/luni/src/test/java/libcore/java/lang/ |
ShortTest.java | 23 final short max = Short.MAX_VALUE; local 24 assertTrue(Short.compare(max, max) == 0); 27 assertTrue(Short.compare(max, zero) > 0); 28 assertTrue(Short.compare(max, min) > 0); 29 assertTrue(Short.compare(zero, max) < 0); 32 assertTrue(Short.compare(min, max) < 0);
|
/system/extras/perfprofd/quipper/ |
perf_internals.h | 35 #undef max macro
|
/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 | 31 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));
|
/cts/tests/tests/dpi/src/android/dpi/cts/ |
AspectRatioTest.java | 69 int max = Math.max(metrics.widthPixels, metrics.heightPixels); local 71 return (double) max / min;
|
/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;
|
/development/ndk/platforms/android-21/include/linux/ |
atm_nicstar.h | 32 unsigned max; member in struct:buf_nr
|
/device/google/accessory/arduino/AndroidAccessory/ |
AndroidAccessory.h | 31 MAX3421E max; member in class:AndroidAccessory
|
/device/google/dragon/audio/hal/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/aac/libSBRenc/src/ |
env_bit.cpp | 97 #ifndef max 98 #define max(a,b) ( a > b ? a:b) macro
|
/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...] |