MCPcopy Index your code
hub / github.com/nodejs/node / _ReadWord

Method _ReadWord

deps/v8/tools/grokdump.py:846–849  ·  view source on GitHub ↗
(self, location)

Source from the content-addressed store, hash-verified

844 return self.minidump[location:location + size]
845
846 def _ReadWord(self, location):
847 if self.Is64():
848 return ctypes.c_uint64.from_buffer(self.minidump, location).value
849 return ctypes.c_uint32.from_buffer(self.minidump, location).value
850
851 def ReadAsciiPtr(self, address):
852 ascii_content = [

Callers 1

search_inside_regionMethod · 0.80

Calls 1

Is64Method · 0.95

Tested by

no test coverage detected