Lines Matching refs:off
378 unsigned off; in hfs_bmap_alloc() local
393 off = off16; in hfs_bmap_alloc()
395 off += node->page_offset; in hfs_bmap_alloc()
396 pagep = node->page + (off >> PAGE_SHIFT); in hfs_bmap_alloc()
398 off &= ~PAGE_MASK; in hfs_bmap_alloc()
403 byte = data[off]; in hfs_bmap_alloc()
408 data[off] |= m; in hfs_bmap_alloc()
419 if (++off >= PAGE_SIZE) { in hfs_bmap_alloc()
422 off = 0; in hfs_bmap_alloc()
440 off = off16; in hfs_bmap_alloc()
441 off += node->page_offset; in hfs_bmap_alloc()
442 pagep = node->page + (off >> PAGE_SHIFT); in hfs_bmap_alloc()
444 off &= ~PAGE_MASK; in hfs_bmap_alloc()
452 u16 off, len; in hfs_bmap_free() local
463 len = hfs_brec_lenoff(node, 2, &off); in hfs_bmap_free()
489 len = hfs_brec_lenoff(node, 0, &off); in hfs_bmap_free()
491 off += node->page_offset + nidx / 8; in hfs_bmap_free()
492 page = node->page[off >> PAGE_SHIFT]; in hfs_bmap_free()
494 off &= ~PAGE_MASK; in hfs_bmap_free()
496 byte = data[off]; in hfs_bmap_free()
505 data[off] = byte & ~m; in hfs_bmap_free()