Searched refs:indx_t (Results 1 – 13 of 13) sorted by relevance
/freebsd/lib/libc/db/btree/ |
H A D | bt_split.c | 46 static PAGE *bt_page(BTREE *, PAGE *, PAGE **, PAGE **, indx_t *, size_t); 48 static PAGE *bt_psplit(BTREE *, PAGE *, PAGE *, PAGE *, indx_t *, size_t); 49 static PAGE *bt_root(BTREE *, PAGE *, PAGE **, PAGE **, indx_t *, size_t); 81 indx_t nxtindex; in __bt_split() 204 if ((u_int32_t)(h->upper - h->lower) < nbytes + sizeof(indx_t)) { in __bt_split() 215 (nxtindex - skip) * sizeof(indx_t)); in __bt_split() 216 h->lower += sizeof(indx_t); in __bt_split() 333 bt_page(BTREE *t, PAGE *h, PAGE **lp, PAGE **rp, indx_t *skip, size_t ilen) in bt_page() 366 r->lower = BTDATAOFF + sizeof(indx_t); in bt_page() 431 bt_root(BTREE *t, PAGE *h, PAGE **lp, PAGE **rp, indx_t *skip, size_t ilen) in bt_root() [all …]
|
H A D | btree.h | 77 indx_t lower; /* lower bound of free space on page */ 78 indx_t upper; /* upper bound of free space on page */ 79 indx_t linp[1]; /* indx_t-aligned VAR. LENGTH DATA */ 85 sizeof(u_int32_t) + sizeof(indx_t) + sizeof(indx_t)) 86 #define NEXTINDEX(p) (((p)->lower - BTDATAOFF) / sizeof(indx_t)) 239 indx_t index; /* the index on the page */ 244 indx_t index; /* the index on the page */ 327 indx_t bt_ovflsize; /* cut-off for key/data overflow */
|
H A D | bt_put.c | 67 indx_t idx, nxtindex; in __bt_put() 197 if ((u_int32_t)(h->upper - h->lower) < nbytes + sizeof(indx_t)) { in __bt_put() 206 (nxtindex - idx) * sizeof(indx_t)); in __bt_put() 207 h->lower += sizeof(indx_t); in __bt_put() 278 if ((u_int32_t)(h->upper - h->lower) < nbytes + sizeof(indx_t)) in bt_fast()
|
H A D | bt_open.c | 122 b.psize & (sizeof(indx_t) - 1) )) in __bt_open() 237 m.psize & (sizeof(indx_t) - 1) ) in __bt_open() 290 (sizeof(indx_t) + NBLEAFDBT(0, 0)); in __bt_open() 291 if (t->bt_ovflsize < NBLEAFDBT(NOVFLSIZE, NOVFLSIZE) + sizeof(indx_t)) in __bt_open() 293 NBLEAFDBT(NOVFLSIZE, NOVFLSIZE) + sizeof(indx_t); in __bt_open()
|
H A D | bt_delete.c | 141 indx_t idx; in __bt_stkacq() 369 indx_t cnt, idx, *ip, offset; in __bt_pdelete() 429 pg->lower -= sizeof(indx_t); in __bt_pdelete() 461 indx_t cnt, *ip, offset; in __bt_dleaf() 494 h->lower -= sizeof(indx_t); in __bt_dleaf()
|
H A D | bt_conv.c | 58 indx_t i, top; in __bt_pgin() 123 indx_t i, top; in __bt_pgout()
|
H A D | bt_search.c | 63 indx_t base, idx, lim; in __bt_search()
|
H A D | bt_debug.c | 150 indx_t cur, top; in __bt_dpage()
|
H A D | bt_seq.c | 231 indx_t idx; in __bt_seqadv()
|
/freebsd/lib/libc/db/recno/ |
H A D | rec_put.c | 189 indx_t idx, nxtindex; in __rec_iput() 249 if ((u_int32_t)(h->upper - h->lower) < nbytes + sizeof(indx_t)) { in __rec_iput() 258 (nxtindex - idx) * sizeof(indx_t)); in __rec_iput() 259 h->lower += sizeof(indx_t); in __rec_iput()
|
H A D | rec_search.c | 60 indx_t idx; in __rec_search() 65 indx_t top; in __rec_search()
|
H A D | rec_delete.c | 146 indx_t *ip, cnt, offset; in __rec_dleaf() 180 h->lower -= sizeof(indx_t); in __rec_dleaf()
|
/freebsd/include/ |
H A D | db.h | 47 typedef uint16_t indx_t; typedef
|