Lines Matching refs:bytes
40 def __init__(self, node, offset, name, bytes): argument
45 self.bytes = str(bytes)
46 if not bytes:
50 self.type, self.value = self.BytesToValue(bytes)
93 def BytesToValue(self, bytes): argument
108 bytes = str(bytes)
109 size = len(bytes)
110 strings = bytes.split('\0')
131 return TYPE_BYTE, bytes[0]
133 return TYPE_BYTE, list(bytes)
136 val.append(bytes[i:i + 4])