Home
last modified time | relevance | path

Searched refs:GetByte (Results 1 – 7 of 7) sorted by relevance

/openbmc/u-boot/drivers/fpga/
H A Divm_core.c600 while ((cCurrentByte = GetByte()) & 0x80) { in ispVMDataSize()
639 usByte = GetByte(); in ispVMCode()
655 while ((cOpcode = GetByte()) >= 0) { in ispVMCode()
664 ucState = GetByte(); in ispVMCode()
784 g_ucEndDR = GetByte(); in ispVMCode()
798 g_ucEndIR = GetByte(); in ispVMCode()
862 cOpcode = GetByte(); in ispVMCode()
915 cRetCode = GetByte(); in ispVMCode()
980 (unsigned short)GetByte()); in ispVMCode()
992 (unsigned short)GetByte()); in ispVMCode()
[all …]
H A Dlattice.c124 unsigned char GetByte(void) in GetByte() function
193 ucReadByte = GetByte(); in ispVM()
196 crc = (unsigned char)GetByte(); in ispVM()
198 crc |= GetByte(); in ispVM()
202 szFileVersion[cIndex] = GetByte(); in ispVM()
208 szFileVersion[cIndex] = GetByte(); in ispVM()
/openbmc/u-boot/tools/binman/etype/
H A Dfill.py28 self.fill_value = fdt_util.GetByte(self._node, 'fill-byte', 0)
/openbmc/u-boot/include/
H A Dlattice.h294 unsigned char GetByte(void);
/openbmc/u-boot/tools/dtoc/
H A Dtest_fdt464 self.assertEqual(5, fdt_util.GetByte(self.node, 'byteval'))
465 self.assertEqual(3, fdt_util.GetByte(self.node, 'missing', 3))
468 fdt_util.GetByte(self.node, 'longbytearray')
473 fdt_util.GetByte(self.node, 'intval')
H A Dtest_fdt.py464 self.assertEqual(5, fdt_util.GetByte(self.node, 'byteval'))
465 self.assertEqual(3, fdt_util.GetByte(self.node, 'missing', 3))
468 fdt_util.GetByte(self.node, 'longbytearray')
473 fdt_util.GetByte(self.node, 'intval')
H A Dfdt_util.py151 def GetByte(node, propname, default=None): function