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

Method storeUSize

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

Source from the content-addressed store, hash-verified

405 }
406
407 storeUSize(offset: PtrOffset, value: Pointer): void {
408 if (this.memory.wasm32) {
409 this.storeU32(offset, value);
410 } else {
411 this.storeI64(offset, value);
412 }
413 }
414
415 storeI32(offset: PtrOffset, value: number): void {
416 this.viewI32[offset >> 2] = value;

Callers 2

allocThenSetArgBytesMethod · 0.95

Calls 2

storeU32Method · 0.95
storeI64Method · 0.95

Tested by

no test coverage detected