MCPcopy Index your code
hub / github.com/apache/tvm / storePtr

Method storePtr

web/src/memory.ts:399–405  ·  view source on GitHub ↗
(offset: PtrOffset, value: Pointer)

Source from the content-addressed store, hash-verified

397
398 // Store APIs
399 storePtr(offset: PtrOffset, value: Pointer): void {
400 if (this.memory.wasm32) {
401 this.storeU32(offset, value);
402 } else {
403 this.storeI64(offset, value);
404 }
405 }
406
407 storeUSize(offset: PtrOffset, value: Pointer): void {
408 if (this.memory.wasm32) {

Callers 2

commitToWasmMemoryMethod · 0.95
setPackedArgumentsMethod · 0.80

Calls 2

storeU32Method · 0.95
storeI64Method · 0.95

Tested by

no test coverage detected