bl                163 libdb/bt_debug.c 	BLEAF *bl;
bl                212 libdb/bt_debug.c 			bl = GETBLEAF(h, cur);
bl                213 libdb/bt_debug.c 			if (bl->flags & P_BIGKEY)
bl                216 libdb/bt_debug.c 				    (long unsigned int)*(pgno_t *)bl->bytes,
bl                217 libdb/bt_debug.c 				    (unsigned int)*(u_int32_t *)(bl->bytes + sizeof(pgno_t)));
bl                218 libdb/bt_debug.c 			else if (bl->ksize)
bl                219 libdb/bt_debug.c 				(void)fprintf(stderr, "%s/", bl->bytes);
bl                220 libdb/bt_debug.c 			if (bl->flags & P_BIGDATA)
bl                223 libdb/bt_debug.c 				    (long unsigned int)*(pgno_t *)(bl->bytes + bl->ksize),
bl                224 libdb/bt_debug.c 				    (unsigned int)*(u_int32_t *)(bl->bytes + bl->ksize +
bl                226 libdb/bt_debug.c 			else if (bl->dsize)
bl                228 libdb/bt_debug.c 				    (int)bl->dsize, bl->bytes + bl->ksize);
bl                483 libdb/bt_delete.c 	BLEAF *bl;
bl                497 libdb/bt_delete.c 	to = bl = GETBLEAF(h, index);
bl                498 libdb/bt_delete.c 	if (bl->flags & P_BIGKEY && __ovfl_delete(t, bl->bytes) == RET_ERROR)
bl                500 libdb/bt_delete.c 	if (bl->flags & P_BIGDATA &&
bl                501 libdb/bt_delete.c 	    __ovfl_delete(t, bl->bytes + bl->ksize) == RET_ERROR)
bl                505 libdb/bt_delete.c 	nbytes = NBLEAF(bl);
bl                 92 libdb/bt_split.c 	BLEAF *bl = NULL, *tbl;
bl                189 libdb/bt_split.c 			bl = GETBLEAF(rchild, 0);
bl                190 libdb/bt_split.c 			nbytes = NBINTERNAL(bl->ksize);
bl                191 libdb/bt_split.c 			if (t->bt_pfx && !(bl->flags & P_BIGKEY) &&
bl                196 libdb/bt_split.c 				b.size = bl->ksize;
bl                197 libdb/bt_split.c 				b.data = bl->bytes;
bl                246 libdb/bt_split.c 			WR_BINTERNAL(dest, nksize ? nksize : bl->ksize,
bl                247 libdb/bt_split.c 			    rchild->pgno, bl->flags & P_BIGKEY);
bl                248 libdb/bt_split.c 			memmove(dest, bl->bytes, nksize ? nksize : bl->ksize);
bl                249 libdb/bt_split.c 			if (bl->flags & P_BIGKEY &&
bl                250 libdb/bt_split.c 			    bt_preserve(t, *(pgno_t *)bl->bytes) == RET_ERROR)
bl                542 libdb/bt_split.c 	BLEAF *bl;
bl                561 libdb/bt_split.c 		bl = GETBLEAF(r, 0);
bl                562 libdb/bt_split.c 		nbytes = NBINTERNAL(bl->ksize);
bl                565 libdb/bt_split.c 		WR_BINTERNAL(dest, bl->ksize, r->pgno, 0);
bl                566 libdb/bt_split.c 		memmove(dest, bl->bytes, bl->ksize);
bl                572 libdb/bt_split.c 		if (bl->flags & P_BIGKEY &&
bl                573 libdb/bt_split.c 		    bt_preserve(t, *(pgno_t *)bl->bytes) == RET_ERROR)
bl                621 libdb/bt_split.c 	BLEAF *bl;
bl                653 libdb/bt_split.c 				src = bl = GETBLEAF(h, nxt);
bl                654 libdb/bt_split.c 				nbytes = NBLEAF(bl);
bl                655 libdb/bt_split.c 				isbigkey = bl->flags & P_BIGKEY;
bl                749 libdb/bt_split.c 			src = bl = GETBLEAF(h, nxt);
bl                750 libdb/bt_split.c 			nbytes = NBLEAF(bl);
bl                 76 libdb/bt_utils.c 	BLEAF *bl;
bl                 79 libdb/bt_utils.c 	bl = GETBLEAF(e->page, e->index);
bl                 89 libdb/bt_utils.c 	if (bl->flags & P_BIGKEY) {
bl                 90 libdb/bt_utils.c 		if (__ovfl_get(t, bl->bytes,
bl                 95 libdb/bt_utils.c 		if (bl->ksize > rkey->size) {
bl                 97 libdb/bt_utils.c 			    malloc(bl->ksize) : realloc(rkey->data, bl->ksize));
bl                101 libdb/bt_utils.c 			rkey->size = bl->ksize;
bl                103 libdb/bt_utils.c 		memmove(rkey->data, bl->bytes, bl->ksize);
bl                104 libdb/bt_utils.c 		key->size = bl->ksize;
bl                107 libdb/bt_utils.c 		key->size = bl->ksize;
bl                108 libdb/bt_utils.c 		key->data = bl->bytes;
bl                115 libdb/bt_utils.c 	if (bl->flags & P_BIGDATA) {
bl                116 libdb/bt_utils.c 		if (__ovfl_get(t, bl->bytes + bl->ksize,
bl                122 libdb/bt_utils.c 		if (bl->dsize + 1 > rdata->size) {
bl                124 libdb/bt_utils.c 			    malloc(bl->dsize + 1) :
bl                125 libdb/bt_utils.c 			    realloc(rdata->data, bl->dsize + 1));
bl                129 libdb/bt_utils.c 			rdata->size = bl->dsize + 1;
bl                131 libdb/bt_utils.c 		memmove(rdata->data, bl->bytes + bl->ksize, bl->dsize);
bl                132 libdb/bt_utils.c 		data->size = bl->dsize;
bl                135 libdb/bt_utils.c 		data->size = bl->dsize;
bl                136 libdb/bt_utils.c 		data->data = bl->bytes + bl->ksize;
bl                162 libdb/bt_utils.c 	BLEAF *bl;
bl                180 libdb/bt_utils.c 		bl = GETBLEAF(h, e->index);
bl                181 libdb/bt_utils.c 		if (bl->flags & P_BIGKEY)
bl                182 libdb/bt_utils.c 			bigkey = bl->bytes;
bl                184 libdb/bt_utils.c 			k2.data = bl->bytes;
bl                185 libdb/bt_utils.c 			k2.size = bl->ksize;