Searched defs:Result (Results 26 - 50 of 65) sorted by relevance

123

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Ip4ConfigDxe/
H A DIp4Config.h116 EFI_STATUS Result; member in struct:_IP4_CONFIG_INSTANCE
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Tcp4Dxe/
H A DTcp4Output.c961 INTN Result; local
980 Result = TcpTransmitSegment (Tcb, Nbuf);
983 return Result;
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/SetupBrowserDxe/
H A DProcessOptions.c87 INTN Result; local
93 if ((CompareHiiValue (&Option->Value, OptionValue, &Result, NULL) == EFI_SUCCESS) && (Result == 0)) {
H A DInputHandler.c944 INTN Result; local
1049 if (!OrderedList && (CompareHiiValue (&Question->HiiValue, &OneOfOption->Value, &Result, NULL) == EFI_SUCCESS) && (Result == 0)) {
H A DExpression.c997 @param Result Evaluation result for this opcode.
1007 OUT EFI_HII_VALUE *Result
1044 Result->Type = EFI_IFR_TYPE_UNDEFINED;
1052 CopyMem (Result, &Value, sizeof (EFI_HII_VALUE));
1081 Result->Type = EFI_IFR_TYPE_UNDEFINED;
1085 Result->Type = EFI_IFR_TYPE_STRING;
1086 Result->Value.string = NewString (String, FormSet->HiiHandle);
1095 @param Result Evaluation result for this opcode.
1104 OUT EFI_HII_VALUE *Result
1118 Result
1821 CompareHiiValue( IN EFI_HII_VALUE *Value1, IN EFI_HII_VALUE *Value2, OUT INTN *Result, IN EFI_HII_HANDLE HiiHandle OPTIONAL ) argument
2200 INTN Result; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseLib/
H A DString.c644 UINTN Result; local
666 Result = 0;
673 ASSERT (Result <= ((((UINTN) ~0) - (*String - L'0')) / 10));
675 Result = Result * 10 + (*String - L'0');
679 return Result;
723 UINT64 Result; local
745 Result = 0;
752 ASSERT (Result <= DivU64x32 (((UINT64) ~0) - (*String - L'0') , 10));
754 Result
802 UINTN Result; local
892 UINT64 Result; local
1671 UINTN Result; local
1745 UINT64 Result; local
1822 UINTN Result; local
1911 UINT64 Result; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BasePciCf8Lib/
H A DPciCf8Lib.c119 UINT8 Result; local
125 Result = IoRead8 (PCI_CONFIGURATION_DATA_PORT + (UINT16)(Address & 3));
128 return Result;
157 UINT8 Result; local
163 Result = IoWrite8 (
169 return Result;
202 UINT8 Result; local
208 Result = IoOr8 (
214 return Result;
247 UINT8 Result; local
295 UINT8 Result; local
343 UINT8 Result; local
394 UINT8 Result; local
449 UINT8 Result; local
504 UINT8 Result; local
563 UINT8 Result; local
606 UINT16 Result; local
645 UINT16 Result; local
691 UINT16 Result; local
737 UINT16 Result; local
786 UINT16 Result; local
835 UINT16 Result; local
887 UINT16 Result; local
943 UINT16 Result; local
999 UINT16 Result; local
1059 UINT16 Result; local
1102 UINT32 Result; local
1141 UINT32 Result; local
1187 UINT32 Result; local
1233 UINT32 Result; local
1282 UINT32 Result; local
1331 UINT32 Result; local
1383 UINT32 Result; local
1439 UINT32 Result; local
1495 UINT32 Result; local
1555 UINT32 Result; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/TcpDxe/
H A DTcpOutput.c1004 INTN Result; local
1023 Result = TcpTransmitSegment (Tcb, Nbuf);
1026 return Result;
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Bus/Isa/IsaFloppyDxe/
H A DIsaFloppyCtrl.c835 FDD_RESULT_PACKET Result; local
936 CommandPointer = (UINT8 *) (&Result);
959 return CheckResult (&Result, FdcDev);
1202 @param Result Point to result structure
1213 IN FDD_RESULT_PACKET *Result,
1220 if ((Result->Status0 & STS0_IC) != IC_NT) {
1221 if ((Result->Status0 & STS0_SE) == 0x20) {
1234 if ((Result->Status1 & (STS1_EN | STS1_DE | STS1_OR | STS1_ND | STS1_NW | STS1_MA)) != 0) {
1241 if ((Result->Status2 & (STS2_CM | STS2_DD | STS2_WC | STS2_BC | STS2_MD)) != 0) {
1212 CheckResult( IN FDD_RESULT_PACKET *Result, IN OUT FDC_BLK_IO_DEV *FdcDev ) argument
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Bus/Isa/IsaFloppyPei/
H A DFloppyPeim.c288 Result bytes can not be read from Data Register unless RQM is 1 and DIO is 1.
1137 @param Result FDC_RESULT_PACKET read from FDC after certain operation.
1140 @retval EFI_SUCCESS Result is healthy.
1141 @retval EFI_DEVICE_ERROR Result is not healthy.
1146 IN FDC_RESULT_PACKET *Result,
1150 if ((Result->Status0 & STS0_IC) != IC_NT) {
1151 if ((Result->Status0 & STS0_SE) == BIT5) {
1164 if ((Result->Status1 & (STS1_EN | STS1_DE | STS1_OR | STS1_ND | STS1_NW | STS1_MA)) != 0) {
1171 if ((Result->Status2 & (STS2_CM | STS2_DD | STS2_WC | STS2_BC | STS2_MD)) != 0) {
1381 FDC_RESULT_PACKET Result; local
1145 CheckResult( IN FDC_RESULT_PACKET *Result, OUT PEI_FLOPPY_DEVICE_INFO *Info ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/PcAtChipsetPkg/PciHostBridgeDxe/
H A DPciRootBridgeIo.c46 by Width. The result of this PCI memory read operation is stored in Result. This PCI memory
47 read operation is repeated until either a timeout of Delay 100 ns units has expired, or (Result &
60 @param[out] Result Pointer to the last value read from the memory location.
64 @retval EFI_INVALID_PARAMETER Result is NULL.
78 OUT UINT64 *Result
87 The result of this PCI I/O read operation is stored in Result. This PCI I/O read operation is
88 repeated until either a timeout of Delay 100 ns units has expired, or (Result & Mask) is equal
101 @param[out] Result Pointer to the last value read from the memory location.
105 @retval EFI_INVALID_PARAMETER Result is NULL.
119 OUT UINT64 *Result
1552 UINT64 Result; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellLevel2CommandsLib/
H A DMap.c78 BOOLEAN Result; local
101 Result = gUnicodeCollation->MetaiMatch(gUnicodeCollation, (CHAR16*)TempList, (CHAR16*)MetaTarget);
103 Result = (BOOLEAN)(StrCmp(TempList, MetaTarget)==0);
105 if (Result) {
/vbox/src/VBox/Devices/EFI/Firmware/UefiCpuPkg/Library/MtrrLib/
H A DMtrrLib.c598 UINT64 Result; local
601 Result = LShiftU64 (
608 Result = (UINT64) GetPowerOfTwo32 ((UINT32) MemoryLength);
611 return Result;
/vbox/include/iprt/
H A Duint128.h661 RTUINT128U Result; local
662 RTUInt128Mul(&Result, pValue1Result, pValue2);
663 *pValue1Result = Result;
678 RTUINT128U Result; local
680 RTUInt128DivRem(&Result, &Ignored, pValue1Result, pValue2);
681 *pValue1Result = Result;
697 RTUINT128U Result; local
698 RTUInt128DivRem(&Ignored, &Result, pValue1Result, pValue2);
699 *pValue1Result = Result;
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Pci/EhciDxe/
H A DEhciUrb.h234 UINT32 Result; member in struct:_URB
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Pci/EhciPei/
H A DEhciUrb.h232 UINT32 Result; member in struct:_PEI_URB
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/DriverSampleDxe/
H A DDriverSample.c572 @param Result The request result string.
582 IN EFI_STRING Result,
592 NewLen = StrLen (Result);
603 if (Result != NULL) {
604 StrCpy (StringPtr, Result);
605 StringPtr += StrLen (Result);
606 FreePool (Result);
581 CreateAltCfgString( IN EFI_STRING Result, IN EFI_STRING ConfigHdr, IN UINTN Offset, IN UINTN Width ) argument
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/Library/DxeImageVerificationLib/
H A DDxeImageVerificationLib.c1037 EFI_STATUS Result; local
1060 Result = gRT->GetVariable (EFI_KEY_EXCHANGE_KEY_NAME, &gEfiGlobalVariableGuid, NULL, &KekDataSize, NULL);
1061 if (Result != EFI_BUFFER_TOO_SMALL) {
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellCommandLib/
H A DConsistMapping.c147 UINT64 Result; local
154 Result = DivU64x32Remainder (Num, 25, &Rem);
155 if (Result > 0) {
156 AppendCSDNum2 (Str, Result);
/vbox/src/VBox/Devices/Network/testcase/
H A DtstIntNet-1.cpp349 uint16_t Result = ~cSum; local
350 return Result;
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Pci/UhciPei/
H A DUhcPeim.c581 // detail status is put into the Result field in the pIRP
2493 @param TransferResult Transfer Result.
2549 @param TransferResult Transfer Result.
2656 @param Result The result to return.
2666 OUT UINT32 *Result,
2673 *Result = EFI_USB_NOERROR;
2684 *Result |= EFI_USB_ERR_NOTEXECUTE;
2688 *Result |= EFI_USB_ERR_STALL;
2692 *Result |= EFI_USB_ERR_BUFFER;
2696 *Result |
2664 CheckTDsResults( IN TD_STRUCT *PtrTD, OUT UINT32 *Result, OUT UINTN *ErrTDPos, OUT UINTN *ActualTransferSize ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/HiiDatabaseDxe/
H A DConfigRouting.c329 EFI_STRING Result; local
348 Result = AllocateCopyPool (StrSize (String), String);
349 if (Result == NULL) {
352 *ConfigBody = Result;
358 Result = AllocateCopyPool (Length * sizeof (CHAR16), String);
359 if (Result == NULL) {
363 *(Result + Length - 1) = 0;
364 *ConfigBody = Result;
2569 @param Result Pointer to a null-terminated Unicode string in
2583 OUT EFI_STRING *Result
3982 EFI_STRING Result; local
[all...]
H A DDatabase.c3131 HII_HANDLE **Result; local
3152 Result = (HII_HANDLE **) Handle;
3223 *Result++ = Node->Handle;
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Ip6Dxe/
H A DIp6Nd.c1953 INTN Result; local
2133 Result = CompareMem (&LinkLayerAddress, &NeighborCache->LinkAddress, 6);
2140 if ((NeighborCache->State == EfiNeighborInComplete) || (Result != 0)) {
2398 INTN Result; local
2598 Result = CompareMem (LinkLayerOption->EtherAddr, &NeighborCache->LinkAddress, 6);
2605 if ((NeighborCache->State == EfiNeighborInComplete) || (Result != 0)) {
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Common/
H A DMisc.py77 Result = '{'
79 Result = Result + '0x' + GuidList[Index] + ', '
80 Result = Result + '{0x' + GuidList[3][0:2] + ', 0x' + GuidList[3][2:4]
82 Result = Result + ', 0x' + GuidList[4][Index:Index+2]
83 Result += '}}'
84 return Result
1170 Result variable in class:Blist
[all...]

Completed in 138 milliseconds

123