Searched defs:Value (Results 1 - 25 of 260) sorted by relevance

1234567891011

/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseSynchronizationLib/X64/
H A DInterlockedCompareExchange32.c31 specified by Value. If Value is equal to CompareValue, then Value is set to
32 ExchangeValue and CompareValue is returned. If Value is not equal to CompareValue,
33 then Value is returned. The compare exchange operation must be performed using
36 @param Value A pointer to the 32-bit value for the compare exchange
41 @return The original *Value before exchange.
47 IN UINT32 *Value,
52 return _InterlockedCompareExchange (Value, ExchangeValue, CompareValue);
46 InternalSyncCompareExchange32( IN UINT32 *Value, IN UINT32 CompareValue, IN UINT32 ExchangeValue ) argument
H A DInterlockedCompareExchange64.c31 by Value. If Value is equal to CompareValue, then Value is set to ExchangeValue and
32 CompareValue is returned. If Value is not equal to CompareValue, then Value is returned.
35 @param Value A pointer to the 64-bit value for the compare exchange
40 @return The original *Value before exchange.
46 IN UINT64 *Value,
51 return _InterlockedCompareExchange64 (Value, ExchangeValue, CompareValue);
45 InternalSyncCompareExchange64( IN UINT64 *Value, IN UINT64 CompareValue, IN UINT64 ExchangeValue ) argument
H A DGccInline.c23 Value and returns the incremented value. The increment operation must be
27 @param Value A pointer to the 32-bit value to increment.
35 IN volatile UINT32 *Value
45 "=m" (*Value) // %1
46 : "m" (*Value) // %2
59 Value and returns the decremented value. The decrement operation must be
63 @param Value A pointer to the 32-bit value to decrement.
71 IN volatile UINT32 *Value
81 "=m" (*Value) // %1
82 : "m" (*Value) //
111 InternalSyncCompareExchange32( IN OUT volatile UINT32 *Value, IN UINT32 CompareValue, IN UINT32 ExchangeValue ) argument
154 InternalSyncCompareExchange64( IN OUT volatile UINT64 *Value, IN UINT64 CompareValue, IN UINT64 ExchangeValue ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Main/
H A DByteSwap.c30 @param Value A 16-bit unsigned value.
32 @return The byte swapped Value.
35 uint16_t bswap16(uint16_t Value) argument
37 return SwapBytes16(Value);
47 @param Value A 32-bit unsigned value.
49 @return The byte swapped Value.
52 uint32_t bswap32(uint32_t Value) argument
54 return SwapBytes32(Value);
64 @param Value A 64-bit unsigned value.
66 @return The byte swapped Value
69 bswap64(uint64_t Value) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BasePostCodeLibDebug/
H A DPostCode.c24 Sends the 32-bit value specified by Value to a POST card, and returns Value.
26 directly to a POST card device. Other implementations may send Value to
32 PostCode() must return Value immediately.
34 @param Value The 32-bit value to write to the POST card.
42 IN UINT32 Value
45 DEBUG((EFI_D_INFO, "POST %08x\n", Value));
46 return Value;
53 Sends the 32-bit value specified by Value to a POST card, and returns Value
76 PostCodeWithDescription( IN UINT32 Value, IN CONST CHAR8 *Description OPTIONAL ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BasePostCodeLibPort80/
H A DPostCode.c24 Sends the 32-bit value specified by Value to a POST card, and returns Value.
26 directly to a POST card device. Other implementations may send Value to
32 PostCode() must return Value immediately.
34 @param Value The 32-bit value to write to the POST card.
42 IN UINT32 Value
45 IoWrite8 (0x80, (UINT8)(Value));
46 return Value;
53 Sends the 32-bit value specified by Value to a POST card, and returns Value
76 PostCodeWithDescription( IN UINT32 Value, IN CONST CHAR8 *Description OPTIONAL ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/StatusCode/Pei/
H A DMemoryStausCodeWorker.c57 @param Value Describes the current status of a hardware or
74 IN EFI_STATUS_CODE_VALUE Value,
98 Record->Value = Value;
72 MemoryStatusCodeReportWorker( IN EFI_STATUS_CODE_TYPE CodeType, IN EFI_STATUS_CODE_VALUE Value, IN UINT32 Instance ) argument
H A DSerialStatusCodeWorker.c20 @param Value Describes the current status of a hardware or
41 IN EFI_STATUS_CODE_VALUE Value,
59 ReportStatusCodeExtractAssertInfo (CodeType, Value, Data, &Filename, &Description, &LineNumber)) {
91 Value,
126 Value,
150 Value,
39 SerialStatusCodeReportWorker( IN EFI_STATUS_CODE_TYPE CodeType, IN EFI_STATUS_CODE_VALUE Value, IN UINT32 Instance, IN CONST EFI_GUID *CallerId, IN CONST EFI_STATUS_CODE_DATA *Data OPTIONAL ) argument
H A DStatusCodePei.c35 @param Value Describes the current status of a hardware or
58 IN EFI_STATUS_CODE_VALUE Value,
67 Value,
76 Value,
86 Value,
55 ReportDispatcher( IN CONST EFI_PEI_SERVICES **PeiServices, IN EFI_STATUS_CODE_TYPE CodeType, IN EFI_STATUS_CODE_VALUE Value, IN UINT32 Instance, IN CONST EFI_GUID *CallerId OPTIONAL, IN CONST EFI_STATUS_CODE_DATA *Data OPTIONAL ) argument
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/StatusCode/RuntimeDxe/
H A DRtMemoryStatusCodeWorker.c53 @param Value Describes the current status of a hardware or software entity.
65 IN EFI_STATUS_CODE_VALUE Value,
81 Record->Value = Value;
63 RtMemoryStatusCodeReportWorker( IN EFI_STATUS_CODE_TYPE CodeType, IN EFI_STATUS_CODE_VALUE Value, IN UINT32 Instance ) argument
H A DSerialStatusCodeWorker.c21 @param Value Describes the current status of a hardware or software entity.
39 IN EFI_STATUS_CODE_VALUE Value,
57 ReportStatusCodeExtractAssertInfo (CodeType, Value, Data, &Filename, &Description, &LineNumber)) {
89 Value,
124 Value,
148 Value,
37 SerialStatusCodeReportWorker( IN EFI_STATUS_CODE_TYPE CodeType, IN EFI_STATUS_CODE_VALUE Value, IN UINT32 Instance, IN EFI_GUID *CallerId, IN EFI_STATUS_CODE_DATA *Data OPTIONAL ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Library/OemHookStatusCodeLibNull/
H A DOemHookStatusCodeLibNull.c35 @param Value Describes the current status of a hardware or software entity.
54 IN EFI_STATUS_CODE_VALUE Value,
52 OemHookStatusCodeReport( IN EFI_STATUS_CODE_TYPE CodeType, IN EFI_STATUS_CODE_VALUE Value, IN UINT32 Instance, IN EFI_GUID *CallerId, OPTIONAL IN EFI_STATUS_CODE_DATA *Data OPTIONAL ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseSynchronizationLib/Arm/
H A DSynchronization.c20 specified by Value. If Value is equal to CompareValue, then Value is set to
21 ExchangeValue and CompareValue is returned. If Value is not equal to CompareValue,
22 then Value is returned. The compare exchange operation must be performed using
25 @param Value A pointer to the 32-bit value for the compare exchange
30 @return The original *Value before exchange.
36 IN volatile UINT32 *Value,
41 return *Value != CompareValue ? *Value
35 InternalSyncCompareExchange32( IN volatile UINT32 *Value, IN UINT32 CompareValue, IN UINT32 ExchangeValue ) argument
63 InternalSyncCompareExchange64( IN volatile UINT64 *Value, IN UINT64 CompareValue, IN UINT64 ExchangeValue ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseSynchronizationLib/Ebc/
H A DSynchronization.c20 unsigned integer specified by Value. If Value is equal to
21 CompareValue, then Value is set to ExchangeValue and
22 CompareValue is returned. If Value is not equal to
23 CompareValue, then Value is returned. The compare exchange
26 @param Value A pointer to the 32-bit value for the
31 @return The original *Value before exchange.
37 IN volatile UINT32 *Value,
42 return *Value != CompareValue ? *Value
36 InternalSyncCompareExchange32( IN volatile UINT32 *Value, IN UINT32 CompareValue, IN UINT32 ExchangeValue ) argument
64 InternalSyncCompareExchange64( IN volatile UINT64 *Value, IN UINT64 CompareValue, IN UINT64 ExchangeValue ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseSynchronizationLib/Ia32/
H A DGccInline.c22 Value and returns the incremented value. The increment operation must be
26 @param Value A pointer to the 32-bit value to increment.
34 IN volatile UINT32 *Value
44 "=m" (*Value) // %1
45 : "m" (*Value) // %2
59 Value and returns the decremented value. The decrement operation must be
63 @param Value A pointer to the 32-bit value to decrement.
71 IN volatile UINT32 *Value
81 "=m" (*Value) // %1
82 : "m" (*Value) //
110 InternalSyncCompareExchange32( IN OUT volatile UINT32 *Value, IN UINT32 CompareValue, IN UINT32 ExchangeValue ) argument
151 InternalSyncCompareExchange64( IN OUT volatile UINT64 *Value, IN UINT64 CompareValue, IN UINT64 ExchangeValue ) argument
[all...]
H A DInterlockedCompareExchange32.c22 specified by Value. If Value is equal to CompareValue, then Value is set to
23 ExchangeValue and CompareValue is returned. If Value is not equal to CompareValue,
24 then Value is returned. The compare exchange operation must be performed using
27 @param Value A pointer to the 32-bit value for the compare exchange
32 @return The original *Value before exchange.
38 IN UINT32 *Value,
44 mov ecx, Value
37 InternalSyncCompareExchange32( IN UINT32 *Value, IN UINT32 CompareValue, IN UINT32 ExchangeValue ) argument
H A DInterlockedCompareExchange64.c22 by Value. If Value is equal to CompareValue, then Value is set to ExchangeValue and
23 CompareValue is returned. If Value is not equal to CompareValue, then Value is returned.
26 @param Value A pointer to the 64-bit value for the compare exchange
31 @return The original *Value before exchange.
37 IN UINT64 *Value,
43 mov esi, Value
36 InternalSyncCompareExchange64( IN UINT64 *Value, IN UINT64 CompareValue, IN UINT64 ExchangeValue ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/PeiDxePostCodeLibReportStatusCode/
H A DPostCode.c42 Sends the 32-bit value specified by Value to a POST card, and returns Value.
44 directly to a POST card device. Other implementations may send Value to
50 PostCode() must return Value immediately.
52 @param Value The 32-bit value to write to the POST card.
60 IN UINT32 Value
63 REPORT_STATUS_CODE (EFI_PROGRESS_CODE, POST_CODE_TO_STATUS_CODE_VALUE (Value));
64 return Value;
71 Sends the 32-bit value specified by Value to a POST card, and returns Value
94 PostCodeWithDescription( IN UINT32 Value, IN CONST CHAR8 *Description OPTIONAL ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Include/Guid/
H A DDataHubStatusCodeRecord.h40 EFI_STATUS_CODE_VALUE Value; member in struct:__anon10441
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Pei/StatusCode/
H A DStatusCode.c24 @param Value Value to output for Status Code.
38 IN EFI_STATUS_CODE_VALUE Value,
61 Value,
35 PeiReportStatusCode( IN CONST EFI_PEI_SERVICES **PeiServices, IN EFI_STATUS_CODE_TYPE CodeType, IN EFI_STATUS_CODE_VALUE Value, IN UINT32 Instance, IN CONST EFI_GUID *CallerId, IN CONST EFI_STATUS_CODE_DATA *Data OPTIONAL ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Include/Guid/
H A DMemoryStatusCodeRecord.h72 EFI_STATUS_CODE_VALUE Value; member in struct:__anon10997
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/StatusCodeHandler/Pei/
H A DMemoryStausCodeWorker.c58 @param Value Describes the current status of a hardware or
81 IN EFI_STATUS_CODE_VALUE Value,
107 Record->Value = Value;
78 MemoryStatusCodeReportWorker( IN CONST EFI_PEI_SERVICES **PeiServices, IN EFI_STATUS_CODE_TYPE CodeType, IN EFI_STATUS_CODE_VALUE Value, IN UINT32 Instance, IN CONST EFI_GUID *CallerId, IN CONST EFI_STATUS_CODE_DATA *Data OPTIONAL ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/StatusCodeHandler/RuntimeDxe/
H A DMemoryStatusCodeWorker.c53 @param Value Describes the current status of a hardware or software entity.
70 IN EFI_STATUS_CODE_VALUE Value,
88 Record->Value = Value;
68 RtMemoryStatusCodeReportWorker( IN EFI_STATUS_CODE_TYPE CodeType, IN EFI_STATUS_CODE_VALUE Value, IN UINT32 Instance, IN EFI_GUID *CallerId, IN EFI_STATUS_CODE_DATA *Data OPTIONAL ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/StatusCodeHandler/Smm/
H A DMemoryStatusCodeWorker.c46 @param Value Describes the current status of a hardware or software entity.
63 IN EFI_STATUS_CODE_VALUE Value,
81 Record->Value = Value;
61 MemoryStatusCodeReportWorker( IN EFI_STATUS_CODE_TYPE CodeType, IN EFI_STATUS_CODE_VALUE Value, IN UINT32 Instance, IN EFI_GUID *CallerId, IN EFI_STATUS_CODE_DATA *Data OPTIONAL ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseIoLibIntrinsic/
H A DIoLibMsc.c74 UINT8 Value; local
77 Value = (UINT8)_inp ((UINT16)Port);
79 return Value;
85 Writes the 8-bit I/O port specified by Port with the value specified by Value
86 and returns Value. This function must guarantee that all I/O read and write
92 @param Value The value to write to the I/O port.
101 IN UINT8 Value
105 (UINT8)_outp ((UINT16)Port, Value);
107 return Value;
131 UINT16 Value; local
191 UINT32 Value; local
[all...]

Completed in 695 milliseconds

1234567891011