17 references to CastToUInt32
System.Runtime.Numerics (17)
src\runtime\src\libraries\Common\src\System\Number.Parsing.Common.cs (13)
66
uint ch = (p < strEnd) ? TChar.
CastToUInt32
(*p) : '\0';
98
ch = ++p < strEnd ? TChar.
CastToUInt32
(*p) : '\0';
172
ch = ++p < strEnd ? TChar.
CastToUInt32
(*p) : '\0';
183
ch = ++p < strEnd ? TChar.
CastToUInt32
(*p) : '\0';
186
ch = (p = next) < strEnd ? TChar.
CastToUInt32
(*p) : '\0';
190
ch = (p = next) < strEnd ? TChar.
CastToUInt32
(*p) : '\0';
208
ch = ++p < strEnd ? TChar.
CastToUInt32
(*p) : '\0';
214
ch = ++p < strEnd ? TChar.
CastToUInt32
(*p) : '\0';
225
ch = p < strEnd ? TChar.
CastToUInt32
(*p) : '\0';
265
ch = ++p < strEnd ? TChar.
CastToUInt32
(*p) : '\0';
346
if ((ret is null) && info.AllowHyphenDuringParsing() && (p < pEnd) && (TChar.
CastToUInt32
(*p) == '-'))
378
uint cp = TChar.
CastToUInt32
(*p);
379
uint val = TChar.
CastToUInt32
(*str);
System\Number.BigInteger.cs (4)
175
if (!IsWhite(TChar.
CastToUInt32
(value[index])))
188
while ((validLength < value.Length) && TParser.IsValidDigit(TChar.
CastToUInt32
(value[validLength])))
200
while ((trailingStart < value.Length) && IsWhite(TChar.
CastToUInt32
(value[trailingStart])))
223
nuint signBits = TParser.GetSignBitsIfValid(TChar.
CastToUInt32
(value[0]));