Searched defs:CurPos (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Uefi/Devices/UefiShell/
H A DdaShell.c103 __off_t CurPos = -1; local
117 Status = ShellGetFilePosition( FileHandle, (UINT64 *)&CurPos);
121 CurPos = 0; // offset is an absolute position for SEEK_SET
127 /* CurPos now indicates the point we are seeking from, so seek... */
128 Status = ShellSetFilePosition( FileHandle, (UINT64)(CurPos + offset));
131 Status = ShellGetFilePosition( FileHandle, (UINT64 *)&CurPos);
142 CurPos = EOF;
144 return CurPos;
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Uefi/
H A DSysCalls.c497 __off_t CurPos = -1; local
507 CurPos = filp->f_ops->fo_lseek( filp, offset, how);
508 if(CurPos >= 0) {
509 filp->f_offset = CurPos;
519 return CurPos;
/vbox/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm/
H A DVBoxMPVdma.cpp475 POINT CurPos; local
484 CurPos.x = pContextRects->ContextRect.left - pSrcRect->left;
485 CurPos.y = pContextRects->ContextRect.top - pSrcRect->top;
487 if (CurPos.x != pSwapchain->Pos.x || CurPos.y != pSwapchain->Pos.y)
491 VBoxVrListTranslate(&pSwapchain->VisibleRegions, pSwapchain->Pos.x - CurPos.x, pSwapchain->Pos.y - CurPos.y);
496 pSwapchain->Pos = CurPos;
618 crPackWindowPosition(&pCrPacker->CrPacker, pSwapchain->winHostID, CurPos.x, CurPos
[all...]

Completed in 58 milliseconds