15 references to HashMultiply
PresentationCore (15)
MS\Internal\FontCache\CanonicalFontFamilyReference.cs (1)
145hash = HashFn.HashMultiply(hash) + _familyName.GetHashCode();
MS\Internal\FontCache\FontCacheUtil.cs (2)
266hash = HashMultiply(hash) + *pb; 277hash = HashMultiply(hash) + (ushort)c;
MS\Internal\FontFace\FontFamilyIdentifier.cs (3)
180hash = HashFn.HashMultiply(hash) + family.GetHashCode(); 460hash += HashFn.HashMultiply(_baseUri.GetHashCode()); 463hash = HashFn.HashMultiply(hash) + _name.GetHashCode();
MS\Internal\Shaping\ShapeTypeface.cs (3)
56return HashFn.HashMultiply(_glyphTypeface.GetHashCode()) 140hash = HashFn.HashMultiply(hash) + (int)(_nullShape ? 1 : 0); 141hash = HashFn.HashMultiply(hash) + _scaleInEm.GetHashCode();
System\Windows\Media\textformatting\NumberSubstitution.cs (2)
247int hash = HashFn.HashMultiply((int)_source) + (int)_substitution; 250hash = HashFn.HashMultiply(hash) + _cultureOverride.GetHashCode();
System\Windows\Media\Typeface.cs (4)
678hash = HashFn.HashMultiply(hash) + _fallbackFontFamily.GetHashCode(); 680hash = HashFn.HashMultiply(hash) + _style.GetHashCode(); 681hash = HashFn.HashMultiply(hash) + _weight.GetHashCode(); 682hash = HashFn.HashMultiply(hash) + _stretch.GetHashCode();