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