Zachary Dremann

Results 54 comments of Zachary Dremann

By default, afsctool will give up if even a single block does not compress (grows even slightly when compressed). If you pass -L ("Allow larger-than-raw compressed chunks"), it will keep...

Right, yeah, the size check is currently for 2 GiB: https://github.com/RJVB/afsctool/blob/5e0f4be4eb1d7d0de69161408cc2ecaad9e2c4fa/src/afsctool.h#L59

Hmm. That _is_ odd, squashfs tools has the [same code](https://github.com/plougher/squashfs-tools/blob/44319cb6d2d837a81d012ede6b05c8ea5ba78079/squashfs-tools/squashfs_fs.h#L145-L146). That would seem to try to say "we have an uncompressed metatdata block that's 32k coming up". Presumably that would...

Yea. I'm able to reproduce, it was a known bug, my PR wasn't ready for prime-time yet. I guess having my bug in master is a good motivator though. I'll...

I probably won't be making any changes until Android L is released (CardView and RecyclerView are perfect fits). @kikoso can tell you if he has any plans until then.

Sounds like you're on master. If you have the source code, you might want to try the doclet branch, you'll get names for parameters and such. I wanted to combine...

This should probably be closed if #57 is merged, since it allows `cargo bench` to work directly, and moves the benchmarks to a separate folder

I believe related to #886 and #787

Yeah, I actually just posted [a PR to jetscii](https://github.com/shepmaster/jetscii/pull/57#issuecomment-1754287303), and found that even for cases that needed multiple memchr calls, memchr seemed to be faster, and based on the fact...