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