Searched refs:VKey (Results 1 – 8 of 8) sorted by relevance
/haiku/src/add-ons/kernel/file_systems/reiserfs/ |
H A D | Key.h | 167 class VKey { 172 VKey() : fKey(NULL), fVersion(KEY_FORMAT_3_5) {} in VKey() function 173 VKey(const Key *k, uint32 version) in VKey() function 175 VKey(const Key *k) : fKey(NULL), fVersion(KEY_FORMAT_3_5) { SetTo(k); } in VKey() function 176 VKey(uint32 dirID, uint32 objectID, uint64 offset, uint32 type, in VKey() function 182 VKey(const VKey &k) in VKey() function 184 ~VKey() { _Unset(); } in ~VKey() 219 int Compare(const VKey &k, bool compareTypes = false) const 245 bool operator==(const VKey &k) const { return (Compare(k) == 0); } 246 bool operator!=(const VKey &k) const { return (Compare(k) != 0); } [all …]
|
H A D | Item.h | 40 VKey *GetKey(VKey *k) const { k->SetTo(GetKey(), GetVersion()); return k; } in GetKey() 82 VKey *GetKey(VKey *k) const;
|
H A D | Block.h | 36 class VKey; variable 131 status_t GetLeftKey(VKey *k) const; 132 status_t GetRightKey(VKey *k) const;
|
H A D | Iterators.h | 31 class VKey; variable 97 status_t FindRightMostLeaf(const VKey *k, LeafNode **node = NULL); 113 status_t _SearchRightMost(InternalNode *node, const VKey *k, int32 *index); 135 status_t FindRightMostClose(const VKey *k, Item *item = NULL); 136 status_t FindRightMost(const VKey *k, Item *item = NULL); 143 status_t _SearchRightMost(LeafNode *node, const VKey *k,
|
H A D | Iterators.cpp | 398 TreeIterator::FindRightMostLeaf(const VKey *k, LeafNode **node) in FindRightMostLeaf() 495 TreeIterator::_SearchRightMost(InternalNode *node, const VKey *k, int32 *index) in _SearchRightMost() 509 VKey midKey(node->KeyAt(mid)); in _SearchRightMost() 640 ItemIterator::FindRightMostClose(const VKey *k, Item *item) in FindRightMostClose() 675 ItemIterator::FindRightMost(const VKey *k, Item *item) in FindRightMost() 684 VKey itemKey; in FindRightMost() 741 ItemIterator::_SearchRightMost(LeafNode *node, const VKey *k, in _SearchRightMost() 771 VKey lowerKey; in _SearchRightMost() 779 VKey midKey; in _SearchRightMost() 900 VKey k(fDirID, fObjectID, fOffset, 0, KEY_FORMAT_3_5); in GetNext() [all …]
|
H A D | Item.cpp | 186 VKey * 187 Item::GetKey(VKey *k) const in GetKey()
|
H A D | Block.cpp | 393 LeafNode::GetLeftKey(VKey *k) const in GetLeftKey() 407 LeafNode::GetRightKey(VKey *k) const in GetRightKey()
|
H A D | Tree.cpp | 242 VKey k(dirID, objectID, SD_OFFSET, V1_SD_UNIQUENESS, KEY_FORMAT_3_5); in FindStatItem()
|