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

Method IntAt

deps/v8/tools/stats-viewer.py:319–323  ·  view source on GitHub ↗

Return the little-endian 32-byte int at the specified byte index.

(self, index)

Source from the content-addressed store, hash-verified

317 return ord(self.CharAt(index))
318
319 def IntAt(self, index):
320 """Return the little-endian 32-byte int at the specified byte index."""
321 word_str = self.data[index:index+4]
322 result, = struct.unpack("I", word_str)
323 return result
324
325 def CharAt(self, index):
326 """Return the ascii character at the specified byte index."""

Callers 6

MountSharedDataMethod · 0.95
ValueMethod · 0.80
__init__Method · 0.80
CountersInUseMethod · 0.80
ValueMethod · 0.80
__init__Method · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected