Searched refs:Value2 (Results 1 - 22 of 22) sorted by relevance

/device/linaro/bootloader/edk2/BaseTools/Source/Python/Table/
H A DTableDec.py41 # @param Value2: Value2 of a Dec item
56 Value2 VARCHAR,
76 # @param Value2: Value2 of a Dec item
87 def Insert(self, Model, Value1, Value2, Value3, Value4, Value5, Arch, BelongsToItem, BelongsToFile, StartLine, StartColumn, EndLine, EndColumn, Enabled):
89 (Value1, Value2, Value3, Arch) = ConvertToSqlString((Value1, Value2, Value3, Arch))
91 % (self.Table, self.ID, Model, Value1, Value2, Value3, Arch, BelongsToItem, BelongsToFile, StartLine, StartColumn, EndLine, EndColumn, Enabled)
103 SqlCommand = """select ID, Value1, Value2, Value
[all...]
H A DTableDsc.py41 # @param Value2: Value2 of a Dsc item
56 Value2 VARCHAR,
76 # @param Value2: Value2 of a Dsc item
87 def Insert(self, Model, Value1, Value2, Value3, Arch, BelongsToItem, BelongsToFile, StartLine, StartColumn, EndLine, EndColumn, Enabled):
89 (Value1, Value2, Value3, Arch) = ConvertToSqlString((Value1, Value2, Value3, Arch))
91 % (self.Table, self.ID, Model, Value1, Value2, Value3, Arch, BelongsToItem, BelongsToFile, StartLine, StartColumn, EndLine, EndColumn, Enabled)
103 SqlCommand = """select ID, Value1, Value2, Value
[all...]
H A DTableFdf.py41 # @param Value2: Value2 of a Fdf item
56 Value2 VARCHAR,
77 # @param Value2: Value2 of a Fdf item
88 def Insert(self, Model, Value1, Value2, Value3, Scope1, Scope2, BelongsToItem, BelongsToFile, StartLine, StartColumn, EndLine, EndColumn, Enabled):
90 (Value1, Value2, Value3, Scope1, Scope2) = ConvertToSqlString((Value1, Value2, Value3, Scope1, Scope2))
92 % (self.Table, self.ID, Model, Value1, Value2, Value3, Scope1, Scope2, BelongsToItem, BelongsToFile, StartLine, StartColumn, EndLine, EndColumn, Enabled)
104 SqlCommand = """select ID, Value1, Value2, Value
[all...]
H A DTableInf.py41 # @param Value2: Value2 of a Inf item
58 Value2 VARCHAR,
80 # @param Value2: Value2 of a Inf item
93 def Insert(self, Model, Value1, Value2, Value3, Value4, Value5, Arch, BelongsToItem, BelongsToFile, StartLine, StartColumn, EndLine, EndColumn, Enabled):
95 (Value1, Value2, Value3, Value4, Value5, Arch) = ConvertToSqlString((Value1, Value2, Value3, Value4, Value5, Arch))
97 % (self.Table, self.ID, Model, Value1, Value2, Value3, Value4, Value5, Arch, BelongsToItem, BelongsToFile, StartLine, StartColumn, EndLine, EndColumn, Enabled)
109 SqlCommand = """select ID, Value1, Value2, Value
[all...]
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/FrameworkHiiOnUefiHiiThunk/
H A DUefiIfrParserExpression.h76 @param Value2 Expression value to compare on right-hand
81 @retval 0 Value1 is greater than Value2
82 @retval 0 Value1 is less than Value2
88 IN EFI_HII_VALUE *Value2,
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/MetaFileWorkspace/
H A DMetaFileTable.py52 Value2 TEXT,
76 # @param Value2: Value2 of a Inf item
87 def Insert(self, Model, Value1, Value2, Value3, Scope1='COMMON', Scope2='COMMON',
89 (Value1, Value2, Value3, Usage, Scope1, Scope2) = ConvertToSqlString((Value1, Value2, Value3, Usage, Scope1, Scope2))
94 Value2,
118 ValueString = "Value1,Value2,Value3,Usage,Scope1,Scope2,ID,StartLine"
134 Value2 TEXT,
159 # @param Value2
[all...]
H A DMetaFileParser.py571 # Model, Value1, Value2, Value3, Arch, Platform, BelongsToItem=-1,
883 # Model, Value1, Value2, Value3, Arch, ModuleType, BelongsToItem=-1, BelongsToFile=-1,
967 # Model, Value1, Value2, Value3, Arch, ModuleType, BelongsToItem=-1, BelongsToFile=-1,
1582 # Model, Value1, Value2, Value3, Arch, BelongsToItem=-1, LineBegin=-1,
1973 (Model, Value1, Value2, Value3, Scope1, Scope2, BelongsToItem, BelongsToFile, StartLine, StartColumn, EndLine, EndColumn, Enabled) = \
1980 Value2 = Key[0]
1984 self.TblFdf.Insert(Model, Value1, Value2, Value3, Scope1, Scope2, BelongsToItem, BelongsToFile, StartLine, StartColumn, EndLine, EndColumn, Enabled)
1988 Value2 = ''
1992 self.TblFdf.Insert(Model, Value1, Value2, Value3, Scope1, Scope2, BelongsToItem, BelongsToFile, StartLine, StartColumn, EndLine, EndColumn, Enabled)
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
H A DFdfClassObject.py89 (Model, Value1, Value2, Value3, Arch, BelongsToItem, BelongsToFile, StartLine, StartColumn, EndLine, EndColumn, Enabled) = \
96 Value2 = ".".join((Key[1], Key[0]))
100 self.TblFdf.Insert(Model, Value1, Value2, Value3, Arch, BelongsToItem, BelongsToFile, StartLine, StartColumn, EndLine, EndColumn, Enabled)
104 Value2 = ''
108 self.TblFdf.Insert(Model, Value1, Value2, Value3, Arch, BelongsToItem, BelongsToFile, StartLine, StartColumn, EndLine, EndColumn, Enabled)
H A DDscClassObject.py198 SqlCommand = """update %s set Value2 = '%s' where ID = %s""" % (self.TblDsc.Table, ".".join((self.PcdToken[Key][0], self.PcdToken[Key][1])), Key)
222 ID, Value1, Value2, Arch = Record[0], ValueList[0], ValueList[1], Record[2]
223 SqlCommand = """update %s set Value1 = '%s', Value2 = '%s'
224 where ID = %s""" % (self.TblDsc.Table, ConvertToSqlString2(Value1), ConvertToSqlString2(Value2), ID)
302 SqlCommand = """update %s set Value1 = '%s', Value2 = '%s', Value3 = '%s'
363 SqlCommand = """update %s set Value1 = '%s', Value2 = '%s'
450 SqlCommand = """update %s set Value1 = '%s', Value2 = '%s', Value3 = '%s'
937 # Value2: Macro Value
950 # Value2: Item Value
970 (Value1, Value2, Value
[all...]
H A DDecClassObject.py311 ID, Value1, Value2, Arch, LineNo = Record[3], ValueList[0], ValueList[1], Record[1], Record[2]
312 SqlCommand = """update %s set Value1 = '%s', Value2 = '%s'
313 where ID = %s""" % (self.TblDec.Table, ConvertToSqlString2(Value1), ConvertToSqlString2(Value2), ID)
384 SqlCommand = """update %s set Value1 = '%s', Value2 = '%s'
432 SqlCommand = """update %s set Value1 = '%s', Value2 = '%s', Value3 = '%s'
499 SqlCommand = """update %s set Value2 = '%s' where ID = %s""" % (self.TblDec.Table, ".".join((PcdToken[Key][0], PcdToken[Key][1])), Key)
H A DInfClassObject.py543 ID, Value1, Value2, Arch, LineNo = Record[3], ValueList[0], ValueList[1], Record[1], Record[2]
544 SqlCommand = """update %s set Value1 = '%s', Value2 = '%s'
545 where ID = %s""" % (self.TblInf.Table, ConvertToSqlString2(Value1), ConvertToSqlString2(Value2), ID)
665 SqlCommand = """update %s set Value1 = '%s', Value2 = '%s', Value3 = '%s'
760 SqlCommand = """update %s set Value1 = '%s', Value2 = '%s', Value3 = '%s'
798 SqlCommand = """update %s set Value1 = '%s', Value2 = '%s'
924 SqlCommand = """update %s set Value2 = '%s' where ID = %s""" % (self.TblInf.Table, ".".join((PcdToken[Key][0], PcdToken[Key][1])), Key)
961 SqlCommand = """update %s set Value1 = '%s', Value2 = '%s', Value3 = '%s', Value4 = '%s', Value5 = '%s'
1047 SqlCommand = """update %s set Value1 = '%s', Value2 = '%s', Value3 = '%s', Value4 = '%s'
1079 SqlCommand = """update %s set Value1 = '%s', Value2
[all...]
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Workspace/
H A DMetaFileTable.py78 Value2 TEXT,
100 # @param Value2: Value2 of a Inf item
111 def Insert(self, Model, Value1, Value2, Value3, Scope1='COMMON', Scope2='COMMON',
113 (Value1, Value2, Value3, Scope1, Scope2) = ConvertToSqlString((Value1, Value2, Value3, Scope1, Scope2))
118 Value2,
140 ValueString = "Value1,Value2,Value3,Scope1,Scope2,ID,StartLine"
158 Value2 TEXT,
182 # @param Value2
[all...]
/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 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...]
H A DFormDisplay.h347 @param Value2 Expression value to compare on right-hand.
350 return Positive value if Value1 is greater than Value2.
351 retval Negative value if Value1 is less than Value2.
361 IN EFI_HII_VALUE *Value2,
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
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/
H A DMisc.py1008 Value2 = ''
1021 if not Value2:
1022 Value2 = Value
1024 Value2 = Value
1046 if Value2:
1047 return Value2
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/
H A DCheck.py599 where A.Value2 = 'LIBRARY_CLASS' and A.Model = %s
600 and B.Value2 = 'MODULE_TYPE' and B.Model = %s and A.BelongsToFile = B.BelongsToFile
623 where A.Model = %s and B.Value2 = '%s' and B.Model = %s
649 SqlCommand = """select ID, Value1, Value2 from Dsc where Model = %s""" % MODEL_EFI_LIBRARY_CLASS
662 and Value2 = '%s'""" % (LibraryIns, 'LIBRARY_CLASS')
692 and A.Value1 = B.Value1 and A.Value2 <> B.Value2 and A.BelongsToItem = -1 and B.BelongsToItem = -1 and A.StartLine <> B.StartLine and B.BelongsToFile = A.BelongsToFile""" \
748 select A.ID, A.Value1, A.Value2, A.BelongsToFile, B.ID, B.Value1, B.Value2, B.BelongsToFile from Dsc as A, Fdf as B
752 and A.Value2
[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...]
H A DSetup.h1650 @param Value2 Expression value to compare on right-hand.
1653 return Positive value if Value1 is greater than Value2.
1654 retval Negative value if Value1 is less than Value2.
1664 IN EFI_HII_VALUE *Value2,

Completed in 192 milliseconds