Lines Matching refs:off
227 unsigned off; in hfs_bmap_alloc() local
257 off = off16; in hfs_bmap_alloc()
259 off += node->page_offset; in hfs_bmap_alloc()
260 pagep = node->page + (off >> PAGE_CACHE_SHIFT); in hfs_bmap_alloc()
262 off &= ~PAGE_CACHE_MASK; in hfs_bmap_alloc()
267 byte = data[off]; in hfs_bmap_alloc()
272 data[off] |= m; in hfs_bmap_alloc()
282 if (++off >= PAGE_CACHE_SIZE) { in hfs_bmap_alloc()
285 off = 0; in hfs_bmap_alloc()
303 off = off16; in hfs_bmap_alloc()
304 off += node->page_offset; in hfs_bmap_alloc()
305 pagep = node->page + (off >> PAGE_CACHE_SHIFT); in hfs_bmap_alloc()
307 off &= ~PAGE_CACHE_MASK; in hfs_bmap_alloc()
315 u16 off, len; in hfs_bmap_free() local
325 len = hfs_brec_lenoff(node, 2, &off); in hfs_bmap_free()
348 len = hfs_brec_lenoff(node, 0, &off); in hfs_bmap_free()
350 off += node->page_offset + nidx / 8; in hfs_bmap_free()
351 page = node->page[off >> PAGE_CACHE_SHIFT]; in hfs_bmap_free()
353 off &= ~PAGE_CACHE_MASK; in hfs_bmap_free()
355 byte = data[off]; in hfs_bmap_free()
363 data[off] = byte & ~m; in hfs_bmap_free()