15 references to HashMultiply
PresentationCore (15)
MS\Internal\FontCache\CanonicalFontFamilyReference.cs (1)
141hash = HashFn.HashMultiply(hash) + _familyName.GetHashCode();
MS\Internal\FontCache\FontCacheUtil.cs (2)
248hash = HashMultiply(hash) + *pb; 259hash = HashMultiply(hash) + (ushort)c;
MS\Internal\FontFace\FontFamilyIdentifier.cs (3)
168hash = HashFn.HashMultiply(hash) + family.GetHashCode(); 448hash += HashFn.HashMultiply(_baseUri.GetHashCode()); 451hash = HashFn.HashMultiply(hash) + _name.GetHashCode();
MS\Internal\Shaping\ShapeTypeface.cs (3)
41return HashFn.HashMultiply(_glyphTypeface.GetHashCode()) 125hash = HashFn.HashMultiply(hash) + (int)(_nullShape ? 1 : 0); 126hash = HashFn.HashMultiply(hash) + _scaleInEm.GetHashCode();
System\Windows\Media\textformatting\NumberSubstitution.cs (2)
233int hash = HashFn.HashMultiply((int)_source) + (int)_substitution; 236hash = HashFn.HashMultiply(hash) + _cultureOverride.GetHashCode();
System\Windows\Media\Typeface.cs (4)
669hash = HashFn.HashMultiply(hash) + _fallbackFontFamily.GetHashCode(); 671hash = HashFn.HashMultiply(hash) + _style.GetHashCode(); 672hash = HashFn.HashMultiply(hash) + _weight.GetHashCode(); 673hash = HashFn.HashMultiply(hash) + _stretch.GetHashCode();