4 implementations of GetInPlaceDestinationLength
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Buffers\Text\Base64Helper\Base64EncoderHelper.cs (2)
741
public uint
GetInPlaceDestinationLength
(int encodedLength, int _) => (uint)(encodedLength - 4);
835
public 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)
241
public uint
GetInPlaceDestinationLength
(int encodedLength, int leftOver) =>
332
public 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)
612
uint destinationIndex = encoder.
GetInPlaceDestinationLength
(encodedLength, leftover);