MCPcopy Create free account
hub / github.com/ELMERIKH/PyinMemoryPE / get_data_from_qword

Method get_data_from_qword

pythonmemorymodule/pefile.py:6887–6889  ·  view source on GitHub ↗

Return an eight byte string representing the quad-word value (little endian).

(self, word)

Source from the content-addressed store, hash-verified

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)

Callers 2

set_qword_at_rvaMethod · 0.95
set_qword_at_offsetMethod · 0.95

Calls 1

packMethod · 0.45

Tested by

no test coverage detected