Lines Matching defs:index
62 * in the internal node is not the last key in the index. Keys that are
117 int index, u16 * keylen);
145 befs_error(sb, "Couldn't read index header.");
257 "befs_btree_find() failed to read index superblock");
400 * Here's how it works: Key_no is the index of the key/value pair to
430 "befs_btree_read() failed to read index superblock");
609 * befs_bt_keylen_index - Finds start of keylen index in a node
610 * @node: Pointer to the node structure to find the keylen index within
612 * Returns a pointer to the start of the key length index array
617 * of the key length index" (p.88, practical filesystem design).
668 * @index: the index of the key to get
669 * @keylen: modified to be the length of the key at @index
676 int index, u16 * keylen)
682 if (index < 0 || index > node->head.all_key_count) {
690 if (index == 0)
693 prev_key_end = fs16_to_cpu(sb, keylen_index[index - 1]);
695 *keylen = fs16_to_cpu(sb, keylen_index[index]) - prev_key_end;