MCPcopy Create free account
hub / github.com/apache/tvm / loadI64

Method loadI64

web/src/memory.ts:81–88  ·  view source on GitHub ↗
(ptr: Pointer)

Source from the content-addressed store, hash-verified

79 }
80
81 loadI64(ptr: Pointer): number {
82 if (this.buffer != this.memory.buffer) {
83 this.updateViews();
84 }
85 const base = ptr >> 2;
86 // assumes little endian, for now truncate high.
87 return this.viewI32[base];
88 }
89
90 loadF32(ptr: Pointer): number {
91 if (this.buffer != this.memory.buffer) {

Callers 4

loadPointerMethod · 0.95
loadUSizeMethod · 0.95
constructorMethod · 0.80
retValueToJSMethod · 0.80

Calls 1

updateViewsMethod · 0.95

Tested by

no test coverage detected