Home
last modified time | relevance | path

Searched refs:pageofs_in (Results 1 – 4 of 4) sorted by relevance

/linux/fs/erofs/
H A Ddecompressor_deflate.c110 reason = z_erofs_fixup_insize(rq, dctx.kin + rq->pageofs_in, in __z_erofs_deflate_decompress()
111 min(rq->inputsize, sb->s_blocksize - rq->pageofs_in)); in __z_erofs_deflate_decompress()
137 strm->z.avail_in = min(rq->inputsize, PAGE_SIZE - rq->pageofs_in); in __z_erofs_deflate_decompress()
139 strm->z.next_in = dctx.kin + rq->pageofs_in; in __z_erofs_deflate_decompress()
H A Ddecompressor_zstd.c152 reason = z_erofs_fixup_insize(rq, dctx.kin + rq->pageofs_in, in z_erofs_zstd_decompress()
153 min(rq->inputsize, sb->s_blocksize - rq->pageofs_in)); in z_erofs_zstd_decompress()
170 in_buf.size = min_t(u32, rq->inputsize, PAGE_SIZE - rq->pageofs_in); in z_erofs_zstd_decompress()
172 in_buf.src = dctx.kin + rq->pageofs_in; in z_erofs_zstd_decompress()
H A Ddecompressor_lzma.c161 reason = z_erofs_fixup_insize(rq, dctx.kin + rq->pageofs_in, in z_erofs_lzma_decompress()
162 min(rq->inputsize, sb->s_blocksize - rq->pageofs_in)); in z_erofs_lzma_decompress()
183 buf.in_size = min(rq->inputsize, PAGE_SIZE - rq->pageofs_in); in z_erofs_lzma_decompress()
185 buf.in = dctx.kin + rq->pageofs_in; in z_erofs_lzma_decompress()
H A Dzdata.c64 unsigned short pageofs_in; member
108 return PAGE_ALIGN(pcl->pageofs_in + pcl->pclustersize) >> PAGE_SHIFT; in z_erofs_pclusterpages()
746 unsigned int pageofs_in; in z_erofs_register_pcluster() local
749 pageofs_in = erofs_blkoff(sb, map->m_pa); in z_erofs_register_pcluster()
750 pcl = z_erofs_alloc_pcluster(pageofs_in + map->m_plen); in z_erofs_register_pcluster()
761 pcl->pageofs_in = pageofs_in; in z_erofs_register_pcluster()
870 fe->pcl->pageofs_in = map->m_pa & ~PAGE_MASK; in z_erofs_pcluster_begin()
1303 .pageofs_in = pcl->pageofs_in, in z_erofs_decompress_pcluster()
1709 end = round_up(cur + pcl->pageofs_in + pcl->pclustersize, in z_erofs_submit_queue()