Home
last modified time | relevance | path

Searched refs:ByteList (Results 1 – 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/BaseTools/Source/Python/PatchPcdValue/
DPatchPcdValue.py92 ByteList = ByteArray.tolist()
97 ByteList[ValueOffset + Index] = 0
124 ByteList[ValueOffset] = ValueNumber
140 ByteList[ValueOffset + Index] = ValueNumber % 0x100
158 ByteList[ValueOffset + Index] = ord(ByteString)
172 ByteList[ValueOffset + Index] = ByteValue % 0x100
192 ByteList[ValueOffset + Index] = ord(ByteString)
197 if ByteList != OrigByteList:
199 ByteArray.fromlist(ByteList)
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
DMisc.py1915 ByteList = ByteArray.tolist()
1917 if self._ByteListToStr (ByteList[0x0:0x2]) != 'MZ':
1922 PeOffset = self._ByteListToInt(ByteList[0x3C:0x3E])
1934 ByteList = ByteArray.tolist()
1935 SecNumber = self._ByteListToInt(ByteList[0x2:0x4])
1944 ByteList = ByteArray.tolist()
1945 self.EntryPoint = self._ByteListToInt(ByteList[0x10:0x14])
1946 self.SectionAlignment = self._ByteListToInt(ByteList[0x20:0x24])
1947 self.Size = self._ByteListToInt(ByteList[0x38:0x3C])
1953 ByteList = ByteArray.tolist()
[all …]
/device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
DFv.py369 ByteList = self.FvExtEntryData[Index].split(',')
370 Size = len (ByteList)
376 Buffer += pack('B', int(ByteList[Index1], 16))