Lines Matching defs:PAGE
41 BTREE METADATA PAGE LAYOUT
70 HASH METADATA PAGE LAYOUT
105 MAIN PAGE LAYOUT
125 * sizeof(PAGE) == 26 bytes, and the following indices are guaranteed to be
161 } PAGE;
164 #define LSN(p) (((PAGE *)p)->lsn)
165 #define PGNO(p) (((PAGE *)p)->pgno)
166 #define PREV_PGNO(p) (((PAGE *)p)->prev_pgno)
167 #define NEXT_PGNO(p) (((PAGE *)p)->next_pgno)
168 #define NUM_ENT(p) (((PAGE *)p)->entries)
169 #define HOFFSET(p) (((PAGE *)p)->hf_offset)
170 #define LEVEL(p) (((PAGE *)p)->level)
171 #define TYPE(p) (((PAGE *)p)->type)
213 #define P_OVERHEAD (SSZA(PAGE, inp))
222 #define P_ENTRY(pg, indx) ((u_int8_t *)pg + ((PAGE *)pg)->inp[indx])
225 OVERFLOW PAGE LAYOUT
243 #define OV_LEN(p) (((PAGE *)p)->hf_offset)
244 #define OV_REF(p) (((PAGE *)p)->entries)
250 HASH PAGE LAYOUT
374 BTREE PAGE LAYOUT
457 BTREE INTERNAL PAGE LAYOUT
486 RECNO INTERNAL PAGE LAYOUT