Searched defs:hashhdr (Results 1 – 2 of 2) sorted by relevance
80 typedef struct hashhdr { /* Disk resident portion */ struct81 int32_t magic; /* Magic NO for hash tables */82 int32_t version; /* Version ID */83 int32_t lorder; /* Byte Order */84 int32_t bsize; /* Bucket/Page Size */85 int32_t bshift; /* Bucket shift */86 int32_t ovfl_point; /* Where overflow pages are being allocated */87 int32_t last_freed; /* Last overflow page freed */88 int32_t max_bucket; /* ID of Maximum bucket in use */89 int32_t high_mask; /* Mask to modulo into entire table */[all …]
77 typedef struct hashhdr { /* Disk resident portion */ struct78 DB_LSN lsn; /* 00-07: LSN of the header page */79 db_pgno_t pgno; /* 08-11: Page number (btree compatibility). */80 u_int32_t magic; /* 12-15: Magic NO for hash tables */81 u_int32_t version; /* 16-19: Version ID */82 u_int32_t pagesize; /* 20-23: Bucket/Page Size */83 u_int32_t ovfl_point; /* 24-27: Overflow page allocation location */84 u_int32_t last_freed; /* 28-31: Last freed overflow page pgno */85 u_int32_t max_bucket; /* 32-35: ID of Maximum bucket in use */86 u_int32_t high_mask; /* 36-39: Modulo mask into table */[all …]