Searched refs:nodeSize (Results 1 - 10 of 10) sorted by relevance

/haiku-fatelf/src/servers/media/
H A DNotificationManager.cpp82 ssize_t nodeSize; local
90 &nodeSize);
91 ASSERT(nodeSize == sizeof(media_node));
118 ssize_t nodeSize; local
126 &nodeSize);
127 ASSERT(nodeSize == sizeof(media_node));
/haiku-fatelf/src/bin/bfs_tools/
H A Dbfsinfo.cpp35 int32 nodeSize = header->node_size; local
39 bplustree_node *node = (bplustree_node *)(buffer + nodeSize);
51 node = (bplustree_node *)(int32(node) + nodeSize);
/haiku-fatelf/src/add-ons/kernel/file_systems/bfs/
H A DBPlusTree.h100 uint32 FragmentsUsed(uint32 nodeSize) const;
110 static inline uint32 MaxFragments(uint32 nodeSize);
112 status_t CheckIntegrity(uint32 nodeSize) const;
207 int32 nodeSize = BPLUSTREE_NODE_SIZE);
213 int32 nodeSize = BPLUSTREE_NODE_SIZE);
603 bplustree_node::MaxFragments(uint32 nodeSize) argument
605 return nodeSize / ((NUM_FRAGMENT_VALUES + 1) * sizeof(off_t));
H A DBPlusTree.cpp63 NodeChecker(const bplustree_node* node, int32 nodeSize, const char* text) argument
66 fSize(nodeSize),
535 BPlusTree::BPlusTree(Transaction& transaction, Inode* stream, int32 nodeSize) argument
587 BPlusTree::SetTo(Transaction& transaction, Inode* stream, int32 nodeSize) argument
597 fStatus = stream->SetFileSize(transaction, nodeSize * 2);
609 fNodeSize = nodeSize;
616 header->root_node_pointer = HOST_ENDIAN_TO_BFS_INT64(nodeSize);
619 header->maximum_size = HOST_ENDIAN_TO_BFS_INT64(nodeSize * 2);
2888 bplustree_node::FragmentsUsed(uint32 nodeSize) const
2891 for (uint32 i = 0; i < MaxFragments(nodeSize);
[all...]
/haiku-fatelf/src/bin/bfs_tools/lib/
H A DBPlusTree.h104 BPlusTree(int32 keyType, int32 nodeSize = BPLUSTREE_NODE_SIZE,
110 status_t SetTo(int32 keyType,int32 nodeSize = BPLUSTREE_NODE_SIZE,bool allowDuplicates = true);
146 void Initialize(int32 nodeSize);
H A DBPlusTree.cpp72 BPlusTree::BPlusTree(int32 keyType,int32 nodeSize,bool allowDuplicates) argument
79 SetTo(keyType,nodeSize,allowDuplicates);
113 void BPlusTree::Initialize(int32 nodeSize) argument
123 fNodeSize = nodeSize;
131 status_t BPlusTree::SetTo(int32 keyType,int32 nodeSize,bool allowDuplicates) argument
135 Initialize(nodeSize);
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/bfs/r5/
H A DBPlusTree.cpp28 NodeChecker(bplustree_node *node, int32 nodeSize) argument
31 fSize(nodeSize)
245 BPlusTree::BPlusTree(Transaction *transaction, Inode *stream, int32 nodeSize) argument
296 BPlusTree::SetTo(Transaction *transaction, Inode *stream, int32 nodeSize) argument
306 fStatus = stream->SetFileSize(transaction, nodeSize * 2);
319 fNodeSize = nodeSize;
326 fHeader->root_node_pointer = HOST_ENDIAN_TO_BFS_INT64(nodeSize);
328 fHeader->maximum_size = HOST_ENDIAN_TO_BFS_INT64(nodeSize * 2);
2024 bplustree_node::FragmentsUsed(uint32 nodeSize) argument
2027 for (uint32 i = 0; i < nodeSize / ((NUM_FRAGMENT_VALUE
2038 CheckIntegrity(uint32 nodeSize) argument
[all...]
H A DBPlusTree.h87 int32 FragmentsUsed(uint32 nodeSize);
98 void CheckIntegrity(uint32 nodeSize);
185 BPlusTree(Transaction *transaction, Inode *stream, int32 nodeSize = BPLUSTREE_NODE_SIZE);
190 status_t SetTo(Transaction *transaction, Inode *stream, int32 nodeSize = BPLUSTREE_NODE_SIZE);
/haiku-fatelf/src/system/boot/loader/file_systems/bfs/
H A DBPlusTree.cpp800 bplustree_node::FragmentsUsed(uint32 nodeSize) argument
803 for (uint32 i = 0; i < nodeSize / ((NUM_FRAGMENT_VALUES + 1) * sizeof(off_t)); i++) {
H A DBPlusTree.h86 int32 FragmentsUsed(uint32 nodeSize);

Completed in 128 milliseconds