Lines Matching refs:desc
300 struct hfs_bnode_desc desc; in hfs_bnode_dump() local
305 hfs_bnode_read(node, &desc, 0, sizeof(desc)); in hfs_bnode_dump()
307 be32_to_cpu(desc.next), be32_to_cpu(desc.prev), in hfs_bnode_dump()
308 desc.type, desc.height, be16_to_cpu(desc.num_recs)); in hfs_bnode_dump()
311 for (i = be16_to_cpu(desc.num_recs); i >= 0; off -= 2, i--) { in hfs_bnode_dump()
481 struct hfs_bnode_desc *desc; in hfs_bnode_find() local
505 desc = (struct hfs_bnode_desc *)(kmap(node->page[0]) + in hfs_bnode_find()
507 node->prev = be32_to_cpu(desc->prev); in hfs_bnode_find()
508 node->next = be32_to_cpu(desc->next); in hfs_bnode_find()
509 node->num_recs = be16_to_cpu(desc->num_recs); in hfs_bnode_find()
510 node->type = desc->type; in hfs_bnode_find()
511 node->height = desc->height; in hfs_bnode_find()