16 references to Base64EncoderByte
System.Private.CoreLib (16)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Buffers\Text\Base64Encoder.cs (2)
65
EncodeTo(default(
Base64EncoderByte
), bytes, utf8, out bytesConsumed, out bytesWritten, isFinalBlock);
131
Base64Helper.EncodeToUtf8InPlace(default(
Base64EncoderByte
), buffer, dataLength, out bytesWritten);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Buffers\Text\Base64Helper\Base64EncoderHelper.cs (8)
818
public ReadOnlySpan<byte> EncodingMap => default(
Base64EncoderByte
).EncodingMap;
820
public sbyte Avx2LutChar62 => default(
Base64EncoderByte
).Avx2LutChar62;
822
public sbyte Avx2LutChar63 => default(
Base64EncoderByte
).Avx2LutChar63;
824
public ReadOnlySpan<byte> AdvSimdLut4 => default(
Base64EncoderByte
).AdvSimdLut4;
826
public uint Ssse3AdvSimdLutE3 => default(
Base64EncoderByte
).Ssse3AdvSimdLutE3;
828
public int IncrementPadTwo => default(
Base64EncoderByte
).IncrementPadTwo;
830
public int IncrementPadOne => default(
Base64EncoderByte
).IncrementPadOne;
833
default(
Base64EncoderByte
).GetMaxSrcLength(srcLength, destLength);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Buffers\Text\Base64Helper\Base64ValidatorHelper.cs (1)
171
private static readonly SearchValues<byte> s_validBase64Chars = SearchValues.Create(default(
Base64EncoderByte
).EncodingMap);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Buffers\Text\Base64Url\Base64UrlEncoder.cs (5)
290
default(
Base64EncoderByte
).StoreVector512ToDestination(dest, destStart, destLength, str);
295
default(
Base64EncoderByte
).StoreVector256ToDestination(dest, destStart, destLength, str);
299
default(
Base64EncoderByte
).StoreVector128ToDestination(dest, destStart, destLength, str);
305
default(
Base64EncoderByte
).StoreArmVector128x4ToDestination(dest, destStart, destLength, res1, res2, res3, res4);
310
default(
Base64EncoderByte
).EncodeThreeAndWrite(threeBytes, destination, ref encodingMap);