Lines Matching refs:curr
22 __be32 *pptr, *curr, *end; in hfsplus_block_allocate() local
40 curr = pptr + (offset & (PAGE_CACHE_BITS - 1)) / 32; in hfsplus_block_allocate()
49 val = *curr; in hfsplus_block_allocate()
58 curr++; in hfsplus_block_allocate()
62 while (curr < end) { in hfsplus_block_allocate()
63 val = *curr; in hfsplus_block_allocate()
72 curr++; in hfsplus_block_allocate()
84 curr = pptr = kmap(page); in hfsplus_block_allocate()
95 start = offset + (curr - pptr) * 32 + i; in hfsplus_block_allocate()
112 *curr++ = cpu_to_be32(n); in hfsplus_block_allocate()
115 while (curr < end) { in hfsplus_block_allocate()
116 n = be32_to_cpu(*curr); in hfsplus_block_allocate()
123 *curr++ = cpu_to_be32(0xffffffff); in hfsplus_block_allocate()
136 curr = pptr; in hfsplus_block_allocate()
149 *curr = cpu_to_be32(n); in hfsplus_block_allocate()
152 *max = offset + (curr - pptr) * 32 + i - start; in hfsplus_block_allocate()
165 __be32 *pptr, *curr, *end; in hfsplus_block_free() local
183 curr = pptr + (offset & (PAGE_CACHE_BITS - 1)) / 32; in hfsplus_block_free()
194 *curr++ &= cpu_to_be32(mask); in hfsplus_block_free()
197 *curr++ &= cpu_to_be32(mask); in hfsplus_block_free()
203 while (curr < end) { in hfsplus_block_free()
206 *curr++ = 0; in hfsplus_block_free()
215 curr = pptr; in hfsplus_block_free()
222 *curr &= cpu_to_be32(mask); in hfsplus_block_free()