[roll] Roll fuchsia [fxblob] Compress compression offsets in memory

Fxblob reads in multiple compressed chunks at once and ZSTD supports
decompressing multiple chunks at once. Only the compression offset of
of the first chunk of each read operation is needed, the other
compression offsets can be dropped. For 32KiB chunked blobs and a read
size of 128KiB, this will reduce the compression table size by 75%.

Compression offsets are stored as a u64 but a u32 would be sufficient
for all blobs that compress to less than or equal to 4GiB. This change
uses u32s to store all of the offsets less than or equal to u32::MAX
and u64s to store the rest. All of the current blobs are less than 4GiB
so this saves 50% of the offset table memory usage.

Original-Fixed: 398885530
Original-Reviewed-on: https://fuchsia-review.googlesource.com/c/fuchsia/+/1203846
Original-Revision: 9f8da6f4a646d8cdc4fc406bd2ae589e64d1e209
GitOrigin-RevId: 77f28aabf16b8e303ad42ea8ae5455c5a9a00c27
Change-Id: I170d814a4f355d9e8c4332720d8558b1481a937e
1 file changed
tree: 622afc70e024a2f9ae91f6526a8e73778b83e8c4
  1. ctf/
  2. git-hooks/
  3. infra/
  4. third_party/
  5. cts
  6. firmware
  7. flower
  8. jiri.lock
  9. MILESTONE
  10. minimal
  11. prebuilts
  12. README.md
  13. stem
  14. test_durations
  15. toolchain
README.md

Integration

This repository contains Fuchsia's Global Integration manifest files.

Making changes

All changes should be made to the internal version of this repository. Our infrastructure automatically updates this version when the internal one changes.

Currently all changes must be made by a Google employee. Non-Google employees wishing to make a change can ask for assistance in one of the communication channels documented at get involved.

Obtaining the source

First install Jiri.

Next run:

$ jiri init
$ jiri import minimal https://fuchsia.googlesource.com/integration
$ jiri update

Third party

Third party projects should have their own subdirectory in ./third_party.