Searched refs:indx_t (Results 1 - 13 of 13) sorted by relevance

/freebsd-10-stable/lib/libc/db/btree/
H A Dbtree.h78 indx_t lower; /* lower bound of free space on page */
79 indx_t upper; /* upper bound of free space on page */
80 indx_t linp[1]; /* indx_t-aligned VAR. LENGTH DATA */
86 sizeof(u_int32_t) + sizeof(indx_t) + sizeof(indx_t))
87 #define NEXTINDEX(p) (((p)->lower - BTDATAOFF) / sizeof(indx_t))
240 indx_t index; /* the index on the page */
245 indx_t index; /* the index on the page */
328 indx_t bt_ovflsiz
[all...]
H A Dbt_split.c51 static PAGE *bt_page(BTREE *, PAGE *, PAGE **, PAGE **, indx_t *, size_t);
53 static PAGE *bt_psplit(BTREE *, PAGE *, PAGE *, PAGE *, indx_t *, size_t);
54 static PAGE *bt_root(BTREE *, PAGE *, PAGE **, PAGE **, indx_t *, size_t);
86 indx_t nxtindex;
209 if ((u_int32_t)(h->upper - h->lower) < nbytes + sizeof(indx_t)) {
220 (nxtindex - skip) * sizeof(indx_t));
221 h->lower += sizeof(indx_t);
335 bt_page(BTREE *t, PAGE *h, PAGE **lp, PAGE **rp, indx_t *skip, size_t ilen)
368 r->lower = BTDATAOFF + sizeof(indx_t);
433 bt_root(BTREE *t, PAGE *h, PAGE **lp, PAGE **rp, indx_t *ski
[all...]
H A Dbt_put.c71 indx_t idx, nxtindex;
200 if ((u_int32_t)(h->upper - h->lower) < nbytes + sizeof(indx_t)) {
209 (nxtindex - idx) * sizeof(indx_t));
210 h->lower += sizeof(indx_t);
281 if ((u_int32_t)(h->upper - h->lower) < nbytes + sizeof(indx_t))
H A Dbt_open.c120 * Page size must be indx_t aligned and >= MINPSIZE. Default
126 b.psize & (sizeof(indx_t) - 1) ))
241 m.psize & (sizeof(indx_t) - 1) )
294 (sizeof(indx_t) + NBLEAFDBT(0, 0));
295 if (t->bt_ovflsize < NBLEAFDBT(NOVFLSIZE, NOVFLSIZE) + sizeof(indx_t))
297 NBLEAFDBT(NOVFLSIZE, NOVFLSIZE) + sizeof(indx_t);
H A Dbt_conv.c62 indx_t i, top;
127 indx_t i, top;
H A Dbt_search.c67 indx_t base, idx, lim;
H A Dbt_delete.c145 indx_t idx;
373 indx_t cnt, idx, *ip, offset;
433 pg->lower -= sizeof(indx_t);
465 indx_t cnt, *ip, offset;
498 h->lower -= sizeof(indx_t);
H A Dbt_debug.c154 indx_t cur, top;
H A Dbt_seq.c235 indx_t idx;
/freebsd-10-stable/lib/libc/db/recno/
H A Drec_search.c64 indx_t idx;
69 indx_t top;
H A Drec_delete.c150 indx_t *ip, cnt, offset;
184 h->lower -= sizeof(indx_t);
H A Drec_put.c194 indx_t idx, nxtindex;
254 if ((u_int32_t)(h->upper - h->lower) < nbytes + sizeof(indx_t)) {
263 (nxtindex - idx) * sizeof(indx_t));
264 h->lower += sizeof(indx_t);
/freebsd-10-stable/include/
H A Ddb.h48 typedef uint16_t indx_t; typedef

Completed in 120 milliseconds