27 references to Base64DecoderByte
System.Private.CoreLib (27)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Buffers\Text\Base64Decoder.cs (2)
66
DecodeFrom(default(
Base64DecoderByte
), utf8, bytes, out bytesConsumed, out bytesWritten, isFinalBlock, ignoreWhiteSpace: true);
161
Base64Helper.DecodeFromUtf8InPlace(default(
Base64DecoderByte
), buffer, out bytesWritten, ignoreWhiteSpace: true);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Buffers\Text\Base64Helper\Base64DecoderHelper.cs (17)
170
Debug.Assert(typeof(TBase64Decoder) == typeof(
Base64DecoderByte
) ? remaining == 4 : remaining < 8);
507
if (typeof(TBase64Decoder) == typeof(
Base64DecoderByte
))
749
if (decoder is
Base64DecoderByte
|| bufferIdx == 1)
1604
public ReadOnlySpan<sbyte> DecodingMap => default(
Base64DecoderByte
).DecodingMap;
1606
public ReadOnlySpan<uint> VbmiLookup0 => default(
Base64DecoderByte
).VbmiLookup0;
1608
public ReadOnlySpan<uint> VbmiLookup1 => default(
Base64DecoderByte
).VbmiLookup1;
1610
public ReadOnlySpan<sbyte> Avx2LutHigh => default(
Base64DecoderByte
).Avx2LutHigh;
1612
public ReadOnlySpan<sbyte> Avx2LutLow => default(
Base64DecoderByte
).Avx2LutLow;
1614
public ReadOnlySpan<sbyte> Avx2LutShift => default(
Base64DecoderByte
).Avx2LutShift;
1616
public byte MaskSlashOrUnderscore => default(
Base64DecoderByte
).MaskSlashOrUnderscore;
1618
public ReadOnlySpan<int> Vector128LutHigh => default(
Base64DecoderByte
).Vector128LutHigh;
1620
public ReadOnlySpan<int> Vector128LutLow => default(
Base64DecoderByte
).Vector128LutLow;
1622
public ReadOnlySpan<uint> Vector128LutShift => default(
Base64DecoderByte
).Vector128LutShift;
1624
public ReadOnlySpan<uint> AdvSimdLutOne3 => default(
Base64DecoderByte
).AdvSimdLutOne3;
1626
public uint AdvSimdLutTwo3Uint1 => default(
Base64DecoderByte
).AdvSimdLutTwo3Uint1;
1642
default(
Base64DecoderByte
).TryDecode128Core(str, hiNibbles, maskSlashOrUnderscore, mask8F, lutLow, lutHigh, lutShift, shiftForUnderscore, out result);
1648
default(
Base64DecoderByte
).TryDecode256Core(str, hiNibbles, maskSlashOrUnderscore, lutLow, lutHigh, lutShift, shiftForUnderscore, out result);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Buffers\Text\Base64Helper\Base64ValidatorHelper.cs (1)
184
int decoded = default(
Base64DecoderByte
).DecodingMap[lastChar];
src\runtime\src\libraries\System.Private.CoreLib\src\System\Buffers\Text\Base64Url\Base64UrlDecoder.cs (7)
449
default(
Base64DecoderByte
).TryLoadVector512(src, srcStart, sourceLength, out str);
454
default(
Base64DecoderByte
).TryLoadAvxVector256(src, srcStart, sourceLength, out str);
458
default(
Base64DecoderByte
).TryLoadVector128(src, srcStart, sourceLength, out str);
464
default(
Base64DecoderByte
).TryLoadArmVector128x4(src, srcStart, sourceLength, out str1, out str2, out str3, out str4);
469
default(
Base64DecoderByte
).DecodeFourElements(source, ref decodingMap);
473
default(
Base64DecoderByte
).DecodeRemaining(srcEnd, ref decodingMap, remaining, out t2, out t3);
476
public int IndexOfAnyExceptWhiteSpace(ReadOnlySpan<byte> span) => default(
Base64DecoderByte
).IndexOfAnyExceptWhiteSpace(span);