Searched refs:indata (Results 1 – 9 of 9) sorted by relevance
| /u-boot/drivers/misc/ |
| A D | p2sb-uclass.c | 102 void pcr_write32(struct udevice *dev, uint offset, uint indata) in pcr_write32() argument 105 assert(IS_ALIGNED(offset, sizeof(indata))); in pcr_write32() 107 writel(indata, pcr_reg_address(dev, offset)); in pcr_write32() 112 void pcr_write16(struct udevice *dev, uint offset, uint indata) in pcr_write16() argument 117 writew(indata, pcr_reg_address(dev, offset)); in pcr_write16() 122 void pcr_write8(struct udevice *dev, uint offset, uint indata) in pcr_write8() argument 127 writeb(indata, pcr_reg_address(dev, offset)); in pcr_write8()
|
| /u-boot/tools/patman/ |
| A D | tools.py | 458 def Compress(indata, algo, with_header=True): argument 475 return indata 477 WriteFile(fname, indata) 495 def Decompress(indata, algo, with_header=True): argument 512 return indata 514 data_len = struct.unpack('<I', indata[:4])[0] 515 indata = indata[4:4 + data_len] 518 fd.write(indata)
|
| /u-boot/tools/binman/etype/ |
| A D | blob_dtb.py | 33 _, indata = state.GetFdtContents(self.GetFdtEtype()) 34 data = self.CompressData(indata)
|
| A D | u_boot_env.py | 30 indata = tools.ReadFile(self._pathname) 32 for line in indata.splitlines():
|
| A D | blob.py | 62 indata = tools.ReadFile(self._pathname) 63 data = self.CompressData(indata)
|
| A D | section.py | 624 indata = data 625 data = tools.Decompress(indata, child.compress) 628 (child.GetPath(), len(indata), child.compress,
|
| /u-boot/tools/binman/ |
| A D | cbfs_util.py | 241 indata = self.data 243 data = tools.Decompress(indata, 'lz4', with_header=False) 245 data = tools.Decompress(indata, 'lzma', with_header=False) 247 data = indata 250 self.data_len = len(indata)
|
| A D | entry.py | 885 def CompressData(self, indata): argument 894 self.uncomp_data = indata 896 self.uncomp_size = len(indata) 897 data = tools.Compress(indata, self.compress)
|
| /u-boot/net/ |
| A D | net.c | 906 uchar *indata = (uchar *)ip; in __net_defragment() local 1011 memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE, len); in __net_defragment()
|
Completed in 13 milliseconds