4 references to Div96ByConst
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.DecCalc.cs (4)
323while ((byte)low == 0 && scale >= 8 && Div96ByConst(ref high64, ref low, 100000000)) 326if ((low & 0xF) == 0 && scale >= 4 && Div96ByConst(ref high64, ref low, 10000)) 333if ((low & 3) == 0 && scale >= 2 && Div96ByConst(ref high64, ref low, 100)) 336if ((low & 1) == 0 && scale >= 1 && Div96ByConst(ref high64, ref low, 10))