4 implementations of GetInPlaceDestinationLength
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Buffers\Text\Base64Helper\Base64EncoderHelper.cs (2)
741public uint GetInPlaceDestinationLength(int encodedLength, int _) => (uint)(encodedLength - 4); 835public uint GetInPlaceDestinationLength(int encodedLength, int _) => 0; // not used for char encoding
src\runtime\src\libraries\System.Private.CoreLib\src\System\Buffers\Text\Base64Url\Base64UrlEncoder.cs (2)
241public uint GetInPlaceDestinationLength(int encodedLength, int leftOver) => 332public uint GetInPlaceDestinationLength(int encodedLength, int _) => 0; // not used for char encoding
1 reference to GetInPlaceDestinationLength
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Buffers\Text\Base64Helper\Base64EncoderHelper.cs (1)
612uint destinationIndex = encoder.GetInPlaceDestinationLength(encodedLength, leftover);