3 overrides of GetCharCountFast
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Text\ASCIIEncoding.cs (1)
522private protected sealed override unsafe int GetCharCountFast(byte* pBytes, int bytesLength, DecoderFallback? fallback, out int bytesConsumed)
src\libraries\System.Private.CoreLib\src\System\Text\Latin1Encoding.cs (1)
383private protected override unsafe int GetCharCountFast(byte* pBytes, int bytesLength, DecoderFallback? fallback, out int bytesConsumed)
src\libraries\System.Private.CoreLib\src\System\Text\UTF8Encoding.cs (1)
741private protected sealed override unsafe int GetCharCountFast(byte* pBytes, int bytesLength, DecoderFallback? fallback, out int bytesConsumed)
2 references to GetCharCountFast
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Text\Encoding.Internal.cs (2)
732totalCharCount = GetCharCountFast(pBytes, byteCount, decoder.Fallback, out bytesConsumed); 839/// <see cref="DecoderNLS"/> instance, then to invoke the <see cref="GetCharCountFast"/> virtual method