Searched defs:MAX (Results 26 - 50 of 102) sorted by relevance

12345

/external/chromium_org/third_party/icu/source/test/intltest/
H A Dmnkytst.cpp26 #ifndef MAX
27 #define MAX(x,y) ((x) > (y) ? (x) : (y)) macro
86 source.extract(MIN(s, slen), MAX(s, slen), subs);
87 source.extract(MIN(t, tlen), MAX(t, tlen), subt);
161 source.extract(MIN(s, slen), MAX(s, slen), subs);
162 source.extract(MIN(t, tlen), MAX(t, tlen), subt);
/external/giflib/
H A Dgifalloc.c13 #define MAX(x, y) (((x) > (y)) ? (x) : (y)) macro
127 ColorUnion = GifMakeMapObject(MAX(ColorIn1->ColorCount,
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
H A DTimeUnit.java26 public long toNanos(long d) { return x(d, C1/C0, MAX/(C1/C0)); }
37 public long toNanos(long d) { return x(d, C2/C0, MAX/(C2/C0)); }
38 public long toMicros(long d) { return x(d, C2/C1, MAX/(C2/C1)); }
48 public long toNanos(long d) { return x(d, C3/C0, MAX/(C3/C0)); }
49 public long toMicros(long d) { return x(d, C3/C1, MAX/(C3/C1)); }
50 public long toMillis(long d) { return x(d, C3/C2, MAX/(C3/C2)); }
59 public long toNanos(long d) { return x(d, C4/C0, MAX/(C4/C0)); }
60 public long toMicros(long d) { return x(d, C4/C1, MAX/(C4/C1)); }
61 public long toMillis(long d) { return x(d, C4/C2, MAX/(C4/C2)); }
62 public long toSeconds(long d) { return x(d, C4/C3, MAX/(C
101 static final long MAX = Long.MAX_VALUE; field in class:TimeUnit
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dmnkytst.cpp26 #ifndef MAX
27 #define MAX(x,y) ((x) > (y) ? (x) : (y)) macro
86 source.extract(MIN(s, slen), MAX(s, slen), subs);
87 source.extract(MIN(t, tlen), MAX(t, tlen), subt);
161 source.extract(MIN(s, slen), MAX(s, slen), subs);
162 source.extract(MIN(t, tlen), MAX(t, tlen), subt);
/external/libpng/contrib/gregbook/
H A Dreadpng2.h61 #ifndef MAX
62 # define MAX(a,b) ((a) > (b)? (a) : (b)) macro
H A Dwritepng.h61 #ifndef MAX
62 # define MAX(a,b) ((a) > (b)? (a) : (b)) macro
/external/skia/src/effects/
H A DSkAvoidXfermode.cpp84 int MAX, mask; local
88 MAX = 255;
91 MAX = 0;
97 d = MAX + (d ^ mask) - mask;
133 int MAX, mask; local
137 MAX = 31;
140 MAX = 0;
146 d = MAX + (d ^ mask) - mask;
/external/speex/libspeex/
H A D_kiss_fft_guts.h16 #define MAX(a,b) ((a)>(b) ? (a):(b)) macro
133 # define KISS_FFT_COS(phase) floor(MIN(32767,MAX(-32767,.5+32768 * cos (phase))))
134 # define KISS_FFT_SIN(phase) floor(MIN(32767,MAX(-32767,.5+32768 * sin (phase))))
/external/chromium_org/third_party/skia/src/effects/
H A DSkAvoidXfermode.cpp90 int MAX, mask; local
94 MAX = 255;
97 MAX = 0;
103 d = MAX + (d ^ mask) - mask;
139 int MAX, mask; local
143 MAX = 31;
146 MAX = 0;
152 d = MAX + (d ^ mask) - mask;
/external/guava/guava/src/com/google/common/base/
H A DAscii.java403 public static final int MAX = 127; field in class:Ascii
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtestpalette.c30 #ifndef MAX
31 #define MAX(a, b) ((a) > (b) ? (a) : (b)) macro
91 int v = MAX(d, -2);
/external/qemu/include/qemu/
H A Dosdep.h67 #ifndef MAX
68 #define MAX(a, b) (((a) > (b)) ? (a) : (b)) macro
/external/srec/portable/include/
H A Dptypes.h30 #ifndef MAX
31 #define MAX(A,B) ((A)>(B)?(A):(B)) macro
/external/srec/srec/include/
H A Dall_defs.h92 #ifndef MAX
93 #define MAX(X,Y) ((X) > (Y) ? (X) : (Y)) macro
/external/valgrind/main/drd/tests/
H A Dunit_bitmap.c20 #ifndef MAX
21 #define MAX(x, y) ((x) > (y) ? (x) : (y)) macro
217 DRD_(bm_clear_load)(bm1, i, i + MAX(1, ADDR_GRANULARITY));
220 DRD_(bm_clear_load)(bm1, i, i + MAX(2, ADDR_GRANULARITY));
223 DRD_(bm_clear_load)(bm1, i, i + MAX(4, ADDR_GRANULARITY));
226 DRD_(bm_clear_load)(bm1, i, i + MAX(8, ADDR_GRANULARITY));
233 DRD_(bm_clear_store)(bm1, i, i + MAX(1, ADDR_GRANULARITY));
236 DRD_(bm_clear_store)(bm1, i, i + MAX(2, ADDR_GRANULARITY));
239 DRD_(bm_clear_store)(bm1, i, i + MAX(4, ADDR_GRANULARITY));
242 DRD_(bm_clear_store)(bm1, i, i + MAX(
[all...]
/external/bluetooth/bluedroid/udrv/ulinux/
H A Duipc.c61 #define MAX(a,b) ((a)>(b)?(a):(b)) macro
225 uipc_main.max_fd = MAX(uipc_main.max_fd, uipc_main.signal_fds[0]);
298 uipc_main.max_fd = MAX(uipc_main.max_fd, uipc_main.ch[ch_id].fd);
362 uipc_main.max_fd = MAX(uipc_main.max_fd, fd);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/cso_cache/
H A Dcso_hash.c38 #define MAX(a, b) ((a > b) ? (a) : (b)) macro
185 int max = MAX(hash->numBits-2, hash->userNumBits);
/external/libxml2/
H A Dtimsort.h41 #ifndef MAX
42 #define MAX(x,y) (((x) > (y) ? (x) : (y))) macro
81 const int shift = MAX(top_bit, 6) - 6;
/external/mesa3d/src/gallium/auxiliary/cso_cache/
H A Dcso_hash.c38 #define MAX(a, b) ((a > b) ? (a) : (b)) macro
185 int max = MAX(hash->numBits-2, hash->userNumBits);
/external/chromium_org/third_party/libjpeg_turbo/
H A Djpegint.h267 #undef MAX macro
268 #define MAX(a,b) ((a) > (b) ? (a) : (b)) macro
/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_onefile.c251 #define MAX(x,y) ((x)>(y)?(x):(y)) macro
300 pTmp->nSize = MAX(pTmp->nSize, iOfst+iAmt);
456 pReal->nDatabase = MAX(pReal->nDatabase, iAmt+iOfst);
478 pReal->nJournal = MAX(pReal->nJournal, iAmt+iOfst);
824 fs_vfs.base.szOsFile = MAX(sizeof(tmp_file), sizeof(fs_file));
/external/harfbuzz_ng/util/
H A Doptions.hh73 #undef MAX macro
74 template <typename Type> static inline Type MAX (const Type &a, const Type &b) { return a > b ? a : b; } function
/external/jpeg/
H A Djpegint.h296 #undef MAX macro
297 #define MAX(a,b) ((a) > (b) ? (a) : (b)) macro
/external/libvpx/libvpx/vp8/decoder/
H A Derror_concealment.c20 #define MAX(x,y) (((x)>(y))?(x):(y)) macro
98 const int int_top = MAX(b1_row, b2_row); // top
99 const int int_left = MAX(b1_col, b2_col); // left
129 const int blk_idx = MAX(rel_ol_blk_row,0) * 4 + MAX(rel_ol_blk_col,0);
/external/pdfium/core/include/thirdparties/libjpeg/
H A Djpegint.h266 #undef MAX macro
267 #define MAX(a,b) ((a) > (b) ? (a) : (b)) macro

Completed in 493 milliseconds

12345