Searched defs:lim (Results 1 - 15 of 15) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/StdLib/
H A DBsearch.c68 * divide the work in half by moving either left or right. If lim
69 * is odd, moving left simply involves halving lim: e.g., when lim
70 * is 5 we look at item 2, so we change lim to 2 so that we will
71 * look at items 0 & 1. If lim is even, the same applies. If lim
72 * is odd, moving right again involes halving lim, this time moving
73 * the base up one item past p: e.g., when lim is 5 we change base
74 * to item 3 and make lim 2 so that we will look at items 3 and 4.
75 * If lim i
90 size_t lim; local
[all...]
/vbox/src/VBox/HostServices/SharedOpenGL/OpenGLTest/
H A DOpenGLTestApp.cpp198 struct rlimit lim = { 0, 0 }; local
199 setrlimit(RLIMIT_CORE, &lim);
/vbox/src/VBox/NetworkServices/NAT/
H A Dfwudp.c266 size_t beg, lim; local
289 lim = fwudp->inbuf.unsent;
290 if (lim == 0) {
291 lim = fwudp->inbuf.bufsize - 1; /* guard slot at the end */
294 --lim;
298 if (beg == lim) { /* no vacant slot */
H A Dpxtcp.c1801 size_t beg, lim, wrnew; local
1808 /* lim is the index we can NOT write to */
1809 lim = pxtcp->inbuf.unacked;
1810 if (lim == 0) {
1811 lim = sz - 1; /* empty slot at the end */
1813 else if (lim == 1 && beg != 0) {
1814 lim = sz; /* empty slot at the beginning */
1817 --lim;
1820 if (beg == lim) {
1831 if (beg < lim) {
2004 size_t beg, lim, sndlim; local
[all...]
/vbox/src/libs/xpcom18a4/ipc/ipcd/daemon/src/
H A DipcdUnix.cpp563 struct rlimit lim; local
564 if (getrlimit(RLIMIT_NOFILE, &lim) == 0)
566 if ( lim.rlim_cur < 10240
567 && lim.rlim_cur < lim.rlim_max)
569 lim.rlim_cur = lim.rlim_max <= 10240 ? lim.rlim_max : 10240;
570 if (setrlimit(RLIMIT_NOFILE, &lim) == -1)
/vbox/src/VBox/Main/src-server/xpcom/
H A Dserver.cpp953 struct rlimit lim; local
954 if (getrlimit(RLIMIT_NOFILE, &lim) == 0)
956 if ( lim.rlim_cur < 10240
957 && lim.rlim_cur < lim.rlim_max)
959 lim.rlim_cur = RT_MIN(lim.rlim_max, 10240);
960 if (setrlimit(RLIMIT_NOFILE, &lim) == -1)
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/
H A Ddt_options.c107 struct rlimit lim; local
119 lim.rlim_cur = RLIM_INFINITY;
120 lim.rlim_max = RLIM_INFINITY;
122 (void) setrlimit(RLIMIT_CORE, &lim);
H A Ddt_printf.c1361 caddr_t lim = (caddr_t)buf + len, limit; local
1505 limit = lim;
1512 dt_dprintf("bad size: addr=%p size=0x%x lim=%p\n",
1513 (void *)addr, rec->dtrd_size, (void *)lim);
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
H A DLzmaDec.c419 const Byte *lim = dest + curLen; local
423 while (++dest != lim);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/LzmaCompress/Sdk/C/
H A DLzmaDec.c400 const Byte *lim = dest + curLen; local
404 while (++dest != lim);
/vbox/src/libs/xpcom18a4/xpcom/io/
H A DnsPipe3.cpp930 PRUint32 lim = PR_MIN(strLen, len2 + 1); local
931 for (i = 0; i < lim; ++i) {
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/
H A Ddtrace.c1004 int lim = rec->dtrd_size; local
1009 if (lim > sizeof (uint64_t))
1010 lim = sizeof (uint64_t);
1014 for (i = 0; i < lim; i++) {
1021 "%s)", lim < rec->dtrd_size ? " ..." : "");
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Enquire/
H A DEnquire.c726 long val, long lim, long req, char *mark));
1250 long lim,
1259 } else if (val + lim < 0) {
1262 -1023-1. lim is the max allowable value. */
1264 sort, name, -lim, mark, val+lim, mark);
1244 i_define( char *desc, char *extra, char *sort, char *name, long val, long lim, long req, char *mark ) argument
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/uts/common/dtrace/
H A Ddtrace.c928 dtrace_strlen(const char *s, size_t lim) argument
932 for (len = 0; len != lim; len++) {
/vbox/src/VBox/Main/webservice/jaxlibs/
H A Djaxb-xjc.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/com. ...

Completed in 199 milliseconds