fix(deps): update github.com/crc-org/vfkit digest to f3c783d

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This commit is contained in:
renovate[bot]
2023-11-01 08:20:08 +00:00
committed by GitHub
parent 55b9ea3ec7
commit ffb96ad8b6
165 changed files with 173033 additions and 56298 deletions

View File

@@ -71,7 +71,7 @@ func (self Encoding) Encode(out []byte, src []byte) {
//
// It will also update the length of out.
func (self Encoding) EncodeUnsafe(out *[]byte, src []byte) {
__b64encode(out, &src, int(self) | archFlags)
b64encode(out, &src, int(self) | archFlags)
}
// EncodeToString returns the base64 encoding of src.
@@ -120,7 +120,7 @@ func (self Encoding) Decode(out []byte, src []byte) (int, error) {
//
// It will also update the length of out.
func (self Encoding) DecodeUnsafe(out *[]byte, src []byte) (int, error) {
if n := __b64decode(out, mem2addr(src), len(src), int(self) | archFlags); n >= 0 {
if n := b64decode(out, mem2addr(src), len(src), int(self) | archFlags); n >= 0 {
return n, nil
} else {
return 0, base64.CorruptInputError(-n - 1)
@@ -149,9 +149,3 @@ func (self Encoding) DecodedLen(n int) int {
return n * 6 / 8
}
}
func init() {
if hasAVX2() {
archFlags = _MODE_AVX2
}
}