Searched defs:Count (Results 101 - 125 of 177) sorted by relevance

12345678

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Console/TerminalDxe/
H A DTerminal.c429 UINTN Count; local
439 Count = sizeof (mTerminalConsoleModeData) / sizeof (TERMINAL_CONSOLE_MODE_DATA);
451 NewModeBuffer = AllocateZeroPool (sizeof (TERMINAL_CONSOLE_MODE_DATA) * (Count + 2));
470 for (Index = 0; Index < Count; Index++) {
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/SetupBrowserDxe/
H A DInputHandler.c46 UINTN Count; local
121 for (Count = 0; Index + 1 < GetStringWidth (StringPtr) / 2; Index++, Count++) {
122 BufferedString[Count] = StringPtr[Index];
201 Count = GetStringWidth (StringPtr) / 2 - 1;
202 if (Count >= CurrentCursor) {
203 for (Index = CurrentCursor - 1, Index2 = CurrentCursor; Index2 < Count; Index++, Index2++) {
225 Count = GetStringWidth (StringPtr) / 2 - 1;
226 if (CurrentCursor < Count) {
257 for (Count
364 UINTN Count; local
[all...]
H A DPresentation.c106 Count the storage space of a Unicode string.
127 UINTN Count; local
136 Count = 0;
145 Index++, Count = Count + IncrementValue
177 Count++;
179 return Count * sizeof (CHAR16);
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Ip6Dxe/
H A DIp6Output.c108 UINT8 Count; local
114 Count = 0;
122 Count += 8;
138 return (UINT8) (Count + NumBits);
141 return Count;
H A DIp6ConfigNv.c597 UINT32 Count; local
615 Count = 0;
651 Count++;
661 *AddressCount = Count;
/vbox/src/VBox/Devices/EFI/Firmware/PcAtChipsetPkg/PciHostBridgeDxe/
H A DPciRootBridgeIo.c134 @param[in] Count The number of memory operations to perform. Bytes moved is
135 Width size * Count, starting at Address.
151 IN UINTN Count,
167 @param[in] Count The number of memory operations to perform. Bytes moved is
168 Width size * Count, starting at Address.
183 IN UINTN Count,
194 @param[in] Count The number of I/O operations to perform. Bytes moved is Width
195 size * Count, starting at Address.
211 IN UINTN Count,
222 @param[in] Count Th
751 RootBridgeIoCheckParameter( IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL *This, IN OPERATION_TYPE OperationType, IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width, IN UINT64 Address, IN UINTN Count, IN VOID *Buffer ) argument
886 RootBridgeIoMemRW( IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL *This, IN BOOLEAN Write, IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width, IN UINT64 Address, IN UINTN Count, IN OUT VOID *Buffer ) argument
978 RootBridgeIoIoRW( IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL *This, IN BOOLEAN Write, IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width, IN UINT64 Address, IN UINTN Count, IN OUT VOID *Buffer ) argument
1096 RootBridgeIoPciRW( IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL *This, IN BOOLEAN Write, IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width, IN UINT64 Address, IN UINTN Count, IN OUT VOID *Buffer ) argument
1406 RootBridgeIoMemRead( IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL *This, IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width, IN UINT64 Address, IN UINTN Count, OUT VOID *Buffer ) argument
1441 RootBridgeIoMemWrite( IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL *This, IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width, IN UINT64 Address, IN UINTN Count, IN VOID *Buffer ) argument
1472 RootBridgeIoIoRead( IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL *This, IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width, IN UINT64 Address, IN UINTN Count, OUT VOID *Buffer ) argument
1503 RootBridgeIoIoWrite( IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL *This, IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width, IN UINT64 Address, IN UINTN Count, IN VOID *Buffer ) argument
1628 RootBridgeIoPciRead( IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL *This, IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width, IN UINT64 Address, IN UINTN Count, OUT VOID *Buffer ) argument
1664 RootBridgeIoPciWrite( IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL *This, IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width, IN UINT64 Address, IN UINTN Count, IN VOID *Buffer ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/UserIdentification/PwdCredentialProviderDxe/
H A DPwdCredentialProvider.c93 UINTN Count; local
95 Count = mPwdTable->MaxCount + PASSWORD_TABLE_INC;
101 (Count - 1) * sizeof (PASSWORD_INFO)
105 NewTable->MaxCount = Count;
106 NewTable->Count = mPwdTable->Count;
114 mPwdTable->Count * sizeof (PASSWORD_INFO)
145 if (Index < mPwdTable->Count) {
150 mPwdTable->Count--;
151 if (Index != mPwdTable->Count) {
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/UserIdentification/UsbCredentialProviderDxe/
H A DUsbCredentialProvider.c71 UINTN Count; local
73 Count = mUsbTable->MaxCount + USB_TABLE_INC;
79 Count * sizeof (USB_INFO)
83 NewTable->MaxCount = Count;
84 NewTable->Count = mUsbTable->Count;
92 mUsbTable->Count * sizeof (USB_INFO)
122 if (Index < mUsbTable->Count) {
127 mUsbTable->Count--;
128 if (Index != mUsbTable->Count) {
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Common/
H A DSimpleFileParsing.c1094 UINTN Count; local
1096 Count = 0;
1098 Count++;
1113 return Count - 1;
1120 if ((Count == 0) && (EndOfFile (SourceFile))) {
1121 Count++;
1124 return Count;
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/
H A DMainHexEditor.c605 UINTN Count; local
629 Count = HMainEditor.SelectEnd - HMainEditor.SelectStart + 1;
630 Buffer = AllocateZeroPool (Count);
639 Count,
646 HClipBoardSet (Buffer, Count);
680 UINTN Count; local
683 Count = HClipBoardGet (&Buffer);
684 if (Count == 0 || Buffer == NULL) {
692 if (Line->Link.ForwardLink == HMainEditor.BufferImage->ListHead && Line->Size + Count < 0x10) {
706 HBufferImageAddCharacterToBuffer (FPos, Count, Buffe
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/
H A DPrintInfo.c493 UINT8 Count; local
507 Count = Struct->Type15->NumberOfSupportedLogTypeDescriptors;
508 if (Count > 0) {
514 for (Index = 0; Index < Count; Index++, Ptr++) {
816 UINT8 Count; local
822 Count = Struct->Type37->MemoryDeviceCount;
824 for (Index = 0; Index < Count; Index++) {
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellLevel2CommandsLib/
H A DMap.c40 UINTN Count; local
41 for (Count = 0 ; Count < Len && String != NULL && *String != CHAR_NULL ; String++,Count++) {
133 UINTN Count; local
154 for (Count = 0 ; HandleList[Count] != NULL ; Count++);
159 DevicePathList = AllocateZeroPool(sizeof(EFI_DEVICE_PATH_PROTOCOL*) * Count);
162 for (Count
[all...]
/vbox/src/VBox/Main/src-server/
H A DPerformanceImpl.cpp875 STDMETHODIMP PerformanceMetric::COMGETTER(Count)(ULONG *aCount) function in class:PerformanceMetric
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dwinevt.h116 DWORD Count; member in struct:_EVT_VARIANT
/vbox/src/libs/xpcom18a4/xpcom/ds/
H A DnsHashtable.h145 PRInt32 Count(void) { return mHashtable.entryCount; } function in class:nsHashtable
208 PRInt32 Count(void) { function in class:nsSupportsHashtable
209 return nsHashtable::Count();
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLib/SysCall/
H A DCrtWrapper.c38 IN CONST UINTN Count,
52 if (Count < 2 || ElementSize < 1) {
61 Pivot = ((UINT8 *)BufferToSort + ((Count - 1) * ElementSize));
67 for (LoopCount = 0; LoopCount < Count - 1; LoopCount++)
107 Count - NextSwapLocation - 1,
36 QuickSortWorker( IN OUT VOID *BufferToSort, IN CONST UINTN Count, IN CONST UINTN ElementSize, IN SORT_COMPARE CompareFunction, IN VOID *Buffer ) argument
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/
H A DAta.c464 @param SectorCount value of the Sector Count Register
612 @param SectorCount value of the Sector Count Register
916 // SectorCount8 is sent to Sector Count register, 0x00 means 256
1018 // SectorCount8 is sent to Sector Count register, 0x00 means 256 sectors
1533 UINT32 Count; local
1800 // So set the variable Count to 2000, for about 2 second timeout time.
1803 Count = 2000;
1814 if (((RegisterValue & (BMIS_INTERRUPT | BMIS_ERROR)) != 0) || (Count == 0)) {
1815 if (((RegisterValue & BMIS_ERROR) != 0) || (Count == 0)) {
1823 Count
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/FirmwareVolume/FwVolDxe/
H A DFwVolWrite.c604 UINTN Count; local
606 Count = 0;
612 if (Count > Offset) {
616 Count += LbaEntry->BlockLength;
622 if (Count <= Offset) {
630 *LOffset = (UINTN) (LbaEntry->BlockLength - (Count - Offset));
632 Count = 0;
635 Count += LbaEntry->BlockLength;
641 Count -= *LOffset;
643 return Count;
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Ata/AtaAtapiPassThru/
H A DIdeMode.c148 @param Count No. of UINT16's to read
157 IN UINTN Count,
172 Count,
185 @param Count Number of UINT16's to read
194 IN UINTN Count,
209 Count,
1670 // So set the variable Count to 2000, for about 2 second Timeout time.
1708 // So set the variable Count to 2000, for about 2 second Timeout time.
2023 UINT8 Count; local
2074 for (Count
154 IdeWritePortWMultiple( IN EFI_PCI_IO_PROTOCOL *PciIo, IN UINT16 Port, IN UINTN Count, IN VOID *Buffer ) argument
191 IdeReadPortWMultiple( IN EFI_PCI_IO_PROTOCOL *PciIo, IN UINT16 Port, IN UINTN Count, IN VOID *Buffer ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Pci/IdeBusPei/
H A DAtapiPeim.c76 DEBUG ((EFI_D_INFO, "Atatpi Device Count is %d\n", AtapiBlkIoDev->DeviceCount));
1249 UINT32 Count; local
1329 for (Count = 0; Count < 6; Count++, CommandIndex++) {
1564 DEBUG ((EFI_D_INFO, "Atapi Request Sense Count is %d\n", SenseCounts));
2069 @param[in] SenseCounts Count of sense data.
2105 @param[in] SenseCounts Count of sense data.
2146 @param[in] SenseCounts Count of sense data.
2219 @param[in] SenseCounts Count o
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Dxe/Gcd/
H A DGcd.c606 Count the amount of GCD map entries.
618 UINTN Count; local
621 Count = 0;
624 Count++;
628 return Count;
1598 // Count the number of descriptors
1867 // Count the number of descriptors
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Library/DxePrintLibPrint2Protocol/
H A DPrintLib.c1165 UINTN Count; local
1248 Count = 0;
1308 for (Count = 0; ((FormatCharacter >= '0') && (FormatCharacter <= '9')); ){
1309 Count = (Count * 10) + FormatCharacter - '0';
1316 Width = Count;
1318 Precision = Count;
1420 Count = InternalPrintLibValueToString (ValueBuffer, Value, Radix) - ValueBuffer;
1422 Count = 0;
1424 ArgumentString = (CHAR8 *)ValueBuffer + Count;
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Library/PiDxeS3BootScriptLib/
H A DBootScriptExecute.c294 @param[in] Count Count of the number of accesses to perform.
308 IN UINTN Count,
330 for (; Count > 0; Count--, Address += AddressStride, Out.Buf += BufferStride) {
367 @param[in] Count Count of the number of accesses to perform.
381 IN UINTN Count,
407 for (; Count > 0; Count
305 ScriptIoRead( IN S3_BOOT_SCRIPT_LIB_WIDTH Width, IN UINT64 Address, IN UINTN Count, OUT VOID *Buffer ) argument
378 ScriptIoWrite( IN S3_BOOT_SCRIPT_LIB_WIDTH Width, IN UINT64 Address, IN UINTN Count, IN VOID *Buffer ) argument
484 UINTN Count; local
513 ScriptMemoryRead( IN S3_BOOT_SCRIPT_LIB_WIDTH Width, IN UINT64 Address, IN UINTN Count, IN OUT VOID *Buffer ) argument
588 ScriptMemoryWrite( IN S3_BOOT_SCRIPT_LIB_WIDTH Width, IN UINT64 Address, IN UINTN Count, IN OUT VOID *Buffer ) argument
690 UINTN Count; local
[all...]
H A DBootScriptSave.c788 @param Count The number of I/O operations to perform.
799 IN UINTN Count,
810 Length = (UINT8)(sizeof (EFI_BOOT_SCRIPT_IO_WRITE) + (WidthInByte * Count));
823 ScriptIoWrite.Count = (UINT32) Count;
825 CopyMem ((VOID*)(Script + sizeof (EFI_BOOT_SCRIPT_IO_WRITE)), Buffer, WidthInByte * Count);
885 @param Count The number of memory operations to perform.
896 IN UINTN Count,
906 Length = (UINT8)(sizeof (EFI_BOOT_SCRIPT_MEM_WRITE) + (WidthInByte * Count));
919 ScriptMemWrite.Count
796 S3BootScriptSaveIoWrite( IN S3_BOOT_SCRIPT_LIB_WIDTH Width, IN UINT64 Address, IN UINTN Count, IN VOID *Buffer ) argument
893 S3BootScriptSaveMemWrite( IN S3_BOOT_SCRIPT_LIB_WIDTH Width, IN UINT64 Address, IN UINTN Count, IN VOID *Buffer ) argument
989 S3BootScriptSavePciCfgWrite( IN S3_BOOT_SCRIPT_LIB_WIDTH Width, IN UINT64 Address, IN UINTN Count, IN VOID *Buffer ) argument
1090 S3BootScriptSavePciCfg2Write( IN S3_BOOT_SCRIPT_LIB_WIDTH Width, IN UINT16 Segment, IN UINT64 Address, IN UINTN Count, IN VOID *Buffer ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Console/GraphicsConsoleDxe/
H A DGraphicsConsole.c242 UINTN Count; local
254 Count = sizeof (mGraphicsConsoleModeData) / sizeof (GRAPHICS_CONSOLE_MODE_DATA);
271 mGraphicsConsoleModeData[Count - 1].Columns = MaxColumns;
272 mGraphicsConsoleModeData[Count - 1].Rows = MaxRows;
284 NewModeBuffer = AllocateZeroPool (sizeof (GRAPHICS_CONSOLE_MODE_DATA) * (Count + 2));
315 for (Index = 0; Index < Count; Index++) {
915 UINTN Count; local
1087 // Count is used to determine how many characters are used regardless of their attributes
1089 for (Count = 0, Index = 0; (This->Mode->CursorColumn + Index) < MaxColumn; Count
1180 UINT16 Count; local
[all...]

Completed in 115 milliseconds

12345678