Searched refs:indata (Results 1 – 12 of 12) sorted by relevance
| /u-boot/tools/binman/etype/ |
| A D | blob_dtb.py | 49 _, indata = state.GetFdtContents(self.GetFdtEtype()) 54 data = self.CompressData(indata) 79 def CompressData(self, indata): argument 80 data = super().CompressData(indata) 86 def DecompressData(self, indata): argument 88 data_len = struct.unpack('<I', indata[:4])[0] 89 indata = indata[4:4 + data_len] 90 data = super().DecompressData(indata)
|
| A D | u_boot_env.py | 30 indata = tools.read_file(self._pathname) 32 for line in indata.splitlines():
|
| A D | blob.py | 80 indata = tools.read_file(pathname) 83 data = self.CompressData(indata)
|
| A D | section.py | 865 indata = data 866 data = child.DecompressData(indata) 869 (child.GetPath(), len(indata), child.compress,
|
| /u-boot/tools/binman/btool/ |
| A D | lz4.py | 81 def compress(self, indata): argument 92 tools.write_file(tmp.name, indata) 96 def decompress(self, indata): argument 107 tools.write_file(inf.name, indata)
|
| A D | lzma_alone.py | 58 def compress(self, indata): argument 69 tools.write_file(inf.name, indata) 76 def decompress(self, indata): argument 87 tools.write_file(inf.name, indata)
|
| A D | openssl.py | 47 indata = tools.read_file(input_fname) 48 hashval = hashlib.sha512(indata).hexdigest()
|
| /u-boot/drivers/misc/ |
| A D | p2sb-uclass.c | 104 void pcr_write32(struct udevice *dev, uint offset, uint indata) in pcr_write32() argument 107 assert(IS_ALIGNED(offset, sizeof(indata))); in pcr_write32() 109 writel(indata, pcr_reg_address(dev, offset)); in pcr_write32() 114 void pcr_write16(struct udevice *dev, uint offset, uint indata) in pcr_write16() argument 119 writew(indata, pcr_reg_address(dev, offset)); in pcr_write16() 124 void pcr_write8(struct udevice *dev, uint offset, uint indata) in pcr_write8() argument 129 writeb(indata, pcr_reg_address(dev, offset)); in pcr_write8()
|
| /u-boot/tools/binman/ |
| A D | bintool.py | 537 def compress(self, indata): argument 548 tools.write_file(tmp.name, indata) 552 def decompress(self, indata): argument 563 tools.write_file(inf.name, indata)
|
| A D | entry.py | 1182 def CompressData(self, indata): argument 1191 self.uncomp_data = indata 1193 self.uncomp_size = len(indata) 1195 data = self.comp_bintool.compress(indata) 1200 data = indata 1203 def DecompressData(self, indata): argument 1214 data = self.comp_bintool.decompress(indata) 1220 data = indata
|
| A D | cbfs_util.py | 248 indata = self.data 250 data = self.comp_bintool.decompress(indata) 252 data = indata 255 self.data_len = len(indata)
|
| /u-boot/net/ |
| A D | net.c | 1008 uchar *indata = (uchar *)ip; in __net_defragment() local 1128 memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE, len); in __net_defragment()
|
Completed in 25 milliseconds