/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/SetupBrowserDxe/ |
H A D | Print.c | 37 @param Out The EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL instance. 48 IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *Out, 68 Out->SetCursorPosition (Out, Column, Row); 73 Out->Mode->Attribute = Out->Mode->Attribute & 0x7f; 75 Out->SetAttribute (Out, Out->Mode->Attribute); 97 Out 45 PrintInternal( IN UINTN Column, IN UINTN Row, IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *Out, IN CHAR16 *Fmt, IN VA_LIST Args ) argument [all...] |
/vbox/src/VBox/HostDrivers/VBoxUSB/darwin/ |
H A D | USBLib-darwin.cpp | 141 VBOXUSBADDFILTEROUT Out = { 0, VERR_WRONG_ORDER }; local 143 IOByteCount cbOut = sizeof(Out); 149 &Out); 151 size_t cbOut = sizeof(Out); 155 &Out, &cbOut); 158 && RT_SUCCESS(Out.rc)) 160 Assert(cbOut == sizeof(Out)); 161 Assert((void *)Out.uId != NULL); 162 return (void *)Out.uId; 165 AssertMsgFailed(("kr=%#x Out [all...] |
/vbox/src/VBox/HostDrivers/Support/ |
H A D | SUPR0IdcClient.c | 111 pHandle->s.pSession = Req.u.Out.pSession; 113 *puSessionVersion = Req.u.Out.uSessionVersion; 115 *puDriverVersion = Req.u.Out.uDriverVersion; 117 *puDriverRevision = Req.u.Out.uDriverRevision; 123 if ( VALID_PTR(Req.u.Out.pSession) 124 && Req.u.Out.uSessionVersion >= uMinVersion 125 && (Req.u.Out.uSessionVersion & UINT32_C(0xffff0000)) == (SUPDRV_IDC_VERSION & UINT32_C(0xffff0000))) 131 AssertMsgFailed(("pSession=%p uSessionVersion=0x%x (r%u)\n", Req.u.Out.pSession, Req.u.Out.uSessionVersion, Req.u.Out [all...] |
H A D | SUPLibLdr.cpp | 198 int c = g_pSupFunctions->u.Out.cFunctions; 199 PSUPFUNC pFunc = &g_pSupFunctions->u.Out.aFunctions[0]; 249 c = g_pSupFunctions->u.Out.cFunctions; 250 pFunc = &g_pSupFunctions->u.Out.aFunctions[0]; 253 RTAssertMsg2Weak("%d: %s\n", g_pSupFunctions->u.Out.cFunctions - c, pFunc->szName); 398 OpenReq.u.Out.fNeedsLoading = true; 399 OpenReq.u.Out.pvImageBase = 0xef423420; 401 *ppvImageBase = (void *)OpenReq.u.Out.pvImageBase; 403 && OpenReq.u.Out.fNeedsLoading) 415 rc = RTLdrGetBits(hLdrMod, &pLoadReq->u.In.abImage[0], (uintptr_t)OpenReq.u.Out [all...] |
H A D | SUPDrvIOC.h | 142 * Common In/Out header. 193 #define SUP_IOCTL_COOKIE_SIZE_OUT sizeof(SUPREQHDR) + RT_SIZEOFMEMB(SUPCOOKIE, u.Out) 251 } Out; member in union:SUPCOOKIE::__anon16282 262 #define SUP_IOCTL_QUERY_FUNCS_SIZE(cFuncs) RT_UOFFSETOF(SUPQUERYFUNCS, u.Out.aFunctions[(cFuncs)]) 287 } Out; member in union:SUPQUERYFUNCS::__anon16285 300 #define SUP_IOCTL_LDR_OPEN_SIZE_OUT (sizeof(SUPREQHDR) + RT_SIZEOFMEMB(SUPLDROPEN, u.Out)) 329 } Out; member in union:SUPLDROPEN::__anon16287 500 #define SUP_IOCTL_LDR_GET_SYMBOL_SIZE_OUT (sizeof(SUPREQHDR) + RT_SIZEOFMEMB(SUPLDRGETSYMBOL, u.Out)) 518 } Out; member in union:SUPLDRGETSYMBOL::__anon16297 573 #define SUP_IOCTL_LOW_ALLOC_SIZE(cPages) ((uint32_t)RT_UOFFSETOF(SUPLOWALLOC, u.Out 595 } Out; member in union:SUPLOWALLOC::__anon16302 665 } Out; member in union:SUPPAGEALLOCEX::__anon16307 707 } Out; member in union:SUPPAGEMAPKERNEL::__anon16310 803 } Out; member in union:SUPPAGELOCK::__anon16317 860 } Out; member in union:SUPCONTALLOC::__anon16322 908 } Out; member in union:SUPGETPAGINGMODE::__anon16327 960 } Out; member in union:SUPGIPMAP::__anon16331 1170 } Out; member in union:SUPSEMOP3::__anon16340 1203 } Out; member in union:SUPVTCAPS::__anon16343 1281 } Out; member in union:SUPTRACERIOCTL::__anon16347 1467 } Out; member in union:SUPMSRPROBER::__anon16355 1554 } Out; member in union:SUPTSCREAD::__anon16366 [all...] |
H A D | SUPLib.cpp | 289 if ( (CookieReq.u.Out.u32SessionVersion & 0xffff0000) == (SUPDRV_IOC_VERSION & 0xffff0000) 290 && CookieReq.u.Out.u32SessionVersion >= uMinVersion) 298 pFuncsReq = (PSUPQUERYFUNCS)RTMemAllocZ(SUP_IOCTL_QUERY_FUNCS_SIZE(CookieReq.u.Out.cFunctions)); 301 pFuncsReq->Hdr.u32Cookie = CookieReq.u.Out.u32Cookie; 302 pFuncsReq->Hdr.u32SessionCookie = CookieReq.u.Out.u32SessionCookie; 304 pFuncsReq->Hdr.cbOut = SUP_IOCTL_QUERY_FUNCS_SIZE_OUT(CookieReq.u.Out.cFunctions); 307 rc = suplibOsIOCtl(&g_supLibData, SUP_IOCTL_QUERY_FUNCS(CookieReq.u.Out.cFunctions), pFuncsReq, 308 SUP_IOCTL_QUERY_FUNCS_SIZE(CookieReq.u.Out.cFunctions)); 318 GipMapReq.Hdr.u32Cookie = CookieReq.u.Out.u32Cookie; 319 GipMapReq.Hdr.u32SessionCookie = CookieReq.u.Out [all...] |
H A D | SUPDrvIDC.h | 119 } Out; member in union:SUPDRVIDCREQCONNECT::__anon16278 163 } Out; member in union:SUPDRVIDCREQGETSYM::__anon16279
|
H A D | SUPLibSem.cpp | 117 *phEvent = (SUPSEMEVENT)(uintptr_t)Req.u.Out.hSem; 159 return Req.u.Out.cNsResolution; 174 *phEventMulti = (SUPSEMEVENTMULTI)(uintptr_t)Req.u.Out.hSem; 222 return Req.u.Out.cNsResolution;
|
H A D | SUPDrv.cpp | 1513 pReq->u.Out.u32Cookie = 0xffffffff; 1514 pReq->u.Out.u32SessionCookie = 0xffffffff; 1515 pReq->u.Out.u32SessionVersion = 0xffffffff; 1516 pReq->u.Out.u32DriverVersion = SUPDRV_IOC_VERSION; 1517 pReq->u.Out.pSession = NULL; 1518 pReq->u.Out.cFunctions = 0; 1533 pReq->u.Out.u32Cookie = 0xffffffff; 1534 pReq->u.Out.u32SessionCookie = 0xffffffff; 1535 pReq->u.Out.u32SessionVersion = 0xffffffff; 1536 pReq->u.Out [all...] |
H A D | SUPR0IdcClientStubs.c | 58 ASMAtomicWritePtr((void * volatile *)ppfn, Req.u.Out.pfnSymbol);
|
H A D | SUPDrvGip.cpp | 4665 pReq->u.Out.idApic = pGip->aCPUs[iGipCpu].idApic; 4666 pReq->u.Out.u64AdjustedTsc = ASMReadTSC(); 4676 pReq->u.Out.u64AdjustedTsc -= i64Delta; 4697 pReq->u.Out.idApic = ASMGetApicId(); 4698 pReq->u.Out.u64AdjustedTsc = ASMReadTSC(); 4715 pReq->u.Out.idApic = pGip->aCPUs[iGipCpu].idApic; 4717 pReq->u.Out.idApic = ASMGetApicId(); 4718 pReq->u.Out.u64AdjustedTsc = ASMReadTSC();
|
/vbox/src/VBox/Devices/EFI/ |
H A D | VBoxSmcUtil-darwin.cpp | 168 SMCPARAM Out; local 169 RT_ZERO(In); RT_ZERO(Out); 171 int rc = CallSmc(kSMCGetKeyCount, &In, &Out); 173 *pcKeys = RT_BE2H_U32(Out.u32Data);
|
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Library/PiDxeS3BootScriptLib/ |
H A D | BootScriptExecute.c | 315 PTR Out; local 317 Out.Buf = (UINT8 *) Buffer; 330 for (; Count > 0; Count--, Address += AddressStride, Out.Buf += BufferStride) { 337 *Out.Uint8 = IoRead8 ((UINTN) Address); 344 *Out.Uint16 = IoRead16 ((UINTN) Address); 351 *Out.Uint32 = IoRead32 ((UINTN) Address); 523 PTR Out; local 525 Out.Buf = Buffer; 534 for (; Count > 0; Count--, Address += AddressStride, Out.Buf += BufferStride) { 540 *Out [all...] |
/vbox/src/VBox/Devices/Audio/ |
H A D | DevIchAc97.cpp | 269 AC97OUTPUTSTREAM Out; member in struct:AC97DRIVER 484 pDrv->Out.pStrmOut, RT_BOOL(on)); 612 rc = pDrv->pConnector->pfnOpenOut(pDrv->pConnector, pszDesc, &streamCfg, &pDrv->Out.pStrmOut); 616 audioMixerRemoveStream(pThis->pSinkOutput, pDrv->Out.phStrmOut); 618 pDrv->pConnector, pDrv->Out.pStrmOut, 620 &pDrv->Out.phStrmOut); 686 pDrv->pConnector->pfnCloseOut(pDrv->pConnector, pDrv->Out.pStrmOut); 687 audioMixerRemoveStream(pThis->pSinkOutput, pDrv->Out.phStrmOut); 689 pDrv->Out.pStrmOut = NULL; 690 pDrv->Out [all...] |
H A D | DevSB16.cpp | 147 SB16OUTPUTSTREAM Out; member in struct:SB16DRIVER 415 pDrv->Out.pStrmOut, true /* fEnable */); 426 pDrv->Out.pStrmOut, false /* fEnable */); 1396 pDrv->Out.phStrmOut = NULL; 1704 int rc2 = pDrv->pConnector->pfnWrite(pDrv->pConnector, pDrv->Out.pStrmOut, 2035 if (pDrv->Out.pStrmOut) 2037 pDrv->pConnector->pfnCloseOut(pThis->pDrv, pDrv->Out.pStrmOut); 2038 pDrv->Out.pStrmOut = NULL; 2237 int rc2 = pDrv->pConnector->pfnOpenOut(pDrv->pConnector, pszDesc, pCfg, &pDrv->Out.pStrmOut); 2241 audioMixerRemoveStream(pThis->pSinkOutput, pDrv->Out [all...] |
H A D | DevIchHda.cpp | 608 HDAOUTPUTSTREAM Out; member in struct:HDADRIVER 707 ( AUDIO_FORMAT_SELECTOR((pThis)->pCodec, Out, SDFMT_BASE_RATE(pThis, 4), SDFMT_MULT(pThis, 4), SDFMT_DIV(pThis, 4)) ) 1592 pDrv->Out.pStrmOut, fRun); 2348 if (pDrv->pConnector->pfnIsActiveOut(pDrv->pConnector, pDrv->Out.pStrmOut)) 2350 int rc2 = pDrv->pConnector->pfnWrite(pDrv->pConnector, pDrv->Out.pStrmOut, 2505 rc = pDrv->pConnector->pfnOpenOut(pDrv->pConnector, pszDesc, pCfg, &pDrv->Out.pStrmOut); 2509 audioMixerRemoveStream(pThis->pSinkOutput, pDrv->Out.phStrmOut); 2511 pDrv->pConnector, pDrv->Out.pStrmOut, 2512 0 /* uFlags */, &pDrv->Out.phStrmOut); 3242 rc = pDrv->pConnector->pfnEnableOut(pDrv->pConnector, pDrv->Out [all...] |
/vbox/src/VBox/HostDrivers/Support/linux/ |
H A D | SUPDrv-linux.c | 1038 pReq->u.Out.uResults.Modify.uBefore = uBefore; 1039 pReq->u.Out.uResults.Modify.uWritten = uWritten; 1040 pReq->u.Out.uResults.Modify.uAfter = uAfter; 1041 pReq->u.Out.uResults.Modify.fBeforeGp = rcBefore != 0; 1042 pReq->u.Out.uResults.Modify.fModifyGp = rcWrite != 0; 1043 pReq->u.Out.uResults.Modify.fAfterGp = rcAfter != 0; 1044 pReq->u.Out.uResults.Modify.fRestoreGp = rcRestore != 0; 1045 RT_ZERO(pReq->u.Out.uResults.Modify.afReserved);
|
/vbox/src/VBox/HostDrivers/Support/darwin/ |
H A D | SUPDrv-darwin.cpp | 1205 pReq->u.Out.uResults.Modify.uBefore = uBefore; 1206 pReq->u.Out.uResults.Modify.uWritten = uWritten; 1207 pReq->u.Out.uResults.Modify.uAfter = uAfter; 1208 pReq->u.Out.uResults.Modify.fBeforeGp = rcBefore != 0; 1209 pReq->u.Out.uResults.Modify.fModifyGp = rcWrite != 0; 1210 pReq->u.Out.uResults.Modify.fAfterGp = rcAfter != 0; 1211 pReq->u.Out.uResults.Modify.fRestoreGp = rcRestore != 0; 1212 RT_ZERO(pReq->u.Out.uResults.Modify.afReserved);
|
/vbox/src/VBox/VMM/VMMAll/ |
H A D | IOMAll.cpp | 613 STAM_COUNTER_INC(&pStats->CTX_SUFF_Z(Out)); 645 STAM_COUNTER_INC(&pStats->CTX_SUFF_Z(Out)); 753 STAM_COUNTER_INC(&pStats->CTX_SUFF_Z(Out)); 785 STAM_COUNTER_INC(&pStats->CTX_SUFF_Z(Out));
|
/vbox/src/libs/zlib-1.2.6/contrib/delphi/ |
H A D | ZLib.pas | 131 Out: OutBuf = ptr to newly allocated buffer containing decompressed data 141 Out: OutBuf = ptr to newly allocated buffer containing decompressed data 149 Out: OutBuf = ptr to user-allocated buffer to contain decompressed data
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/ |
H A D | VfrCompiler.cpp | 449 goto Out; 490 Out:
|
/vbox/src/VBox/HostDrivers/Support/win/ |
H A D | SUPDrv-win.cpp | 1396 pFileObj->FsContext = ((PSUPDRVIDCREQCONNECT)pHdr)->u.Out.pSession; 1689 PVOID ImageAddress; /**< Out: the load address. */ 1690 PVOID SectionPointer; /**< Out: section object. */ 1691 PVOID EntryPointer; /**< Out: entry point address. */ 1692 PVOID ExportSectionPointer; /**< Out: export directory/section. */ 1693 ULONG ImageLength; /**< Out: SizeOfImage. */ 2178 pReq->u.Out.uResults.Modify.uBefore = uBefore; 2179 pReq->u.Out.uResults.Modify.uWritten = uWritten; 2180 pReq->u.Out.uResults.Modify.uAfter = uAfter; 2181 pReq->u.Out [all...] |
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/ |
H A D | devicetopology.idl | 185 Out
|
/vbox/src/VBox/VMM/VMMRC/ |
H A D | CPUMRCPatchHlp.asm | 144 ; Out of range sub-leaves aren't quite as easy and pretty as we emulate them
|
/vbox/src/VBox/Debugger/ |
H A D | DBGCEval.cpp | 1437 "Error: Out memory in the regular heap! Expect odd stuff to happen...\n", cArgs);
|