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