Lines Matching refs:pptr
24 __be32 *pptr, *curr, *end; in hfsplus_block_allocate() local
41 pptr = kmap(page); in hfsplus_block_allocate()
42 curr = pptr + (offset & (PAGE_CACHE_BITS - 1)) / 32; in hfsplus_block_allocate()
46 end = pptr + PAGE_CACHE_BITS / 32; in hfsplus_block_allocate()
48 end = pptr + ((size + 31) & (PAGE_CACHE_BITS - 1)) / 32; in hfsplus_block_allocate()
86 curr = pptr = kmap(page); in hfsplus_block_allocate()
88 end = pptr + PAGE_CACHE_BITS / 32; in hfsplus_block_allocate()
90 end = pptr + ((size + 31) & (PAGE_CACHE_BITS - 1)) / 32; in hfsplus_block_allocate()
97 start = offset + (curr - pptr) * 32 + i; in hfsplus_block_allocate()
137 pptr = kmap(page); in hfsplus_block_allocate()
138 curr = pptr; in hfsplus_block_allocate()
139 end = pptr + PAGE_CACHE_BITS / 32; in hfsplus_block_allocate()
154 *max = offset + (curr - pptr) * 32 + i - start; in hfsplus_block_allocate()
168 __be32 *pptr, *curr, *end; in hfsplus_block_free() local
187 pptr = kmap(page); in hfsplus_block_free()
188 curr = pptr + (offset & (PAGE_CACHE_BITS - 1)) / 32; in hfsplus_block_free()
189 end = pptr + PAGE_CACHE_BITS / 32; in hfsplus_block_free()
221 pptr = kmap(page); in hfsplus_block_free()
222 curr = pptr; in hfsplus_block_free()
223 end = pptr + PAGE_CACHE_BITS / 32; in hfsplus_block_free()