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