Lines Matching refs:off
252 unsigned off; in hfs_bmap_alloc() local
267 off = off16; in hfs_bmap_alloc()
269 off += node->page_offset; in hfs_bmap_alloc()
270 pagep = node->page + (off >> PAGE_SHIFT); in hfs_bmap_alloc()
272 off &= ~PAGE_MASK; in hfs_bmap_alloc()
277 byte = data[off]; in hfs_bmap_alloc()
282 data[off] |= m; in hfs_bmap_alloc()
292 if (++off >= PAGE_SIZE) { in hfs_bmap_alloc()
295 off = 0; in hfs_bmap_alloc()
313 off = off16; in hfs_bmap_alloc()
314 off += node->page_offset; in hfs_bmap_alloc()
315 pagep = node->page + (off >> PAGE_SHIFT); in hfs_bmap_alloc()
317 off &= ~PAGE_MASK; in hfs_bmap_alloc()
325 u16 off, len; in hfs_bmap_free() local
335 len = hfs_brec_lenoff(node, 2, &off); in hfs_bmap_free()
359 len = hfs_brec_lenoff(node, 0, &off); in hfs_bmap_free()
361 off += node->page_offset + nidx / 8; in hfs_bmap_free()
362 page = node->page[off >> PAGE_SHIFT]; in hfs_bmap_free()
364 off &= ~PAGE_MASK; in hfs_bmap_free()
366 byte = data[off]; in hfs_bmap_free()
374 data[off] = byte & ~m; in hfs_bmap_free()