Searched defs:Value2 (Results 1 - 6 of 6) sorted by relevance

/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/
H A DBitField.c775 UINT64 Value2; local
781 Value2 = LShiftU64 ((UINT64) - 2, EndBit);
783 return Operand | (Value1 & ~Value2);
819 UINT64 Value2; local
825 Value2 = LShiftU64 ((UINT64)-2, EndBit);
827 return Operand & ~(Value1 & ~Value2);
/device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/
H A DBitField.c807 UINT64 Value2; local
820 Value2 = LShiftU64 ((UINT64) - 2, EndBit);
822 return Operand | (Value1 & ~Value2);
859 UINT64 Value2; local
872 Value2 = LShiftU64 ((UINT64)-2, EndBit);
874 return Operand & ~(Value1 & ~Value2);
/device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/DataSource/
H A DDataSource.c198 UINT32 Value2; local
225 &Value2,
229 && ( 255 >= Value2 )
238 | ( Value2 << 8 )
250 Value2,
257 &Value2,
265 && ( 0xffff >= Value2 )
279 pRemoteAddress6->sin6_addr.__u6_addr.__u6_addr8[ 2 ] = (UINT8)( Value2 >> 8 );
280 pRemoteAddress6->sin6_addr.__u6_addr.__u6_addr8[ 3 ] = (UINT8)Value2;
301 Value2,
[all...]
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/DisplayEngineDxe/
H A DInputHandler.c1173 @param Value2 The second value need to compare.
1183 IN EFI_IFR_TYPE_VALUE *Value2,
1190 return (BOOLEAN) (Value1->u8 == Value2->u8);
1193 return (BOOLEAN) (Value1->u16 == Value2->u16);
1196 return (BOOLEAN) (Value1->u32 == Value2->u32);
1199 return (BOOLEAN) (Value1->u64 == Value2->u64);
1181 IsValuesEqual( IN EFI_IFR_TYPE_VALUE *Value1, IN EFI_IFR_TYPE_VALUE *Value2, IN UINT8 Type ) argument
H A DProcessOptions.c208 @param Value2 Expression value to compare on right-hand.
211 return Positive value if Value1 is greater than Value2.
212 retval Negative value if Value1 is less than Value2.
222 IN EFI_HII_VALUE *Value2,
236 if (Value1->Type == EFI_IFR_TYPE_STRING && Value2->Type == EFI_IFR_TYPE_STRING) {
237 if (Value1->Value.string == 0 || Value2->Value.string == 0) {
244 if (Value1->Value.string == Value2->Value.string) {
257 Str2 = GetToken (Value2->Value.string, HiiHandle);
274 if (IsTypeInBuffer(Value1) && IsTypeInBuffer(Value2)) {
276 GetBufAndLenForValue(Value2,
220 CompareHiiValue( IN EFI_HII_VALUE *Value1, IN EFI_HII_VALUE *Value2, OUT INTN *Result, IN EFI_HII_HANDLE HiiHandle OPTIONAL ) argument
[all...]
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/SetupBrowserDxe/
H A DExpression.c2187 @param Value2 Expression value to compare on right-hand.
2190 return Positive value if Value1 is greater than Value2.
2191 retval Negative value if Value1 is less than Value2.
2201 IN EFI_HII_VALUE *Value2,
2215 if (Value1->Type == EFI_IFR_TYPE_STRING && Value2->Type == EFI_IFR_TYPE_STRING) {
2216 if (Value1->Value.string == 0 || Value2->Value.string == 0) {
2223 if (Value1->Value.string == Value2->Value.string) {
2236 Str2 = GetToken (Value2->Value.string, HiiHandle);
2253 if (IsTypeInBuffer(Value1) && IsTypeInBuffer(Value2)) {
2256 Buf2 = GetBufferForValue(Value2);
2199 CompareHiiValue( IN EFI_HII_VALUE *Value1, IN EFI_HII_VALUE *Value2, OUT INTN *Result, IN EFI_HII_HANDLE HiiHandle OPTIONAL ) argument
[all...]

Completed in 115 milliseconds