Lines Matching refs:usize
108 Uncompressed(usize), // zip index
245 let mut buf = Vec::with_capacity(inode_data.size as usize); in open()
292 ) -> io::Result<usize> { in read() argument
307 w.write_from(&mut raw_file, size as usize, start)? in read()
310 let start = offset as usize; in read()
311 let end = start + size as usize; in read()
378 let start = offset as usize; in readdir()
382 let mut estimate: usize = 0; // estimated number of bytes we will be writing in readdir()
384 while estimate < size as usize && end < buf.len() { in readdir()
402 cur: usize, // the current index in `inner`. `next` advances this.
514 assert_eq!(content.len(), metadata.len() as usize); in check_file()
665 const NUM_FILES: usize = 1 << 10; in large_dir()
743 const BLOCK_SIZE: usize = 4096; in supports_zip_on_block_device()