src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\ASCIIEncoding.cs (5)
239return GetBytesCommon(pChars + charIndex, charCount, pBytes + byteIndex, bytes.Length - byteIndex);
287return GetBytesCommon(pChars + charIndex, charCount, pBytes + byteIndex, bytes.Length - byteIndex);
312return GetBytesCommon(chars, charCount, bytes, byteCount);
322return GetBytesCommon(charsPtr, chars.Length, bytesPtr, bytes.Length);
332int written = GetBytesCommon(charsPtr, chars.Length, bytesPtr, bytes.Length, throwForDestinationOverflow: false);