Searched defs:Operand (Results 1 - 17 of 17) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseLib/
H A DARShiftU64.c21 This function shifts the 64-bit value Operand to the right by Count bits. The
22 high Count bits are set to bit 63 of Operand. The shifted value is returned.
26 @param Operand The 64-bit operand to shift right.
29 @return Operand >> Count
35 IN UINT64 Operand,
40 return InternalMathARShiftU64 (Operand, Count);
34 ARShiftU64( IN UINT64 Operand, IN UINTN Count ) argument
H A DLRotU32.c21 This function rotates the 32-bit value Operand to the left by Count bits. The
22 low Count bits are fill with the high Count bits of Operand. The rotated
27 @param Operand The 32-bit operand to rotate left.
30 @return Operand << Count
36 IN UINT32 Operand,
41 return (Operand << Count) | (Operand >> (32 - Count));
35 LRotU32( IN UINT32 Operand, IN UINTN Count ) argument
H A DLRotU64.c21 This function rotates the 64-bit value Operand to the left by Count bits. The
22 low Count bits are fill with the high Count bits of Operand. The rotated
27 @param Operand The 64-bit operand to rotate left.
30 @return Operand << Count
36 IN UINT64 Operand,
41 return InternalMathLRotU64 (Operand, Count);
35 LRotU64( IN UINT64 Operand, IN UINTN Count ) argument
H A DLShiftU64.c21 This function shifts the 64-bit value Operand to the left by Count bits. The
26 @param Operand The 64-bit operand to shift left.
29 @return Operand << Count.
35 IN UINT64 Operand,
40 return InternalMathLShiftU64 (Operand, Count);
34 LShiftU64( IN UINT64 Operand, IN UINTN Count ) argument
H A DRRotU32.c21 This function rotates the 32-bit value Operand to the right by Count bits.
22 The high Count bits are fill with the low Count bits of Operand. The rotated
27 @param Operand The 32-bit operand to rotate right.
30 @return Operand >> Count.
36 IN UINT32 Operand,
41 return (Operand >> Count) | (Operand << (32 - Count));
35 RRotU32( IN UINT32 Operand, IN UINTN Count ) argument
H A DRRotU64.c21 This function rotates the 64-bit value Operand to the right by Count bits.
22 The high Count bits are fill with the low Count bits of Operand. The rotated
27 @param Operand The 64-bit operand to rotate right.
30 @return Operand >> Count.
36 IN UINT64 Operand,
41 return InternalMathRRotU64 (Operand, Count);
35 RRotU64( IN UINT64 Operand, IN UINTN Count ) argument
H A DRShiftU64.c21 This function shifts the 64-bit value Operand to the right by Count bits. The
26 @param Operand The 64-bit operand to shift right.
29 @return Operand >> Count.
35 IN UINT64 Operand,
40 return InternalMathRShiftU64 (Operand, Count);
34 RShiftU64( IN UINT64 Operand, IN UINTN Count ) argument
H A DMath64.c22 This function shifts the 64-bit value Operand to the left by Count bits. The
25 @param Operand The 64-bit operand to shift left.
28 @return Operand << Count.
34 IN UINT64 Operand,
38 return Operand << Count;
45 This function shifts the 64-bit value Operand to the right by Count bits. The
48 @param Operand The 64-bit operand to shift right.
51 @return Operand >> Count.
57 IN UINT64 Operand,
61 return Operand >> Coun
33 InternalMathLShiftU64( IN UINT64 Operand, IN UINTN Count ) argument
56 InternalMathRShiftU64( IN UINT64 Operand, IN UINTN Count ) argument
79 InternalMathARShiftU64( IN UINT64 Operand, IN UINTN Count ) argument
121 InternalMathLRotU64( IN UINT64 Operand, IN UINTN Count ) argument
145 InternalMathRRotU64( IN UINT64 Operand, IN UINTN Count ) argument
[all...]
H A DBitField.c18 Worker function that returns a bit field from Operand.
20 Returns the bitfield specified by the StartBit and the EndBit from Operand.
22 @param Operand Operand on which to perform the bitfield operation.
32 IN UINTN Operand,
41 return (Operand & ~((UINTN)-2 << EndBit)) >> StartBit;
45 Worker function that reads a bit field from Operand, performs a bitwise OR,
49 in Operand and the value specified by AndData. All other bits in Operand are
52 @param Operand Operan
31 InternalBaseLibBitFieldReadUint( IN UINTN Operand, IN UINTN StartBit, IN UINTN EndBit ) argument
62 InternalBaseLibBitFieldOrUint( IN UINTN Operand, IN UINTN StartBit, IN UINTN EndBit, IN UINTN OrData ) argument
94 InternalBaseLibBitFieldAndUint( IN UINTN Operand, IN UINTN StartBit, IN UINTN EndBit, IN UINTN AndData ) argument
129 BitFieldRead8( IN UINT8 Operand, IN UINTN StartBit, IN UINTN EndBit ) argument
164 BitFieldWrite8( IN UINT8 Operand, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 Value ) argument
201 BitFieldOr8( IN UINT8 Operand, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 OrData ) argument
238 BitFieldAnd8( IN UINT8 Operand, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData ) argument
277 BitFieldAndThenOr8( IN UINT8 Operand, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData, IN UINT8 OrData ) argument
316 BitFieldRead16( IN UINT16 Operand, IN UINTN StartBit, IN UINTN EndBit ) argument
351 BitFieldWrite16( IN UINT16 Operand, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 Value ) argument
388 BitFieldOr16( IN UINT16 Operand, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 OrData ) argument
425 BitFieldAnd16( IN UINT16 Operand, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData ) argument
464 BitFieldAndThenOr16( IN UINT16 Operand, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData, IN UINT16 OrData ) argument
503 BitFieldRead32( IN UINT32 Operand, IN UINTN StartBit, IN UINTN EndBit ) argument
538 BitFieldWrite32( IN UINT32 Operand, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 Value ) argument
575 BitFieldOr32( IN UINT32 Operand, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 OrData ) argument
612 BitFieldAnd32( IN UINT32 Operand, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData ) argument
651 BitFieldAndThenOr32( IN UINT32 Operand, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData, IN UINT32 OrData ) argument
690 BitFieldRead64( IN UINT64 Operand, IN UINTN StartBit, IN UINTN EndBit ) argument
725 BitFieldWrite64( IN UINT64 Operand, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 Value ) argument
762 BitFieldOr64( IN UINT64 Operand, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 OrData ) argument
806 BitFieldAnd64( IN UINT64 Operand, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 AndData ) argument
852 BitFieldAndThenOr64( IN UINT64 Operand, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 AndData, IN UINT64 OrData ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseLib/Ia32/
H A DARShiftU64.c22 This function shifts the 64-bit value Operand to the right by Count bits. The
23 high Count bits are set to bit 63 of Operand. The shifted value is returned.
25 @param Operand The 64-bit operand to shift right.
28 @return Operand arithmetically shifted right by Count.
34 IN UINT64 Operand,
40 mov eax, dword ptr [Operand + 4]
44 cmovz eax, dword ptr [Operand + 0]
33 InternalMathARShiftU64( IN UINT64 Operand, IN UINTN Count ) argument
H A DLShiftU64.c22 This function shifts the 64-bit value Operand to the left by Count bits. The
25 @param Operand The 64-bit operand to shift left.
28 @return Operand << Count
34 IN UINT64 Operand,
41 mov edx, dword ptr [Operand + 0]
44 cmovz edx, dword ptr [Operand + 4]
33 InternalMathLShiftU64( IN UINT64 Operand, IN UINTN Count ) argument
H A DRShiftU64.c22 This function shifts the 64-bit value Operand to the right by Count bits. The
25 @param Operand The 64-bit operand to shift right.
28 @return Operand >> Count
34 IN UINT64 Operand,
41 mov eax, dword ptr [Operand + 4]
44 cmovz eax, dword ptr [Operand + 0]
33 InternalMathRShiftU64( IN UINT64 Operand, IN UINTN Count ) argument
H A DLRotU64.c22 This function rotates the 64-bit value Operand to the left by Count bits. The
23 low Count bits are fill with the high Count bits of Operand. The rotated
26 @param Operand The 64-bit operand to rotate left.
29 @return Operand <<< Count
35 IN UINT64 Operand,
41 mov edx, dword ptr [Operand + 4]
42 mov eax, dword ptr [Operand + 0]
34 InternalMathLRotU64( IN UINT64 Operand, IN UINTN Count ) argument
H A DRRotU64.c22 This function rotates the 64-bit value Operand to the right by Count bits.
23 The high Count bits are fill with the low Count bits of Operand. The rotated
26 @param Operand The 64-bit operand to rotate right.
29 @return Operand >>> Count
35 IN UINT64 Operand,
41 mov eax, dword ptr [Operand + 0]
42 mov edx, dword ptr [Operand + 4]
34 InternalMathRRotU64( IN UINT64 Operand, IN UINTN Count ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/SetupBrowserDxe/
H A DIfrParse.c59 Statement->Operand = ((EFI_IFR_OP_HEADER *) OpCodeData)->OpCode;
114 ASSERT (Statement->Operand == EFI_IFR_NUMERIC_OP);
408 if ((Question->Operand == EFI_IFR_PASSWORD_OP) && ((Question->QuestionFlags & EFI_IFR_FLAG_CALLBACK) == EFI_IFR_FLAG_CALLBACK)) {
670 if (Statement->Operand == EFI_IFR_STRING_OP || Statement->Operand == EFI_IFR_PASSWORD_OP) {
831 Tell whether this Operand is an Expression OpCode or not
833 @param Operand Operand of an IFR OpCode.
841 IN UINT8 Operand
844 if (((Operand >
923 UINT8 Operand; local
[all...]
H A DSetup.h257 UINT8 Operand; member in struct:__anon11274
360 UINT8 Operand; // The operand (first byte) of this Statement or Question member in struct:__anon11281
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/EbcDxe/
H A DEbcExecute.c876 @param Op1 Operand 1 from the instruction
877 @param Op2 Operand 2 from the instruction
896 @param Op1 Operand 1 from the instruction
897 @param Op2 Operand 2 from the instruction
916 @param Op1 Operand 1 from the instruction
917 @param Op2 Operand 2 from the instruction
936 @param Op1 Operand 1 from the instruction
937 @param Op2 Operand 2 from the instruction
956 @param Op1 Operand 1 from the instruction
957 @param Op2 Operand
1956 UINT8 Operand; local
[all...]

Completed in 62 milliseconds