Home
last modified time | relevance | path

Searched refs:indata (Results 1 – 12 of 12) sorted by relevance

/u-boot/tools/binman/etype/
A Dblob_dtb.py49 _, 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 Du_boot_env.py30 indata = tools.read_file(self._pathname)
32 for line in indata.splitlines():
A Dblob.py80 indata = tools.read_file(pathname)
83 data = self.CompressData(indata)
A Dsection.py865 indata = data
866 data = child.DecompressData(indata)
869 (child.GetPath(), len(indata), child.compress,
/u-boot/tools/binman/btool/
A Dlz4.py81 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 Dlzma_alone.py58 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 Dopenssl.py47 indata = tools.read_file(input_fname)
48 hashval = hashlib.sha512(indata).hexdigest()
/u-boot/drivers/misc/
A Dp2sb-uclass.c104 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 Dbintool.py537 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 Dentry.py1182 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 Dcbfs_util.py248 indata = self.data
250 data = self.comp_bintool.decompress(indata)
252 data = indata
255 self.data_len = len(indata)
/u-boot/net/
A Dnet.c1008 uchar *indata = (uchar *)ip; in __net_defragment() local
1128 memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE, len); in __net_defragment()

Completed in 25 milliseconds