Return an eight byte string representing the quad-word value (little endian).
(self, word)
| 6885 | ## |
| 6886 | |
| 6887 | def get_data_from_qword(self, word): |
| 6888 | """Return an eight byte string representing the quad-word value (little endian).""" |
| 6889 | return struct.pack("<Q", word) |
| 6890 | |
| 6891 | def get_qword_from_data(self, data, offset): |
| 6892 | """Convert eight bytes of data to a word (little endian) |
no test coverage detected