src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\Latin1Encoding.cs (8)
427return GetCharsCommon(bytes, byteCount, chars, charCount);
449GetCharsCommon(pBytes, bytes.Length, pChars, chars.Length);
484return GetCharsCommon(pBytes + byteIndex, byteCount, pChars + charIndex, chars.Length - charIndex);
516GetCharsCommon(pBytes + index, count, pChars, chars.Length);
529return GetCharsCommon(bytesPtr, bytes.Length, charsPtr, chars.Length);
541charsWritten = GetCharsCommon(bytesPtr, bytes.Length, charsPtr, chars.Length);
561GetCharsCommon(pBytes, bytes.Length, pChars, result.Length);
591GetCharsCommon(pBytes + index, count, pChars, count);