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