func internal/abi.TypeOf

9 uses

	internal/abi (current package)
		type.go#L178: func TypeOf(a any) *Type {
		type.go#L190: 	return (*PtrType)(unsafe.Pointer(TypeOf((*T)(nil)))).Elem

	internal/reflectlite
		type.go#L387: 	return toType(abi.TypeOf(i))

	internal/sync
		hashtriemap.go#L49: 	mapType := abi.TypeOf(m).MapType()

	hash/maphash
		maphash_runtime.go#L53: 	mTyp := abi.TypeOf(m)

	reflect
		type.go#L1312: 	return toType(abi.TypeOf(i))
		type.go#L1322: 	return abi.TypeOf(i)

	runtime
		mcleanup.go#L85: 	if kind := abi.TypeOf(arg).Kind(); kind == abi.Pointer || kind == abi.UnsafePointer {

	unique
		canonmap.go#L31: 	mapType := abi.TypeOf(m).MapType()