General refactor and cleanup.

This commit is contained in:
2024-04-30 04:30:11 +01:00
parent 886bd83e85
commit fa6f1b2e46
34 changed files with 2153 additions and 2226 deletions

View File

@@ -86,8 +86,7 @@ static class ArmSimd
len -= 8;
}
while(len-- > 0)
c = Crc32.ComputeCrc32(c, buf[bufPos++]);
while(len-- > 0) c = Crc32.ComputeCrc32(c, buf[bufPos++]);
return c;
}
@@ -126,8 +125,7 @@ static class ArmSimd
len -= 4;
}
while(len-- > 0)
c = Crc32.ComputeCrc32(c, buf[bufPos++]);
while(len-- > 0) c = Crc32.ComputeCrc32(c, buf[bufPos++]);
return c;
}