Lines Matching full:32
42 curr = pptr + (offset & (PAGE_CACHE_BITS - 1)) / 32; in hfsplus_block_allocate()
43 i = offset % 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()
55 for (; i < 32; mask >>= 1, i++) { in hfsplus_block_allocate()
69 for (i = 0; i < 32; mask >>= 1, i++) { 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()
106 if (++i >= 32) in hfsplus_block_allocate()
119 if (len < 32) in hfsplus_block_allocate()
122 len = 32; in hfsplus_block_allocate()
126 len -= 32; 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()
186 curr = pptr + (offset & (PAGE_CACHE_BITS - 1)) / 32; in hfsplus_block_free()
187 end = pptr + PAGE_CACHE_BITS / 32; in hfsplus_block_free()
191 i = offset % 32; in hfsplus_block_free()
193 int j = 32 - i; in hfsplus_block_free()
207 if (count < 32) in hfsplus_block_free()
210 count -= 32; in hfsplus_block_free()
219 end = pptr + PAGE_CACHE_BITS / 32; in hfsplus_block_free()