/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Common/ |
H A D | StringFuncs.h | 33 UINTN Count; member in struct:__anon9965 35 // Actually this array can be 0 or more items (based on Count)
|
H A D | StringFuncs.c | 207 NewList->Count = 0; 236 NewList = AllocateStringListStruct (OldList->Count + 1); 250 sizeof (OldList->Strings[0]) * OldList->Count 252 NewList->Count = OldList->Count + 1; 253 NewList->Strings[OldList->Count] = NewString; 283 if (StringList->Count == 0) { 287 free (StringList->Strings[StringList->Count - 1]); 288 StringList->Count--; 336 while (StringList->Count > 365 UINTN Count; local [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/IScsiDxe/ |
H A D | Md5.h | 30 UINTN Count; member in struct:_MD5_CTX
|
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseLib/ |
H A D | CheckSum.c | 44 UINTN Count; local 49 for (Sum = 0, Count = 0; Count < Length; Count++) { 50 Sum = (UINT8) (Sum + *(Buffer + Count)); 119 UINTN Count; local 128 for (Sum = 0, Count = 0; Count < Total; Count++) { 129 Sum = (UINT16) (Sum + *(Buffer + Count)); 201 UINTN Count; local 283 UINTN Count; local [all...] |
H A D | LinkedList.c | 54 UINTN Count; local 65 Count = 0; 76 Count++; 80 ASSERT (Count < PcdGet32 (PcdMaximumLinkedListLength)); 85 if (Count >= PcdGet32 (PcdMaximumLinkedListLength)) { 98 // Count the total number of nodes in List. 103 Count++; 104 } while ((Ptr != List) && (Count < PcdGet32 (PcdMaximumLinkedListLength))); 109 ASSERT (Count < PcdGet32 (PcdMaximumLinkedListLength));
|
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/Library/DxeDeferImageLoadLib/ |
H A D | DxeDeferImageLoadLib.h | 64 UINTN Count; ///< deferred image count member in struct:__anon12680
|
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/BaseSortLib/ |
H A D | BaseSortLib.c | 34 if Count is < 2 then perform no action. 39 @param[in] Count the number of elements in the buffer to sort 49 IN CONST UINTN Count, 63 if ( Count < 2 74 Pivot = ((UINT8*)BufferToSort+((Count-1)*ElementSize)); 81 ; LoopCount < Count -1 121 if ((Count - NextSwapLocation - 1) >= 2) { 124 Count - NextSwapLocation - 1, 139 if Count is < 2 then perform no action. 144 @param[in] Count th 47 QuickSortWorker( IN OUT VOID *BufferToSort, IN CONST UINTN Count, IN CONST UINTN ElementSize, IN SORT_COMPARE CompareFunction, IN VOID *Buffer ) argument 151 PerformQuickSort( IN OUT VOID *BufferToSort, IN CONST UINTN Count, IN CONST UINTN ElementSize, IN SORT_COMPARE CompareFunction ) argument [all...] |
/vbox/src/libs/xpcom18a4/xpcom/ds/ |
H A D | nsStringEnumerator.cpp | 99 inline PRUint32 Count() { function in class:nsStringEnumerator 100 return mIsUnicode ? mArray->Count() : mCArray->Count(); 123 *aResult = mIndex < Count(); 157 NS_ENSURE_TRUE(mIndex < Count(), NS_ERROR_UNEXPECTED); 170 NS_ENSURE_TRUE(mIndex < Count(), NS_ERROR_UNEXPECTED);
|
H A D | nsValueArray.h | 73 // Ability to add more values without growing is Capacity - Count. 76 inline nsValueArrayCount Count() const { function in class:nsValueArray 104 return InsertValueAt(aValue, Count());
|
/vbox/src/libs/xpcom18a4/xpcom/reflect/xptcall/src/md/unix/ |
H A D | xptcinvoke_arm.cpp | 134 PRUint32 Count; member in struct:my_params_struct 149 my_params.Count = paramCount;
|
H A D | xptcinvoke_arm_netbsd.cpp | 130 PRUint32 Count; member in struct:my_params_struct 144 my_params.Count = paramCount;
|
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Dxe/FwVol/ |
H A D | Ffs.c | 72 UINTN Count; local 83 for (Count = 0; Count < BufferSize; Count++) { 84 if (Buffer[Count] != EraseByte) {
|
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/SetupBrowserDxe/ |
H A D | Print.c | 57 UINTN Count; local 79 Count = 0; 98 Count += StrLen (&BackupBuffer[PreviousIndex]); 130 Count += StrLen (&BackupBuffer[PreviousIndex]); 134 return Count;
|
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/UserIdentification/UsbCredentialProviderDxe/ |
H A D | UsbCredentialProvider.h | 59 UINTN Count; member in struct:__anon12701 68 UINTN Count; member in struct:__anon12702
|
/vbox/src/VBox/Devices/EFI/Firmware/UefiCpuPkg/CpuIo2Smm/ |
H A D | CpuIo2Smm.c | 53 @param[in] Count The number of I/O operations to perform. 60 @retval EFI_INVALID_PARAMETER Width or Count, or both, were invalid. 68 IN UINTN Count, 99 // Address + Size * Count. If the following condition is met, then the transfer 102 // Address + Size * Count > (MmioOperation ? MAX_ADDRESS : MAX_IO_PORT_ADDRESS) + 1 104 // Since MAX_ADDRESS can be the maximum integer value supported by the CPU and Count 112 if (Count == 0) { 118 if (MaxCount < (Count - 1)) { 121 if (Address > LShiftU64 (MaxCount - Count + 1, Width)) { 147 @param[in] Count Th 64 CpuIoCheckParameter( IN BOOLEAN MmioOperation, IN EFI_SMM_IO_WIDTH Width, IN UINT64 Address, IN UINTN Count, IN VOID *Buffer ) argument 161 CpuMemoryServiceRead( IN CONST EFI_SMM_CPU_IO2_PROTOCOL *This, IN EFI_SMM_IO_WIDTH Width, IN UINT64 Address, IN UINTN Count, OUT VOID *Buffer ) argument 221 CpuMemoryServiceWrite( IN CONST EFI_SMM_CPU_IO2_PROTOCOL *This, IN EFI_SMM_IO_WIDTH Width, IN UINT64 Address, IN UINTN Count, IN VOID *Buffer ) argument 281 CpuIoServiceRead( IN CONST EFI_SMM_CPU_IO2_PROTOCOL *This, IN EFI_SMM_IO_WIDTH Width, IN UINT64 Address, IN UINTN Count, OUT VOID *Buffer ) argument 340 CpuIoServiceWrite( IN CONST EFI_SMM_CPU_IO2_PROTOCOL *This, IN EFI_SMM_IO_WIDTH Width, IN UINT64 Address, IN UINTN Count, IN VOID *Buffer ) argument [all...] |
/vbox/src/VBox/Runtime/testcase/ |
H A D | tstDarwinSched.cpp | 27 mach_msg_type_number_t Count; local 31 Count = THREAD_EXTENDED_POLICY_COUNT; 32 krc = thread_policy_get(mach_thread_self(), THREAD_EXTENDED_POLICY, (thread_policy_t)&Extended, &Count, &GetDefault); 37 Count = THREAD_PRECEDENCE_POLICY_COUNT; 38 krc = thread_policy_get(mach_thread_self(), THREAD_PRECEDENCE_POLICY, (thread_policy_t)&Precedence, &Count, &GetDefault); 43 Count = THREAD_TIME_CONSTRAINT_POLICY_COUNT; 44 krc = thread_policy_get(mach_thread_self(), THREAD_TIME_CONSTRAINT_POLICY, (thread_policy_t)&TimeConstraint, &Count, &GetDefault); 53 Count = THREAD_AFFINITY_POLICY_COUNT; 54 krc = thread_policy_get(mach_thread_self(), THREAD_AFFINITY_POLICY, (thread_policy_t)&Affinity, &Count, &GetDefault); 78 Count [all...] |
/vbox/src/libs/xpcom18a4/xpcom/components/ |
H A D | nsCategoryManager.h | 102 PRUint32 Count() { function in class:CategoryNode 104 PRUint32 tCount = mTable.Count();
|
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/CpuIoDxe/ |
H A D | CpuIo.c | 84 @param[in] Count The number of I/O operations to perform. The number of 85 bytes moved is Width size * Count, starting at Address. 94 and Count is not valid for this PI system. 102 IN UINTN Count, 125 // so treat Count as 1 128 Count = 1; 149 // Address + Size * Count. If the following condition is met, then the transfer 152 // Address + Size * Count > (MmioOperation ? MAX_ADDRESS : MAX_IO_PORT_ADDRESS) + 1 154 // Since MAX_ADDRESS can be the maximum integer value supported by the CPU and Count 162 if (Count 98 CpuIoCheckParameter( IN BOOLEAN MmioOperation, IN EFI_CPU_IO_PROTOCOL_WIDTH Width, IN UINT64 Address, IN UINTN Count, IN VOID *Buffer ) argument 228 CpuMemoryServiceRead( IN EFI_CPU_IO_PROTOCOL *This, IN EFI_CPU_IO_PROTOCOL_WIDTH Width, IN UINT64 Address, IN UINTN Count, OUT VOID *Buffer ) argument 308 CpuMemoryServiceWrite( IN EFI_CPU_IO_PROTOCOL *This, IN EFI_CPU_IO_PROTOCOL_WIDTH Width, IN UINT64 Address, IN UINTN Count, IN VOID *Buffer ) argument 388 CpuIoServiceRead( IN EFI_CPU_IO_PROTOCOL *This, IN EFI_CPU_IO_PROTOCOL_WIDTH Width, IN UINT64 Address, IN UINTN Count, OUT VOID *Buffer ) argument 467 CpuIoServiceWrite( IN EFI_CPU_IO_PROTOCOL *This, IN EFI_CPU_IO_PROTOCOL_WIDTH Width, IN UINT64 Address, IN UINTN Count, IN VOID *Buffer ) argument [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Pei/CpuIo/ |
H A D | CpuIo.c | 66 @param Count The number of accesses to perform. 79 IN UINTN Count, 99 @param Count The number of accesses to perform. 112 IN UINTN Count, 131 @param Count The number of accesses to perform. 144 IN UINTN Count, 163 @param Count The number of accesses to perform. 176 IN UINTN Count, 74 PeiDefaultMemRead( IN CONST EFI_PEI_SERVICES **PeiServices, IN CONST EFI_PEI_CPU_IO_PPI *This, IN EFI_PEI_CPU_IO_PPI_WIDTH Width, IN UINT64 Address, IN UINTN Count, IN OUT VOID *Buffer ) argument 107 PeiDefaultMemWrite( IN CONST EFI_PEI_SERVICES **PeiServices, IN CONST EFI_PEI_CPU_IO_PPI *This, IN EFI_PEI_CPU_IO_PPI_WIDTH Width, IN UINT64 Address, IN UINTN Count, IN OUT VOID *Buffer ) argument 139 PeiDefaultIoRead( IN CONST EFI_PEI_SERVICES **PeiServices, IN CONST EFI_PEI_CPU_IO_PPI *This, IN EFI_PEI_CPU_IO_PPI_WIDTH Width, IN UINT64 Address, IN UINTN Count, IN OUT VOID *Buffer ) argument 171 PeiDefaultIoWrite( IN CONST EFI_PEI_SERVICES **PeiServices, IN CONST EFI_PEI_CPU_IO_PPI *This, IN EFI_PEI_CPU_IO_PPI_WIDTH Width, IN UINT64 Address, IN UINTN Count, IN OUT VOID *Buffer ) argument
|
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/ArpDxe/ |
H A D | ArpMain.c | 390 UINTN Count; local 408 Count = ArpDeleteCacheEntry (Instance, BySwAddress, AddressBuffer, TRUE); 412 return (Count == 0) ? EFI_NOT_FOUND : EFI_SUCCESS; 435 UINTN Count; local 453 Count = ArpDeleteCacheEntry (Instance, FALSE, NULL, FALSE); 457 return (Count == 0) ? EFI_NOT_FOUND : EFI_SUCCESS; 714 UINTN Count; local 734 Count = ArpCancelRequest (Instance, TargetSwAddress, ResolvedEvent); 744 return (Count == 0) ? EFI_NOT_FOUND : EFI_SUCCESS;
|
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Mtftp6Dxe/ |
H A D | Mtftp6Option.c | 146 @param[in] Count The num of the extension options. 159 IN UINT32 Count, 171 for (Index = 0; Index < Count; Index++) { 249 @param[in, out] Count The num of the Options on input. 264 IN OUT UINT32 *Count, 301 if (Options != NULL && Num <= *Count) { 312 if (*Count < Num || Options == NULL) { 313 *Count = Num; 317 *Count = Num; 157 Mtftp6ParseExtensionOption( IN EFI_MTFTP6_OPTION *Options, IN UINT32 Count, IN BOOLEAN IsRequest, IN MTFTP6_EXT_OPTION_INFO *ExtInfo ) argument 261 Mtftp6ParsePacketOption( IN EFI_MTFTP6_PACKET *Packet, IN UINT32 PacketLen, IN OUT UINT32 *Count, IN EFI_MTFTP6_OPTION *Options OPTIONAL ) argument
|
H A D | Mtftp6Wrq.c | 291 UINT32 Count; local 313 Status = Mtftp6ParseStart (Packet, Len, &Count, &Options); 320 Status = Mtftp6ParseExtensionOption (Options, Count, FALSE, &ExtInfo);
|
/vbox/src/VBox/Devices/EFI/Firmware/OvmfPkg/BlockMmioToBlockIoDxe/ |
H A D | BlockIo.c | 93 UINTN Count; local 136 Count = BufferSize >> 3; 148 Count,
|
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/UserIdentification/PwdCredentialProviderDxe/ |
H A D | PwdCredentialProvider.h | 57 UINTN Count; member in struct:__anon12696 67 UINTN Count; member in struct:__anon12697
|
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/ |
H A D | MemImage.c | 47 @param[in] Count Ignored. 58 IN UINTN Count, 71 @param[in] Count Ignored. 82 IN UINTN Count, 54 DummyMemRead( IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL * This, IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width, IN UINT64 Address, IN UINTN Count, IN OUT VOID *Buffer ) argument 78 DummyMemWrite( IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL * This, IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width, IN UINT64 Address, IN UINTN Count, IN OUT VOID *Buffer ) argument
|