15 references to HashMultiply
PresentationCore (15)
Core\CSharp\MS\Internal\FontCache\CanonicalFontFamilyReference.cs (1)
156hash = HashFn.HashMultiply(hash) + _familyName.GetHashCode();
Core\CSharp\MS\Internal\FontCache\FontCacheUtil.cs (2)
362hash = HashMultiply(hash) + *pb; 373hash = HashMultiply(hash) + (ushort)c;
Core\CSharp\MS\Internal\FontFace\FontFamilyIdentifier.cs (3)
181hash = HashFn.HashMultiply(hash) + family.GetHashCode(); 466hash += HashFn.HashMultiply(_baseUri.GetHashCode()); 469hash = HashFn.HashMultiply(hash) + _name.GetHashCode();
Core\CSharp\MS\Internal\Shaping\ShapeTypeface.cs (3)
58return HashFn.HashMultiply(_glyphTypeface.GetHashCode()) 142hash = HashFn.HashMultiply(hash) + (int)(_nullShape ? 1 : 0); 143hash = HashFn.HashMultiply(hash) + _scaleInEm.GetHashCode();
Core\CSharp\System\Windows\Media\TextFormatting\NumberSubstitution.cs (2)
268int hash = HashFn.HashMultiply((int)_source) + (int)_substitution; 271hash = HashFn.HashMultiply(hash) + _cultureOverride.GetHashCode();
Core\CSharp\System\Windows\Media\Typeface.cs (4)
684hash = HashFn.HashMultiply(hash) + _fallbackFontFamily.GetHashCode(); 686hash = HashFn.HashMultiply(hash) + _style.GetHashCode(); 687hash = HashFn.HashMultiply(hash) + _weight.GetHashCode(); 688hash = HashFn.HashMultiply(hash) + _stretch.GetHashCode();