Lines Matching refs:head
82 befs_host_btree_nodehead head; /* head of node converted to cpu byteorder */
185 * starts at @node_off, with the node->head fields in cpu byte order.
214 node->head.left = fs64_to_cpu(sb, node->od_node->left);
215 node->head.right = fs64_to_cpu(sb, node->od_node->right);
216 node->head.overflow = fs64_to_cpu(sb, node->od_node->overflow);
217 node->head.all_key_count =
219 node->head.all_key_length =
283 node_off = this_node->head.overflow;
345 last = node->head.all_key_count - 1;
459 while (key_sum + this_node->head.all_key_count <= key_no) {
462 if (this_node->head.right == BEFS_BT_INVAL) {
468 key_sum + this_node->head.all_key_count);
474 key_sum += this_node->head.all_key_count;
475 node_off = this_node->head.right;
557 if (this_node->head.all_key_count == 0 && befs_leafnode(this_node)) {
564 if (this_node->head.all_key_count == 0) {
568 this_node->head.overflow);
569 *node_off = this_node->head.overflow;
602 if (node->head.overflow == BEFS_BT_INVAL)
626 (sizeof (befs_btree_nodehead) + node->head.all_key_length);
646 size_t keylen_index_size = node->head.all_key_count * sizeof (fs16);
682 if (index < 0 || index > node->head.all_key_count) {