Lines Matching refs:curr
24 __be32 *pptr, *curr, *end; in hfsplus_block_allocate() local
42 curr = pptr + (offset & (PAGE_CACHE_BITS - 1)) / 32; in hfsplus_block_allocate()
51 val = *curr; in hfsplus_block_allocate()
60 curr++; in hfsplus_block_allocate()
64 while (curr < end) { in hfsplus_block_allocate()
65 val = *curr; in hfsplus_block_allocate()
74 curr++; in hfsplus_block_allocate()
86 curr = pptr = kmap(page); in hfsplus_block_allocate()
97 start = offset + (curr - pptr) * 32 + i; in hfsplus_block_allocate()
114 *curr++ = cpu_to_be32(n); in hfsplus_block_allocate()
117 while (curr < end) { in hfsplus_block_allocate()
118 n = be32_to_cpu(*curr); in hfsplus_block_allocate()
125 *curr++ = cpu_to_be32(0xffffffff); in hfsplus_block_allocate()
138 curr = pptr; in hfsplus_block_allocate()
151 *curr = cpu_to_be32(n); 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
188 curr = pptr + (offset & (PAGE_CACHE_BITS - 1)) / 32; in hfsplus_block_free()
199 *curr++ &= cpu_to_be32(mask); in hfsplus_block_free()
202 *curr++ &= cpu_to_be32(mask); in hfsplus_block_free()
208 while (curr < end) { in hfsplus_block_free()
211 *curr++ = 0; in hfsplus_block_free()
222 curr = pptr; in hfsplus_block_free()
229 *curr &= cpu_to_be32(mask); in hfsplus_block_free()