The implementation of size() looks like this: ``` rust fn size(&self) -> raw::off_t { self.as_raw_stat().st_size as raw::off_t } ``` The field `st_size` has type `c_longlong`, and the type `raw::off_t` has type `i32` on 32-bit Android. The combination doesn't work well.