Closed kyranet closed 3 months ago
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 64.80%. Comparing base (
c6f8a90
) to head (6459798
). Report is 2 commits behind head on main.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Writing values over 16 bits bit by bit is inefficient, especially when it's the word size of the buffer. This PR optimizes the code by writing the value in at most two operations, significantly improving the performance for large values.
This makes writing operations the size of a word or larger do 16 times fewer operations.