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 in function:__big_delete
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 576 BUFHEAD *rbufp; local in function:hash_access
591 rbufp = __get_buf(hashp, __call_hash(hashp, kp, (int)size), NULL, 0);
592 if (!rbufp)
594 save_bufp = rbufp;
597 rbufp->flags |= BUF_PIN;
598 for (bp = (uint16_t *)(void *)rbufp->page, n = *bp++, ndx = 1; ndx < n;)
602 memcmp(kp, rbufp->page + *bp, size) == 0)
611 rbufp = __get_buf(hashp, (uint32_t)*bp, rbufp, 0);
612 if (!rbufp) {
    [all...]

Completed in 12 milliseconds