We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9439a8 commit ee158c7Copy full SHA for ee158c7
src/Base64.cs
@@ -62,7 +62,7 @@ public unsafe static OperationStatus DecodeFromBase64(ReadOnlySpan<char> source,
62
//}
63
if (Avx2.IsSupported)
64
{
65
- return GetPointerToFirstInvalidByteAvx2(pInputBuffer, inputLength, out Utf16CodeUnitCountAdjustment, out ScalarCodeUnitCountAdjustment);
+ return AVX2.Base64.DecodeFromBase64AVX2(source, dest, out bytesConsumed, out bytesWritten, isUrl);
66
}
67
if (Ssse3.IsSupported && Popcnt.IsSupported)
68
0 commit comments