bl 160 libdb/bt_debug.c BLEAF *bl; bl 209 libdb/bt_debug.c bl = GETBLEAF(h, cur); bl 210 libdb/bt_debug.c if (bl->flags & P_BIGKEY) bl 213 libdb/bt_debug.c (long unsigned int)*(pgno_t *)bl->bytes, bl 214 libdb/bt_debug.c (unsigned int)*(u_int32_t *)(bl->bytes + sizeof(pgno_t))); bl 215 libdb/bt_debug.c else if (bl->ksize) bl 216 libdb/bt_debug.c (void)fprintf(stderr, "%s/", bl->bytes); bl 217 libdb/bt_debug.c if (bl->flags & P_BIGDATA) bl 220 libdb/bt_debug.c (long unsigned int)*(pgno_t *)(bl->bytes + bl->ksize), bl 221 libdb/bt_debug.c (unsigned int)*(u_int32_t *)(bl->bytes + bl->ksize + bl 223 libdb/bt_debug.c else if (bl->dsize) bl 225 libdb/bt_debug.c (int)bl->dsize, bl->bytes + bl->ksize); bl 475 libdb/bt_delete.c BLEAF *bl; bl 489 libdb/bt_delete.c to = bl = GETBLEAF(h, index); bl 490 libdb/bt_delete.c if (bl->flags & P_BIGKEY && __ovfl_delete(t, bl->bytes) == RET_ERROR) bl 492 libdb/bt_delete.c if (bl->flags & P_BIGDATA && bl 493 libdb/bt_delete.c __ovfl_delete(t, bl->bytes + bl->ksize) == RET_ERROR) bl 497 libdb/bt_delete.c nbytes = NBLEAF(bl); bl 91 libdb/bt_split.c BLEAF *bl = NULL, *tbl; bl 188 libdb/bt_split.c bl = GETBLEAF(rchild, 0); bl 189 libdb/bt_split.c nbytes = NBINTERNAL(bl->ksize); bl 190 libdb/bt_split.c if (t->bt_pfx && !(bl->flags & P_BIGKEY) && bl 195 libdb/bt_split.c b.size = bl->ksize; bl 196 libdb/bt_split.c b.data = bl->bytes; bl 245 libdb/bt_split.c WR_BINTERNAL(dest, nksize ? nksize : bl->ksize, bl 246 libdb/bt_split.c rchild->pgno, bl->flags & P_BIGKEY); bl 247 libdb/bt_split.c memmove(dest, bl->bytes, nksize ? nksize : bl->ksize); bl 248 libdb/bt_split.c if (bl->flags & P_BIGKEY && bl 249 libdb/bt_split.c bt_preserve(t, *(pgno_t *)bl->bytes) == RET_ERROR) bl 537 libdb/bt_split.c BLEAF *bl; bl 556 libdb/bt_split.c bl = GETBLEAF(r, 0); bl 557 libdb/bt_split.c nbytes = NBINTERNAL(bl->ksize); bl 560 libdb/bt_split.c WR_BINTERNAL(dest, bl->ksize, r->pgno, 0); bl 561 libdb/bt_split.c memmove(dest, bl->bytes, bl->ksize); bl 567 libdb/bt_split.c if (bl->flags & P_BIGKEY && bl 568 libdb/bt_split.c bt_preserve(t, *(pgno_t *)bl->bytes) == RET_ERROR) bl 615 libdb/bt_split.c BLEAF *bl; bl 647 libdb/bt_split.c src = bl = GETBLEAF(h, nxt); bl 648 libdb/bt_split.c nbytes = NBLEAF(bl); bl 649 libdb/bt_split.c isbigkey = bl->flags & P_BIGKEY; bl 743 libdb/bt_split.c src = bl = GETBLEAF(h, nxt); bl 744 libdb/bt_split.c nbytes = NBLEAF(bl); bl 75 libdb/bt_utils.c BLEAF *bl; bl 78 libdb/bt_utils.c bl = GETBLEAF(e->page, e->index); bl 88 libdb/bt_utils.c if (bl->flags & P_BIGKEY) { bl 89 libdb/bt_utils.c if (__ovfl_get(t, bl->bytes, bl 94 libdb/bt_utils.c if (bl->ksize > rkey->size) { bl 96 libdb/bt_utils.c malloc(bl->ksize) : realloc(rkey->data, bl->ksize)); bl 100 libdb/bt_utils.c rkey->size = bl->ksize; bl 102 libdb/bt_utils.c memmove(rkey->data, bl->bytes, bl->ksize); bl 103 libdb/bt_utils.c key->size = bl->ksize; bl 106 libdb/bt_utils.c key->size = bl->ksize; bl 107 libdb/bt_utils.c key->data = bl->bytes; bl 114 libdb/bt_utils.c if (bl->flags & P_BIGDATA) { bl 115 libdb/bt_utils.c if (__ovfl_get(t, bl->bytes + bl->ksize, bl 121 libdb/bt_utils.c if (bl->dsize + 1 > rdata->size) { bl 123 libdb/bt_utils.c malloc(bl->dsize + 1) : bl 124 libdb/bt_utils.c realloc(rdata->data, bl->dsize + 1)); bl 128 libdb/bt_utils.c rdata->size = bl->dsize + 1; bl 130 libdb/bt_utils.c memmove(rdata->data, bl->bytes + bl->ksize, bl->dsize); bl 131 libdb/bt_utils.c data->size = bl->dsize; bl 134 libdb/bt_utils.c data->size = bl->dsize; bl 135 libdb/bt_utils.c data->data = bl->bytes + bl->ksize; bl 160 libdb/bt_utils.c BLEAF *bl; bl 178 libdb/bt_utils.c bl = GETBLEAF(h, e->index); bl 179 libdb/bt_utils.c if (bl->flags & P_BIGKEY) bl 180 libdb/bt_utils.c bigkey = bl->bytes; bl 182 libdb/bt_utils.c k2.data = bl->bytes; bl 183 libdb/bt_utils.c k2.size = bl->ksize;