5 references to GetCharsCommon
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Text\UTF8Encoding.cs (4)
528return GetCharsCommon(pBytes + byteIndex, byteCount, pChars + charIndex, chars.Length - charIndex); 553return GetCharsCommon(bytes, byteCount, chars, charCount); 563return GetCharsCommon(bytesPtr, bytes.Length, charsPtr, chars.Length); 573int written = GetCharsCommon(bytesPtr, bytes.Length, charsPtr, chars.Length, throwForDestinationOverflow: false);
src\libraries\System.Private.CoreLib\src\System\Text\UTF8Encoding.Sealed.cs (1)
145charsWritten = GetCharsCommon(pSource, sourceLength, pDestination, MaxSmallInputElementCount);