Lines Matching refs:pptr

25 	__be32 *pptr, *curr, *end;  in hfsplus_block_allocate()  local
42 pptr = kmap_local_page(page); in hfsplus_block_allocate()
43 curr = pptr + (offset & (PAGE_CACHE_BITS - 1)) / 32; in hfsplus_block_allocate()
47 end = pptr + PAGE_CACHE_BITS / 32; in hfsplus_block_allocate()
49 end = pptr + ((size + 31) & (PAGE_CACHE_BITS - 1)) / 32; in hfsplus_block_allocate()
77 kunmap_local(pptr); in hfsplus_block_allocate()
87 curr = pptr = kmap_local_page(page); in hfsplus_block_allocate()
89 end = pptr + PAGE_CACHE_BITS / 32; in hfsplus_block_allocate()
91 end = pptr + ((size + 31) & (PAGE_CACHE_BITS - 1)) / 32; in hfsplus_block_allocate()
98 start = offset + (curr - pptr) * 32 + i; in hfsplus_block_allocate()
130 kunmap_local(pptr); in hfsplus_block_allocate()
138 pptr = kmap_local_page(page); in hfsplus_block_allocate()
139 curr = pptr; in hfsplus_block_allocate()
140 end = pptr + PAGE_CACHE_BITS / 32; in hfsplus_block_allocate()
154 kunmap_local(pptr); in hfsplus_block_allocate()
155 *max = offset + (curr - pptr) * 32 + i - start; in hfsplus_block_allocate()
169 __be32 *pptr, *curr, *end; in hfsplus_block_free() local
188 pptr = kmap_local_page(page); in hfsplus_block_free()
189 curr = pptr + (offset & (PAGE_CACHE_BITS - 1)) / 32; in hfsplus_block_free()
190 end = pptr + PAGE_CACHE_BITS / 32; in hfsplus_block_free()
218 kunmap_local(pptr); in hfsplus_block_free()
222 pptr = kmap_local_page(page); in hfsplus_block_free()
223 curr = pptr; in hfsplus_block_free()
224 end = pptr + PAGE_CACHE_BITS / 32; in hfsplus_block_free()
234 kunmap_local(pptr); in hfsplus_block_free()