Home
last modified time | relevance | path

Searched refs:MAX (Results 1 – 3 of 3) sorted by relevance

/ndk/tests/device/test-openmp/jni/
Dfib.c6 #define MAX 33 //41 macro
30 {int FibNumber[MAX] = {0}; in main()
44 for(i = 1; i < MAX; i++) { in main()
52 for(i = 0; i < MAX; i++) in main()
/ndk/sources/android/support/src/stdio/
Dvfprintf.c40 #define MAX(a,b) ((a)>(b) ? (a) : (b)) macro
257 return MAX(w, 3+pl); in fmt_fp()
311 return MAX(w, pl+l); in fmt_fp()
405 p = MIN(p,MAX(0,9*(z-r-1)-j)); in fmt_fp()
407 p = MIN(p,MAX(0,9*(z-r-1)+e-j)); in fmt_fp()
459 return MAX(w, pl+l); in fmt_fp()
591 p = MAX(p, 2*sizeof(void*)); in printf_core()
619 p = MAX(p, z-a + !arg.i); in printf_core()
/ndk/sources/host-tools/make-3.81/
Dmake.h536 #ifndef MAX
537 #define MAX(_a,_b) ((_a)>(_b)?(_a):(_b)) macro