HomeSort by: relevance | last modified time | path
    Searched defs:rbufp (Results 1 - 2 of 2) sorted by relevancy

  /src/lib/libc/db/hash/
hash_bigkey.c 221 BUFHEAD *last_bfp, *rbufp; local
226 rbufp = bufp;
244 rbufp->flags |= BUF_MOD;
245 rbufp = __get_buf(hashp, (uint32_t)pageno, rbufp, 0);
248 last_bfp = rbufp;
249 if (!rbufp)
251 bp = (uint16_t *)(void *)rbufp->page;
255 * If we get here then rbufp points to the last page of the big
271 bufp->ovfl = rbufp->ovfl
    [all...]
hash.c 577 BUFHEAD *rbufp; local
592 rbufp = __get_buf(hashp, __call_hash(hashp, kp, (int)size), NULL, 0);
593 if (!rbufp)
595 save_bufp = rbufp;
598 rbufp->flags |= BUF_PIN;
599 for (bp = (uint16_t *)(void *)rbufp->page, n = *bp++, ndx = 1; ndx < n;)
603 memcmp(kp, rbufp->page + *bp, size) == 0)
612 rbufp = __get_buf(hashp, (uint32_t)*bp, rbufp, 0);
613 if (!rbufp) {
    [all...]

Completed in 20 milliseconds