16 references to s_ulInt32Base
System.Data.Common (16)
System\Data\SQLTypes\SQLDecimal.cs (16)
59
private const ulong s_ulInt32BaseForMod =
s_ulInt32Base
- 1; // 2**32 - 1 (0xFFF...FF)
1315
Debug.Assert(dwlAccum <
s_ulInt32Base
);
1345
dwlAccum =
s_ulInt32Base
;
1506
dwlNextAccum =
s_ulInt32Base
; // = maxUI64/x_dwlBaseUI4
1515
Debug.Assert(dwlAccum <
s_ulInt32Base
* 2);
1518
Debug.Assert(dwlAccum <
s_ulInt32Base
); // can never final accum > 1 more UI4
2139
Debug.Assert(dwlAccum <
s_ulInt32Base
, "dwlAccum < x_lInt32Base", "");
2168
Debug.Assert(dwlAccum <
s_ulInt32Base
);
2174
dwlNextAccum =
s_ulInt32Base
; // how much to add to dwlAccum after div x_dwlBaseUI4
2185
Debug.Assert(dwlAccum <
s_ulInt32Base
, "dwlAccum < x_dwlBaseUI4", "Integer overflow");
2239
Debug.Assert((dwlAccum / dwlDivisor) <
s_ulInt32Base
);
2266
Debug.Assert(dwlAccum <
s_ulInt32Base
);
2675
D1 = (uint)(
s_ulInt32Base
/ ((ulong)ulDHigh + 1));
2694
QH = (uint)(
s_ulInt32Base
- 1);
2710
for (dwlAccum =
s_ulInt32Base
, dwlMulAccum = 0, iulDindex = 0, iulRwork = iulRindex - ciulD;
2718
dwlAccum = HI(dwlAccum) +
s_ulInt32Base
- 1;