Searched defs:MIN (Results 1 - 25 of 52) sorted by relevance

123

/external/libpng/contrib/gregbook/
H A Dreadpng.h63 # define MIN(a,b) ((a) < (b)? (a) : (b)) macro
H A Dreadpng2.h63 # define MIN(a,b) ((a) < (b)? (a) : (b)) macro
H A Dwritepng.h63 # define MIN(a,b) ((a) < (b)? (a) : (b)) macro
/external/elfcopy/
H A Dcommon.h10 #define MIN(a,b) ((a)<(b)?(a):(b)) /* no side effects in arguments allowed! */ macro
/external/libpng/
H A Dpngrio.c78 #define MIN(a,b) (a <= b ? a : b) macro
110 read = MIN(NEAR_BUF_SIZE, remaining);
H A Dpngwio.c72 #define MIN(a,b) (a <= b ? a : b) macro
103 written = MIN(NEAR_BUF_SIZE, remaining);
/external/qemu/distrib/libpng-1.2.19/
H A Dpngrio.c71 #define MIN(a,b) (a <= b ? a : b) macro
101 read = MIN(NEAR_BUF_SIZE, remaining);
H A Dpngwio.c65 #define MIN(a,b) (a <= b ? a : b) macro
95 written = MIN(NEAR_BUF_SIZE, remaining);
/external/clearsilver/util/
H A Dneo_misc.h105 #ifndef MIN
106 #define MIN(x,y) (((x) < (y)) ? (x) : (y)) macro
/external/dropbear/libtomcrypt/src/headers/
H A Dtomcrypt_macros.h411 #ifndef MIN
412 #define MIN(x, y) ( ((x)<(y))?(x):(y) ) macro
/external/iproute2/tc/
H A Dtc_util.h10 #ifndef MIN
11 #define MIN(x,y) ((x)<(y)?(x):(y)) macro
/external/qemu/
H A Dosdep.h39 #ifndef MIN
40 #define MIN(a, b) (((a) < (b)) ? (a) : (b)) macro
/external/icu4c/test/intltest/
H A Dmnkytst.cpp22 #ifndef MIN
23 #define MIN(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/speex/libspeex/
H A D_kiss_fft_guts.h15 #define MIN(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))))
H A Dpseudofloat.h63 #define MIN(a,b) ((a)<(b)?(a):(b)) macro
106 r.m = ((a).m>>1) + ((b).m>>MIN(15,(a).e-(b).e+1));
111 r.m = ((b).m>>1) + ((a).m>>MIN(15,(b).e-(a).e+1));
141 r.m = ((a).m>>1) - ((b).m>>MIN(15,(a).e-(b).e+1));
146 r.m = ((a).m>>MIN(15,(b).e-(a).e+1)) - ((b).m>>1);
174 return ((a).m>>1) < ((b).m>>MIN(15,(a).e-(b).e+1));
176 return ((b).m>>1) > ((a).m>>MIN(15,(b).e-(a).e+1));
/external/bluetooth/glib/glib/
H A Dgmacros.h193 #undef MIN macro
194 #define MIN(a, b) (((a) < (b)) ? (a) : (b)) macro
/external/bsdiff/
H A Dbsdiff.c41 #define MIN(x,y) (((x)<(y)) ? (x) : (y)) macro
171 if(memcmp(old+I[x],new,MIN(oldsize-I[x],newsize))<0) {
/external/dropbear/libtommath/
H A Dtommath.h26 #ifndef MIN
27 #define MIN(x,y) ((x)<(y)?(x):(y)) macro
/external/elfutils/libebl/
H A Deblgstrtab.c30 #ifndef MIN
31 # define MIN(a, b) ((a) < (b) ? (a) : (b)) macro
198 (MIN ((*sep)->len, newstr->len) - 1) * (*sep)->width);
H A Deblstrtab.c31 #ifndef MIN
32 # define MIN(a, b) ((a) < (b) ? (a) : (b)) macro
193 MIN ((*sep)->len, newstr->len) - 1);
H A Deblwstrtab.c32 #ifndef MIN
33 # define MIN(a, b) ((a) < (b) ? (a) : (b)) macro
193 MIN ((*sep)->len, newstr->len) - 1);
/external/quake/quake/src/QW/scitech/include/
H A Ddebug.h225 #ifndef MIN
226 # define MIN(a,b) ( ((a) < (b)) ? (a) : (b)) macro
/external/quake/quake/src/WinQuake/scitech/INCLUDE/
H A DDEBUG.H225 #ifndef MIN
226 # define MIN(a,b) ( ((a) < (b)) ? (a) : (b)) macro
/external/srec/portable/include/
H A Dptypes.h33 #ifndef MIN
34 #define MIN(A,B) ((A)<(B)?(A):(B)) macro
/external/srec/srec/include/
H A Dall_defs.h95 #ifndef MIN
96 #define MIN(X,Y) ((X) < (Y) ? (X) : (Y)) macro

Completed in 778 milliseconds

123