Base:
8 references to GetHashCode
ILCompiler.Compiler (5)
Compiler\CompilerTypeSystemContext.DynamicInvoke.cs (2)
15
protected override int GetKeyHashCode(MethodSignature key) => key.
GetHashCode
();
16
protected override int GetValueHashCode(DynamicInvokeMethodThunk value) => value.TargetSignature.
GetHashCode
();
parent\parent\Common\TypeSystem\IL\Stubs\DynamicInvokeMethodThunk.cs (1)
122
return base.ComputeHashCode() ^ _targetSignature.
GetHashCode
();
parent\parent\Common\TypeSystem\IL\Stubs\TypeGetTypeMethodThunk.cs (2)
149
return key.DefaultAssemblyName.GetHashCode() ^ key.GetTypeOverload.Signature.
GetHashCode
();
153
return value.DefaultAssemblyName.GetHashCode() ^ value.Signature.
GetHashCode
();
ILCompiler.TypeSystem (3)
parent\parent\Common\TypeSystem\Common\FunctionPointerType.cs (1)
41
_hashCode = _signature.
GetHashCode
();
parent\parent\Common\TypeSystem\Common\TypeSystemContext.cs (2)
217
return key.
GetHashCode
();
222
return value.Signature.
GetHashCode
();