[svn-r7201] Purpose:
Code cleanup
Description:
Finish converting the B-tree 'K' values to use unsigned integers, rather
than signed ones, since negative amounts of entries in a B-tree node aren't
meaningful.
Platforms tested:
FreeBSD 4.8 (sleipnir)
h5committest
This commit is contained in:
@@ -48,18 +48,18 @@ class H5_DLLCPP FileCreatPropList : public PropList {
|
||||
void getSizes( size_t& sizeof_addr, size_t& sizeof_size ) const;
|
||||
|
||||
// Sets the size of parameters used to control the symbol table nodes.
|
||||
void setSymk( int int_nodes_k, unsigned leaf_nodes_k ) const;
|
||||
void setSymk( unsigned int_nodes_k, unsigned leaf_nodes_k ) const;
|
||||
|
||||
// Retrieves the size of the symbol table B-tree 1/2 rank and the
|
||||
// symbol table leaf node 1/2 size.
|
||||
void getSymk( int& int_nodes_k, unsigned& leaf_nodes_k ) const;
|
||||
void getSymk( unsigned& int_nodes_k, unsigned& leaf_nodes_k ) const;
|
||||
|
||||
// Sets the size of parameter used to control the B-trees for
|
||||
// indexing chunked datasets.
|
||||
void setIstorek( int ik ) const;
|
||||
void setIstorek( unsigned ik ) const;
|
||||
|
||||
// Returns the 1/2 rank of an indexed storage B-tree.
|
||||
int getIstorek() const;
|
||||
unsigned getIstorek() const;
|
||||
|
||||
// Creates a copy of an existing file create property list
|
||||
// using the property list id
|
||||
|
||||
Reference in New Issue
Block a user