Home
last modified time | relevance | path

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

/u-boot/drivers/misc/
A Dp2sb-uclass.c102 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 Dtools.py458 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 Dblob_dtb.py33 _, indata = state.GetFdtContents(self.GetFdtEtype())
34 data = self.CompressData(indata)
A Du_boot_env.py30 indata = tools.ReadFile(self._pathname)
32 for line in indata.splitlines():
A Dblob.py62 indata = tools.ReadFile(self._pathname)
63 data = self.CompressData(indata)
A Dsection.py624 indata = data
625 data = tools.Decompress(indata, child.compress)
628 (child.GetPath(), len(indata), child.compress,
/u-boot/tools/binman/
A Dcbfs_util.py241 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 Dentry.py885 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 Dnet.c906 uchar *indata = (uchar *)ip; in __net_defragment() local
1011 memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE, len); in __net_defragment()

Completed in 13 milliseconds