MCPcopy Create free account
hub / github.com/WasmEdge/WasmEdge / readS32

Method readS32

lib/loader/filemgr.cpp:220–220  ·  view source on GitHub ↗

Decode and read a signed int. See "include/loader/filemgr.h".

Source from the content-addressed store, hash-verified

218
219// Decode and read a signed int. See "include/loader/filemgr.h".
220Expect<int32_t> FileMgr::readS32() { return readSN<int32_t, 32>(); }
221
222// Decode and read a signed long long int. See "include/loader/filemgr.h".
223Expect<int64_t> FileMgr::readS64() { return readSN<int64_t, 64>(); }

Callers 2

loadInstructionMethod · 0.80
TESTFunction · 0.80

Calls

no outgoing calls

Tested by 1

TESTFunction · 0.64