Searched refs:rem (Results 1 - 25 of 80) sorted by relevance

1234

/vbox/tools/bin/
H A Dretry.cmd2 rem $Id$
3 rem rem @file
4 rem Windows NT batch script that retries a command 5 times.
5 rem
7 rem
8 rem Copyright (C) 2009-2013 Oracle Corporation
9 rem
10 rem This file is part of VirtualBox Open Source Edition (OSE), as
11 rem availabl
[all...]
H A Dgen-slickedit-workspace.cmd2 rem $Id$
3 rem rem @file
4 rem Windows NT batch script for launching gen-slickedit-workspace.sh
5 rem
7 rem
8 rem Copyright (C) 2009-2011 Oracle Corporation
9 rem
10 rem This file is part of VirtualBox Open Source Edition (OSE), as
11 rem availabl
[all...]
/vbox/src/VBox/HostDrivers/win/
H A Dload.cmd2 rem $Id$
3 rem rem @file
4 rem Windows NT batch script for launching load.sh
5 rem
7 rem
8 rem Copyright (C) 2009-2012 Oracle Corporation
9 rem
10 rem This file is part of VirtualBox Open Source Edition (OSE), as
11 rem availabl
[all...]
H A Dloadall.cmd2 rem $Id$
3 rem rem @file
4 rem Windows NT batch script for launching loadall.sh
5 rem
7 rem
8 rem Copyright (C) 2009-2012 Oracle Corporation
9 rem
10 rem This file is part of VirtualBox Open Source Edition (OSE), as
11 rem availabl
[all...]
/vbox/src/recompiler/
H A DVBoxRecompiler.c30 #include <VBox/vmm/rem.h>
245 AssertCompile(RT_SIZEOFMEMB(VM, rem.padding) >= RT_SIZEOFMEMB(VM, rem.s));
275 AssertReleaseMsg(sizeof(pVM->rem.padding) >= sizeof(pVM->rem.s), ("%#x >= %#x; sizeof(Env)=%#x\n", sizeof(pVM->rem.padding), sizeof(pVM->rem.s), sizeof(pVM->rem.s.Env)));
276 AssertReleaseMsg(sizeof(pVM->rem.s.Env) <= REM_ENV_SIZE, ("%#x == %#x\n", sizeof(pVM->rem
[all...]
/vbox/src/VBox/VMM/VMMAll/
H A DREMAll.cpp24 # include <VBox/vmm/rem.h>
50 if ( pVM->rem.s.cInvalidatedPages < RT_ELEMENTS(pVM->rem.s.aGCPtrInvalidatedPages)
53 uint32_t iPage = pVM->rem.s.cInvalidatedPages;
54 if (iPage < RT_ELEMENTS(pVM->rem.s.aGCPtrInvalidatedPages))
56 ASMAtomicWriteU32(&pVM->rem.s.cInvalidatedPages, iPage + 1);
57 pVM->rem.s.aGCPtrInvalidatedPages[iPage] = GCPtrPage;
64 ASMAtomicWriteU32(&pVM->rem.s.cInvalidatedPages, 0); /** @todo leave this alone? Optimize this code? */
72 ASMAtomicWriteU32(&pVM->rem.s.cInvalidatedPages, 0); /** @todo leave this alone?! Optimize this code? */
95 idxFree = ASMAtomicUoReadU32(&pVM->rem
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/StdLib/
H A DXdiv.c8 (the quotient) and rem (the remainder), each of which has the same type as
28 it first into bigrem and then into r.rem. This avoids writing the remainder
38 r.rem = (int)bigrem;
44 it first into bigrem and then into r.rem. This avoids writing the remainder
54 r.rem = (long)bigrem;
60 it first into bigrem and then into r.rem. This avoids writing the remainder
61 beyond the end of the div_t structure if r.rem is narrower than 64-bits.
73 r.rem = (long long)bigrem;
/vbox/src/libs/zlib-1.2.6/examples/
H A Denough.c149 Each element in the array is further indexed by the (mem, rem) doublet,
150 where mem is the amount of inflate table space used so far, and rem is the
153 not. Since the ranges for mem and rem are not known a priori, each bit
155 states. mem and rem are used to calculate a single index in a triangular
157 ten times larger than the range of rem, the array is skewed to reduce the
158 memory usage, with eight times the range for mem than for rem. See the
253 has a variable size bit vector indexed by (mem,rem). The bit vector is
254 lengthened if needed to allow setting the (mem,rem) bit. */
255 local int beenhere(int syms, int len, int left, int mem, int rem) argument
263 /* point to vector for (syms,left,len), bit in vector for (mem,rem) */
319 examine(int syms, int len, int left, int mem, int rem) argument
[all...]
H A Dgun.c173 rem = 0; \
204 int left; /* bits left in rem */
205 unsigned rem; /* unused bits from input */ local
257 rem = (unsigned)last >> 1; /* remaining 7 bits */
277 code = rem; /* low bits of code */
298 rem = (unsigned)last >> (8 - left); /* unused bits from last byte */
364 /* loop for next code with final and prev as the last match, rem and
/vbox/src/VBox/Devices/EFI/Firmware/VBoxPkg/VBoxFsDxe/
H A Dfsw_efi_lib.c96 long days, rem; local
103 rem = UnixTime % SECSPERDAY;
105 EfiTime->Hour = (UINT8) (rem / SECSPERHOUR);
106 rem = rem % SECSPERHOUR;
107 EfiTime->Minute = (UINT8) (rem / SECSPERMIN);
108 EfiTime->Second = (UINT8) (rem % SECSPERMIN);
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Dthrpool_client.c123 int rem; local
128 for (rem=len; rem; offset += bytes, rem -= bytes) {
130 PR_GetCurrentThread(), rem));
131 bytes = PR_Recv(sockfd, buf + offset, rem, 0,
149 int rem; local
153 for (rem=len; rem; offset += bytes, rem
[all...]
H A Dsel_spd.c109 int rem; local
112 for (rem=len; rem; rem -= bytes) {
113 bytes = PR_Recv(sock, buf+len-rem, rem, 0, PR_INTERVAL_NO_TIMEOUT);
/vbox/src/VBox/Devices/PC/ipxe/src/libgcc/
H A Dlibgcc.h8 uint64_t *rem );
/vbox/src/libs/xpcom18a4/nsprpub/tools/
H A Dhttpget.c195 PRUint32 rem; local
213 rem = size;
214 while ((nBytes = DrainInputBuffer(start, rem)) > 0) {
216 rem -= nBytes;
222 bytesToRead = (rem < FCOPY_BUFFER_SIZE) ? rem : FCOPY_BUFFER_SIZE;
223 while (rem > 0 && (nBytes = PR_Read(in, start, bytesToRead)) > 0) {
225 rem -= nBytes;
226 bytesToRead = (rem < FCOPY_BUFFER_SIZE) ? rem
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/LzmaCompress/Sdk/C/
H A D7zStream.c116 size_t rem = p->size - p->pos; local
117 if (rem == 0)
119 if (rem > *size)
120 rem = *size;
121 memcpy(buf, p->buf + p->pos, rem);
122 p->pos += rem;
123 *size = rem;
H A DLzmaDec.c389 SizeT rem = limit - dicPos; local
390 unsigned curLen = ((rem < len) ? (unsigned)rem : len);
469 UInt32 rem = p->prop.dicSize - p->processedPos; local
470 if (limit - p->dicPos > rem)
471 limit2 = p->dicPos + rem;
814 unsigned rem = p->tempBufSize, lookAhead = 0; local
815 while (rem < LZMA_REQUIRED_INPUT_MAX && lookAhead < inSize)
816 p->tempBuf[rem++] = src[lookAhead++];
817 p->tempBufSize = rem;
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/
H A Dstdlib.h136 int rem; /**< remainder */ member in struct:__anon13002
142 long rem; member in struct:__anon13003
148 long long rem; member in struct:__anon13004
/vbox/src/libs/zlib-1.2.6/
H A Dadler32.c143 unsigned rem; local
151 rem = (unsigned)len2;
153 sum2 = rem * sum1;
156 sum2 += ((adler1 >> 16) & 0xffff) + ((adler2 >> 16) & 0xffff) + BASE - rem;
/vbox/src/VBox/Devices/PC/ipxe/src/arch/x86/core/linux/
H A Dlinux_api.c75 int linux_nanosleep ( const struct timespec *req, struct timespec *rem ) {
76 return linux_syscall ( __NR_nanosleep, req, rem );
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Time/
H A DTime.c100 time_t /*INTN*/ rem; local
136 rem = *timep % SECSPERDAY;
137 rem += (offset - corr);
138 while (rem < 0) {
139 rem += SECSPERDAY;
142 while (rem >= SECSPERDAY) {
143 rem -= SECSPERDAY;
146 tmp->tm_hour = (int) (rem / SECSPERHOUR);
147 rem = rem
[all...]
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ipv4/
H A Dip4_addr.c282 u8_t rem; local
294 rem = *ap % (u8_t)10;
296 inv[i++] = '0' + rem;
/vbox/src/VBox/Devices/PC/ipxe/src/include/
H A Dlinux_api.h61 extern int linux_nanosleep ( const struct timespec *req, struct timespec *rem );
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/misc/
H A Dprtime.c107 PRInt32 tmp, rem; local
139 LL_L2I(rem, rem64);
140 if (rem < 0) {
142 rem += 86400L;
154 gmt->tm_hour = rem / 3600;
155 rem %= 3600;
156 gmt->tm_min = rem / 60;
157 gmt->tm_sec = rem % 60;
162 rem = numDays % (4 * 365 + 1);
164 if (rem <
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
H A DLzmaDec.c408 SizeT rem = limit - dicPos; local
409 unsigned curLen = ((rem < len) ? (unsigned)rem : len);
488 UInt32 rem = p->prop.dicSize - p->processedPos; local
489 if (limit - p->dicPos > rem)
490 limit2 = p->dicPos + rem;
832 unsigned rem = p->tempBufSize, lookAhead = 0; local
833 while (rem < LZMA_REQUIRED_INPUT_MAX && lookAhead < inSize)
834 p->tempBuf[rem++] = src[lookAhead++];
835 p->tempBufSize = rem;
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/
H A Dstdlib.h63 int rem; member in struct:_div_t
68 __msvcrt_long rem; member in struct:_ldiv_t
262 ret.rem = (int)(res >> 32);
271 ret.rem = (__msvcrt_long)(res >> 32);

Completed in 144 milliseconds

1234