Searched refs:MIN (Results 1 - 25 of 126) sorted by relevance

123456

/vbox/src/VBox/Runtime/r3/haiku/
H A DrtProcInitExePath-haiku.cpp55 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 DOScompiler.h34 #define MIN(a,b) (((a)<(b))?(a):(b)) macro
H A DrootlessCommon.h117 #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 DOScompiler.h33 #define MIN(a,b) (((a)<(b))?(a):(b)) macro
H A DrootlessCommon.h117 #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 DOScompiler.h33 #define MIN(a,b) (((a)<(b))?(a):(b)) macro
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A DOScompiler.h35 #define MIN(a,b) (((a)<(b))?(a):(b)) macro
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/
H A DOScompiler.h35 #define MIN(a,b) (((a)<(b))?(a):(b)) macro
/vbox/src/libs/libpng-1.2.8/contrib/gregbook/
H A Dreadpng.h39 # define MIN(a,b) ((a) < (b)? (a) : (b)) macro
H A Dreadpng2.h39 # define MIN(a,b) ((a) < (b)? (a) : (b)) macro
H A Dwritepng.h39 # define MIN(a,b) ((a) < (b)? (a) : (b)) macro
/vbox/src/VBox/Additions/x11/x11include/4.3/include/extensions/
H A Dxtrapddmi.h49 #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 Dlocaleutil.h10 #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 Dlocaleutil.h21 #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 DShellParametersProtocol.c640 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 Dchannels.c104 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 Drdesktop.h180 #ifndef MIN
181 #define MIN(x,y) (((x) < (y)) ? (x) : (y)) macro
/vbox/src/libs/libpng-1.2.8/
H A Dpngrio.c68 #define MIN(a,b) (a <= b ? a : b) macro
97 read = MIN(NEAR_BUF_SIZE, remaining);
H A Dpngwio.c64 #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 Dfvwrite.c87 //#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 Dtime_test.c50 * @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 DXregion.h67 #ifndef MIN
68 #define MIN(a,b) (((a) < (b)) ? (a) : (b)) macro
/vbox/src/recompiler/
H A Dosdep.h101 #ifndef MIN
102 #define MIN(a, b) (((a) < (b)) ? (a) : (b)) macro
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Dbbox.c215 #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 Dthe-darwin-kernel.h36 #undef MIN macro

Completed in 161 milliseconds

123456