HomeSort by: relevance | last modified time | path
    Searched refs:indx_t (Results 1 - 13 of 13) sorted by relevancy

  /src/lib/libc/db/btree/
btree.h 83 indx_t lower; /* lower bound of free space on page */
84 indx_t upper; /* upper bound of free space on page */
85 indx_t linp[1]; /* indx_t-aligned VAR. LENGTH DATA */
91 sizeof(uint32_t) + sizeof(indx_t) + sizeof(indx_t))
93 #define _NEXTINDEX(p) (((p)->lower - BTDATAOFF) / sizeof(indx_t))
95 static __inline indx_t
98 _DBFIT(x, indx_t);
99 return (indx_t)x
    [all...]
bt_split.c 55 static PAGE *bt_page(BTREE *, PAGE *, PAGE **, PAGE **, indx_t *, size_t);
57 static PAGE *bt_psplit(BTREE *, PAGE *, PAGE *, PAGE *, indx_t *, size_t);
58 static PAGE *bt_root(BTREE *, PAGE *, PAGE **, PAGE **, indx_t *, size_t);
90 indx_t nxtindex;
113 _DBFIT(ilen, indx_t);
114 h->upper -= (indx_t)ilen;
218 if ((uint32_t)h->upper - (uint32_t)h->lower < nbytes + sizeof(indx_t)) {
229 (nxtindex - skip) * sizeof(indx_t));
230 h->lower += sizeof(indx_t);
347 bt_page(BTREE *t, PAGE *h, PAGE **lp, PAGE **rp, indx_t *skip, size_t ilen
    [all...]
bt_open.c 123 * Page size must be indx_t aligned and >= MINPSIZE. Default
129 b.psize & (sizeof(indx_t) - 1)))
243 m.psize & (sizeof(indx_t) - 1))
296 (sizeof(indx_t) + NBLEAFDBT(0, 0));
297 _DBFIT(temp, indx_t);
298 t->bt_ovflsize = (indx_t)temp;
299 if (t->bt_ovflsize < NBLEAFDBT(NOVFLSIZE, NOVFLSIZE) + sizeof(indx_t)) {
300 size_t l = NBLEAFDBT(NOVFLSIZE, NOVFLSIZE) + sizeof(indx_t);
301 _DBFIT(l, indx_t);
302 t->bt_ovflsize = (indx_t)l
    [all...]
bt_put.c 76 indx_t idx, nxtindex;
205 if ((uint32_t)h->upper - (uint32_t)h->lower < nbytes + sizeof(indx_t)) {
214 (nxtindex - idx) * sizeof(indx_t));
215 h->lower += sizeof(indx_t);
286 if ((uint32_t)h->upper - (uint32_t)h->lower < nbytes + sizeof(indx_t))
bt_conv.c 65 indx_t i, top;
132 indx_t i, top;
bt_search.c 72 indx_t base, idx, lim;
156 indx_t idx = 0;
233 indx_t idx = 0;
bt_delete.c 150 indx_t idx = 0; /* Pacify gcc */
378 indx_t cnt, idx, *ip, offset;
439 pg->lower -= sizeof(indx_t);
471 indx_t cnt, *ip, offset;
504 h->lower -= sizeof(indx_t);
bt_seq.c 250 indx_t idx = 0; /* pacify gcc */
378 indx_t idx;
417 indx_t idx;
bt_debug.c 206 indx_t cur, top;
  /src/lib/libc/db/recno/
rec_search.c 69 indx_t idx;
74 indx_t top;
rec_put.c 198 indx_t idx, nxtindex;
260 if ((uint32_t) (h->upper - h->lower) < nbytes + sizeof(indx_t)) {
270 (nxtindex - idx) * sizeof(indx_t));
271 h->lower += sizeof(indx_t);
rec_delete.c 155 indx_t *ip, cnt, offset;
194 h->lower -= sizeof(indx_t);
  /src/include/
db.h 49 typedef uint16_t indx_t; typedef in typeref:typename:uint16_t

Completed in 17 milliseconds