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

Method loadTypeInfoTypeKey

web/src/memory.ts:186–189  ·  view source on GitHub ↗

* Load the type key from the type info pointer. * @param typeInfoPtr The pointer to the type info. * @returns The type key.

(typeInfoPtr: Pointer)

Source from the content-addressed store, hash-verified

184 * @returns The type key.
185 */
186 loadTypeInfoTypeKey(typeInfoPtr: Pointer): string {
187 const typeKeyPtr = typeInfoPtr + 2 * SizeOf.I32;
188 return this.loadByteArrayAsString(typeKeyPtr);
189 }
190 /**
191 * Load small string from value pointer.
192 * @param ffiAnyPtr The pointer to the value.

Callers 1

typeKeyMethod · 0.80

Calls 1

loadByteArrayAsStringMethod · 0.95

Tested by

no test coverage detected