/vbox/src/VBox/Runtime/r3/haiku/ |
H A D | rtProcInitExePath-haiku.cpp | 55 int rc = rtPathFromNativeCopy(pszPath, MIN(cchPath, MAXPATHLEN), ImageInfo.name, NULL); 56 AssertMsgRCReturn(rc, ("rc=%Rrc pszLink=\"%s\"\nhex: %.*Rhxs\n", rc, pszPath, MIN(cchPath, MAXPATHLEN), pszPath), rc);
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/ |
H A D | OScompiler.h | 34 #define MIN(a,b) (((a)<(b))?(a):(b)) macro
|
H A D | rootlessCommon.h | 117 #undef MIN macro 118 #define MIN(x,y) ((x) < (y) ? (x) : (y)) macro
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/ |
H A D | OScompiler.h | 33 #define MIN(a,b) (((a)<(b))?(a):(b)) macro
|
H A D | rootlessCommon.h | 117 #undef MIN macro 118 #define MIN(x,y) ((x) < (y) ? (x) : (y)) macro
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/ |
H A D | OScompiler.h | 33 #define MIN(a,b) (((a)<(b))?(a):(b)) macro
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/ |
H A D | OScompiler.h | 35 #define MIN(a,b) (((a)<(b))?(a):(b)) macro
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/ |
H A D | OScompiler.h | 35 #define MIN(a,b) (((a)<(b))?(a):(b)) macro
|
/vbox/src/libs/libpng-1.2.8/contrib/gregbook/ |
H A D | readpng.h | 39 # define MIN(a,b) ((a) < (b)? (a) : (b)) macro
|
H A D | readpng2.h | 39 # define MIN(a,b) ((a) < (b)? (a) : (b)) macro
|
H A D | writepng.h | 39 # define MIN(a,b) ((a) < (b)? (a) : (b)) macro
|
/vbox/src/VBox/Additions/x11/x11include/4.3/include/extensions/ |
H A D | xtrapddmi.h | 49 #ifndef MIN 50 # define MIN(a,b) ((a) < (b) ? (a) : (b)) macro
|
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.1/Objects/stringlib/ |
H A D | localeutil.h | 10 #undef MIN macro 13 #define MIN(x, y) ((x) < (y) ? (x) : (y)) macro 149 l = MIN(l, MAX(MAX(remaining, min_width), 1)); 151 n_chars = MAX(0, MIN(remaining, l)); 181 n_chars = MAX(0, MIN(remaining, l));
|
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.2/Objects/stringlib/ |
H A D | localeutil.h | 21 #undef MIN macro 24 #define MIN(x, y) ((x) < (y) ? (x) : (y)) macro 160 l = MIN(l, MAX(MAX(remaining, min_width), 1)); 162 n_chars = MAX(0, MIN(remaining, l)); 192 n_chars = MAX(0, MIN(remaining, l));
|
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Application/Shell/ |
H A D | ShellParametersProtocol.c | 640 FirstLocation = MIN(CommandLineWalker, FirstLocation); 649 FirstLocation = MIN(CommandLineWalker, FirstLocation); 657 FirstLocation = MIN(CommandLineWalker, FirstLocation); 665 FirstLocation = MIN(CommandLineWalker, FirstLocation); 674 FirstLocation = MIN(CommandLineWalker, FirstLocation); 684 FirstLocation = MIN(CommandLineWalker, FirstLocation); 697 FirstLocation = MIN(CommandLineWalker, FirstLocation); 710 FirstLocation = MIN(CommandLineWalker, FirstLocation); 724 FirstLocation = MIN(CommandLineWalker, FirstLocation); 738 FirstLocation = MIN(CommandLineWalke [all...] |
/vbox/src/VBox/RDP/client-1.8.3/ |
H A D | channels.c | 104 thislength = MIN(length, CHANNEL_CHUNK_LENGTH); 123 thislength = MIN(remaining, CHANNEL_CHUNK_LENGTH); 186 thislength = MIN(s->end - s->p, in->data + in->size - in->p);
|
H A D | rdesktop.h | 180 #ifndef MIN 181 #define MIN(x,y) (((x) < (y)) ? (x) : (y)) macro
|
/vbox/src/libs/libpng-1.2.8/ |
H A D | pngrio.c | 68 #define MIN(a,b) (a <= b ? a : b) macro 97 read = MIN(NEAR_BUF_SIZE, remaining);
|
H A D | pngwio.c | 64 #define MIN(a,b) (a <= b ? a : b) macro 93 written = MIN(NEAR_BUF_SIZE, remaining);
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Stdio/ |
H A D | fvwrite.c | 87 //#define MIN(a, b) ((a) < (b) ? (a) : (b)) 108 (int)MIN(len, BUFSIZ)); 152 COPY(w); /* copy MIN(fp->_w,len), */ 184 * that the amount to write is MIN(len,nldist). 195 s = (int)(MIN((int)len, nldist));
|
/vbox/src/VBox/Devices/PC/ipxe/src/tests/ |
H A D | time_test.c | 50 * @v MIN Minutes [0,59] 67 #define MKTIME_TEST( name, SEC, MIN, HOUR, MDAY, MON, YEAR, WDAY, \ 72 .tm_min = MIN, \
|
/vbox/src/VBox/Additions/x11/x11include/libx11-1.1.5-other/X11/ |
H A D | Xregion.h | 67 #ifndef MIN 68 #define MIN(a,b) (((a) < (b)) ? (a) : (b)) macro
|
/vbox/src/recompiler/ |
H A D | osdep.h | 101 #ifndef MIN 102 #define MIN(a, b) (((a) < (b)) ? (a) : (b)) macro
|
/vbox/src/VBox/GuestHost/OpenGL/util/ |
H A D | bbox.c | 215 #define MIN(a, b) ((a) < (b) ? (a) : (b)) macro 225 result->x1 = MIN(a->x1, b->x1); 227 result->y1 = MIN(a->y1, b->y1);
|
/vbox/src/VBox/Runtime/r0drv/darwin/ |
H A D | the-darwin-kernel.h | 36 #undef MIN macro
|