Lines Matching refs:bufp

87              BUFHEAD *bufp,  in __big_insert()  argument
97 cp = bufp->page; /* Character pointer of p. */ in __big_insert()
119 bufp = __add_ovflpage(hashp, bufp); in __big_insert()
120 if (!bufp) in __big_insert()
137 p = (__uint16_t *)bufp->page; in __big_insert()
138 cp = bufp->page; in __big_insert()
139 bufp->flags |= BUF_MOD; in __big_insert()
163 bufp = __add_ovflpage(hashp, bufp); in __big_insert()
164 if (!bufp) in __big_insert()
166 cp = bufp->page; in __big_insert()
170 bufp->flags |= BUF_MOD; in __big_insert()
188 BUFHEAD *bufp) in __big_delete() argument
194 rbufp = bufp; in __big_delete()
196 bp = (__uint16_t *)bufp->page; in __big_delete()
234 bp = (__uint16_t *)bufp->page; in __big_delete()
239 bufp->ovfl = rbufp->ovfl; in __big_delete()
242 bufp->ovfl = NULL; in __big_delete()
248 bufp->flags |= BUF_MOD; in __big_delete()
266 BUFHEAD *bufp, in __find_bigpair() argument
277 bp = (__uint16_t *)bufp->page; in __find_bigpair()
278 p = bufp->page; in __find_bigpair()
289 bufp = __get_buf(hashp, bp[ndx + 2], bufp, 0); in __find_bigpair()
290 if (!bufp) in __find_bigpair()
292 p = bufp->page; in __find_bigpair()
319 BUFHEAD *bufp; in __find_last_page() local
323 bufp = *bpp; in __find_last_page()
324 bp = (__uint16_t *)bufp->page; in __find_last_page()
338 bufp = __get_buf(hashp, pageno, bufp, 0); in __find_last_page()
339 if (!bufp) in __find_last_page()
341 bp = (__uint16_t *)bufp->page; in __find_last_page()
344 *bpp = bufp; in __find_last_page()
357 BUFHEAD *bufp, in __big_return() argument
366 bp = (__uint16_t *)bufp->page; in __big_return()
368 bufp = __get_buf(hashp, bp[bp[0] - 1], bufp, 0); in __big_return()
369 if (!bufp) in __big_return()
371 bp = (__uint16_t *)bufp->page; in __big_return()
376 bufp = __get_buf(hashp, bp[bp[0] - 1], bufp, 0); in __big_return()
377 if (!bufp) in __big_return()
379 bp = (__uint16_t *)bufp->page; in __big_return()
380 save_p = bufp; in __big_return()
395 save_p = bufp; in __big_return()
396 save_addr = bufp->addr; in __big_return()
397 bufp = __get_buf(hashp, bp[bp[0] - 1], bufp, 0); in __big_return()
398 if (!bufp) in __big_return()
400 bp = (__uint16_t *)bufp->page; in __big_return()
415 bp[bp[0] - 1], bufp, 0); in __big_return()
429 val->size = collect_data(hashp, bufp, len, set_current); in __big_return()
447 BUFHEAD *bufp, in collect_data() argument
457 p = bufp->page; in collect_data()
460 save_addr = bufp->addr; in collect_data()
475 __get_buf(hashp, bp[bp[0] - 1], bufp, 0); in collect_data()
485 xbp = __get_buf(hashp, bp[bp[0] - 1], bufp, 0); in collect_data()
492 if (bufp->addr != save_addr) { in collect_data()
496 memmove(&hashp->tmp_buf[len], (bufp->page) + bp[1], mylen); in collect_data()
505 BUFHEAD *bufp, in __big_keydata() argument
510 key->size = collect_key(hashp, bufp, 0, val, set); in __big_keydata()
523 BUFHEAD *bufp, in collect_key() argument
533 p = bufp->page; in collect_key()
537 save_addr = bufp->addr; in collect_key()
544 if (__big_return(hashp, bufp, 1, val, set)) in collect_key()
547 xbp = __get_buf(hashp, bp[bp[0] - 1], bufp, 0); in collect_key()
552 if (bufp->addr != save_addr) { in collect_key()
556 memmove(&hashp->tmp_key[len], (bufp->page) + bp[1], mylen); in collect_key()