Home | History | Annotate | Download | only in Tools

Lines Matching full:bytearray

438         bytearray = []

442 bytearray.append("0x%02X" % (value & 0xFF))
444 newvalue = '{' + ','.join(bytearray) + '}'
695 bytearray = []
704 bytearray.append(value)
712 bytearray.append(value & 0xFF)
717 valuelist = [b for b in bytearray[SubItem['offset']:SubItem['offset']+SubItem['length']]]
722 valuestr = ",".join('0x%02X' % b for b in bytearray[SubItem['offset']:SubItem['offset']+SubItem['length']])