27 references to AllBytesInUInt32AreAscii
System.Private.CoreLib (27)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\Ascii.cs (1)
61return AllBytesInUInt32AreAscii(
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\Ascii.Utility.cs (14)
270if (!AllBytesInUInt32AreAscii(currentUInt32 | nextUInt32)) 275if (AllBytesInUInt32AreAscii(currentUInt32)) 293if (!AllBytesInUInt32AreAscii(currentUInt32)) 306if (!AllBytesInUInt32AreAscii(currentUInt32)) 338Debug.Assert(!AllBytesInUInt32AreAscii(currentUInt32), "Shouldn't have reached this point if we have an all-ASCII input."); 619Debug.Assert(!AllBytesInUInt32AreAscii(currentDWord), "Shouldn't be here unless we see non-ASCII data."); 658if (!AllBytesInUInt32AreAscii(currentDWord | nextDWord)) 663if (AllBytesInUInt32AreAscii(currentDWord)) 682if (!AllBytesInUInt32AreAscii(currentDWord)) 697if (!AllBytesInUInt32AreAscii(currentDWord)) 2109if (!AllBytesInUInt32AreAscii(asciiData)) 2124if (!AllBytesInUInt32AreAscii(asciiData)) 2167Debug.Assert(!AllBytesInUInt32AreAscii(asciiData), "Shouldn't have reached this point if we have an all-ASCII input."); 2280Debug.Assert(AllBytesInUInt32AreAscii(value));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\Ascii.Utility.Helpers.cs (1)
49Debug.Assert(!AllBytesInUInt32AreAscii(value), "Caller shouldn't provide an all-ASCII value.");
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\Unicode\Utf8Utility.Transcoding.cs (5)
81if (Ascii.AllBytesInUInt32AreAscii(thisDWord)) 109if (!Ascii.AllBytesInUInt32AreAscii(thisDWord | secondDWord)) 128if (Ascii.AllBytesInUInt32AreAscii(thisDWord)) 136Debug.Assert(!Ascii.AllBytesInUInt32AreAscii(secondDWord)); 154Debug.Assert(!Ascii.AllBytesInUInt32AreAscii(thisDWord)); // this should have been handled earlier
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\Unicode\Utf8Utility.Validation.cs (6)
87if (Ascii.AllBytesInUInt32AreAscii(thisDWord)) 107if (!Ascii.AllBytesInUInt32AreAscii(thisDWord)) 174if (!Ascii.AllBytesInUInt32AreAscii(((uint*)pInputBuffer)[0] | ((uint*)pInputBuffer)[1])) 179if (!Ascii.AllBytesInUInt32AreAscii(((uint*)pInputBuffer)[2] | ((uint*)pInputBuffer)[3])) 226if (Ascii.AllBytesInUInt32AreAscii(thisDWord)) 240Debug.Assert(!Ascii.AllBytesInUInt32AreAscii(thisDWord)); // this should have been handled earlier