Searched refs:Limit (Results 1 - 25 of 32) sorted by relevance

12

/vbox/src/VBox/Devices/EFI/Firmware/PerformancePkg/Dp_App/
H A DDpInternal.h202 - No more than Limit records are displayed. A Limit of zero will not limit the output.
210 @param[in] Limit The number of records to print. Zero is ALL.
216 IN UINTN Limit,
228 - No more than Limit records are displayed. A Limit of zero will not limit the output.
234 @param[in] Limit The number of records to print. Zero is ALL.
240 IN UINTN Limit,
314 - No more than Limit records are displayed. A Limit o
[all...]
H A DDpProfile.c38 - No more than Limit records are displayed. A Limit of zero will not limit the output.
46 @param[in] Limit The number of records to print. Zero is ALL.
52 IN UINTN Limit,
77 - No more than Limit records are displayed. A Limit of zero will not limit the output.
83 @param[in] Limit The number of records to print. Zero is ALL.
89 IN UINTN Limit,
51 DumpAllProfile( IN UINTN Limit, IN BOOLEAN ExcludeFlag ) argument
88 DumpRawProfile( IN UINTN Limit, IN BOOLEAN ExcludeFlag ) argument
H A DDpTrace.c110 - No more than Limit records are displayed. A Limit of zero will not limit the output.
118 @param[in] Limit The number of records to print. Zero is ALL.
124 IN UINTN Limit,
168 // Up to Limit lines displayed
183 while ( WITHIN_LIMIT(Count, Limit) &&
269 - No more than Limit records are displayed. A Limit of zero will not limit the output.
275 @param[in] Limit The number of records to print. Zero is ALL.
281 IN UINTN Limit,
123 DumpAllTrace( IN UINTN Limit, IN BOOLEAN ExcludeFlag ) argument
280 DumpRawTrace( IN UINTN Limit, IN BOOLEAN ExcludeFlag ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/
H A DEditInputBar.c68 UINTN Limit; local
75 Limit = LastColumn - mPromptLen - 1;
82 if (Size <= Limit) {
85 Buffer = mReturnString + Size - Limit;
96 for (Index = Size; Index < Limit; Index++) {
136 UINTN Limit; local
171 Limit = LastColumn - mPromptLen;
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/IScsiDxe/
H A DMd5.c239 UINTN Limit; local
241 for (Limit = 64 - Md5Ctx->Count; DataLen >= 64 - Md5Ctx->Count; Limit = 64) {
242 CopyMem (Md5Ctx->M + Md5Ctx->Count, (VOID *)Data, Limit);
246 Data += Limit;
247 DataLen -= Limit;
/vbox/src/VBox/Devices/EFI/Firmware/SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgent/
H A DDxeDebugAgentLib.c206 IdtEntryCount = (UINT16) ((Idtr.Limit + 1) / sizeof (IA32_IDT_GATE_DESCRIPTOR));
208 Idtr.Limit = (UINT16) (sizeof (IA32_IDT_GATE_DESCRIPTOR) * 33 - 1);
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/
H A Dstdlib.h816 No more than Limit elements will be modified in the array pointed to by Dest.
822 @param[in] Limit Maximum number of elements to be written to Dest.
829 size_t mbstowcs(wchar_t * __restrict Dest, const char * __restrict Src, size_t Limit);
837 multibyte character would exceed the limit of Limit total bytes or if a
842 No more than Limit bytes will be modified in the array pointed to by Dest.
848 @param[in] Limit Maximum number of elements to be written to Dest.
856 size_t wcstombs(char * __restrict Dest, const wchar_t * __restrict Src, size_t Limit);
H A Dwchar.h914 @param[in] Limit The maximum number of characters to put into Buff,
925 wchar_t *fgetws(wchar_t * __restrict S, int Limit, FILE * __restrict Stream);
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/CpuIoDxe/
H A DCpuIo.c107 UINT64 Limit; local
161 Limit = (MmioOperation ? MAX_ADDRESS : MAX_IO_PORT_ADDRESS);
163 if (Address > Limit) {
167 MaxCount = RShiftU64 (Limit, Width);
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Protocol/
H A DDriverHealth.h71 @param[in] Value A value between 0 and Limit that identifies the current
74 @param[in] Limit The maximum value of Value for the current repair operation.
76 percent would use a Limit value of 100.
92 IN UINTN Limit
/vbox/src/VBox/Devices/EFI/Firmware/UefiCpuPkg/CpuIo2Dxe/
H A DCpuIo2Dxe.c107 UINT64 Limit; local
161 Limit = (MmioOperation ? MAX_ADDRESS : MAX_IO_PORT_ADDRESS);
163 if (Address > Limit) {
167 MaxCount = RShiftU64 (Limit, Width);
/vbox/src/VBox/Devices/EFI/Firmware/UefiCpuPkg/CpuIo2Smm/
H A DCpuIo2Smm.c73 UINT64 Limit; local
111 Limit = (MmioOperation ? MAX_ADDRESS : MAX_IO_PORT_ADDRESS);
113 if (Address > Limit) {
117 MaxCount = RShiftU64 (Limit, Width);
/vbox/src/VBox/Devices/EFI/Firmware/UefiCpuPkg/CpuDxe/
H A DCpuGdt.c191 gdtPtr.Limit = (UINT16) (sizeof (GdtTemplate) - 1);
H A DCpuDxe.c1140 if ((OldIdtPtr.Base != 0) && ((OldIdtPtr.Limit & 7) == 7)) {
1142 OldIdtSize = (OldIdtPtr.Limit + 1) / sizeof (IA32_IDT_GATE_DESCRIPTOR);
1146 mOrigIdtEntry = AllocateCopyPool (OldIdtPtr.Limit + 1, (VOID *) OldIdtPtr.Base);
1188 IdtPtr->Limit = (UINT16) (sizeof (gIdtTable) - 1);
/vbox/src/VBox/Devices/EFI/Firmware/UefiCpuPkg/CpuIoPei/
H A DCpuIoPei.c118 UINT64 Limit; local
165 Limit = (MmioOperation ? MAX_ADDRESS : MAX_IO_PORT_ADDRESS);
167 if (Address > Limit) {
171 MaxCount = RShiftU64 (Limit, Width);
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/BdsDxe/DeviceMngr/
H A DDeviceManager.h319 @param Limit Total value need to be repaired.
325 IN UINTN Limit
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Tcp4Dxe/
H A DTcp4Output.c190 UINT32 Limit; local
203 Limit = Tcb->SndWl2 + Tcb->SndWnd;
205 if (TCP_SEQ_GT (Limit, Tcb->SndUna + Tcb->CWnd)) {
207 Limit = Tcb->SndUna + Tcb->CWnd;
210 if (TCP_SEQ_GT (Limit, Tcb->SndNxt)) {
211 Win = TCP_SUB_SEQ (Limit, Tcb->SndNxt);
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/TcpDxe/
H A DTcpOutput.c185 UINT32 Limit; local
198 Limit = Tcb->SndWl2 + Tcb->SndWnd;
200 if (TCP_SEQ_GT (Limit, Tcb->SndUna + Tcb->CWnd)) {
202 Limit = Tcb->SndUna + Tcb->CWnd;
205 if (TCP_SEQ_GT (Limit, Tcb->SndNxt)) {
206 Win = TCP_SUB_SEQ (Limit, Tcb->SndNxt);
/vbox/src/VBox/Devices/EFI/Firmware/PcAtChipsetPkg/PciHostBridgeDxe/
H A DPciRootBridgeIo.c764 UINT64 Limit; local
812 // Address + Size * Count > Limit + 1
814 // Since Limit can be the maximum integer value supported by the CPU and Count
819 // Limit is of the form (2^n - 1).
823 Limit = PrivateData->IoLimit;
826 Limit = PrivateData->MemLimit;
843 Limit = MAX_PCI_REG_ADDRESS;
851 if (Address > Limit) {
855 MaxCount = RShiftU64 (Limit, Width);
1933 // Limit allocation
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/UefiCpuPkg/Library/MtrrLib/
H A DMtrrLib.c1541 UINT64 Limit;
1619 Limit = BIT36 - 1;
1623 Limit = LShiftU64 (1, RegEax & 0xff) - 1;
1625 RangeLimit = Limit;
1626 NoRangeLimit = Limit;
1636 MtrrLimit = MtrrBase + ((~(MtrrSettings.Variables.Mtrr[Index].Mask & (~(SIZE_4KB - 1)))) & Limit);
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/Ipf/
H A DThunk.c230 // Limit = 4Gb
239 IntThunk->RealModeGdtDesc.Limit = (UINT16) (sizeof (IntThunk->RealModeGdt) - 1);
244 IntThunk->RealModeIdtDesc.Limit = 0xFFFF;
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/Edit/
H A DFileBuffer.c490 UINTN Limit; local
498 Limit = Line->Size - FileBuffer.LowVisibleRange.Column + 1;
499 if (Limit > Line->Size) {
500 Limit = 0;
503 StrnCpy (PrintLine, Buffer, MIN(MIN(Limit,MainEditor.ScreenSize.Column), 200));
504 for (; Limit < MainEditor.ScreenSize.Column; Limit++) {
505 PrintLine[Limit] = L' ';
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/
H A DLegacyBiosInterface.h204 UINT16 Limit; member in struct:__anon10424
209 UINT16 Limit; member in struct:__anon10425
/vbox/src/VBox/Devices/EFI/Firmware/UefiCpuPkg/Universal/Acpi/S3Resume2Pei/
H A DS3Resume.c709 IdtBuffer = AllocatePages (EFI_SIZE_TO_PAGES((IdtDescriptor->Limit + 1) + 16));
711 CopyMem ((VOID*)((UINT8*)IdtBuffer + 16),(VOID*)(IdtDescriptor->Base), (IdtDescriptor->Limit + 1));
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/Acpi/AcpiS3SaveDxe/
H A DAcpiS3Save.c430 Idtr->Limit = (UINT16)(sizeof(IA32_IDT_GATE_DESCRIPTOR) * 0x100 - 1);

Completed in 2808 milliseconds

12