Home
last modified time | relevance | path

Searched refs:HASHKEY (Results 1 – 2 of 2) sorted by relevance

/freebsd-14.2/lib/libc/db/mpool/
H A Dmpool.c139 head = &mp->hqh[HASHKEY(bp->pgno)]; in mpool_new()
162 head = &mp->hqh[HASHKEY(bp->pgno)]; in mpool_delete()
202 head = &mp->hqh[HASHKEY(bp->pgno)]; in mpool_get()
255 head = &mp->hqh[HASHKEY(bp->pgno)]; in mpool_get()
363 head = &mp->hqh[HASHKEY(bp->pgno)]; in mpool_bkt()
432 head = &mp->hqh[HASHKEY(pgno)]; in mpool_look()
/freebsd-14.2/include/
H A Dmpool.h47 #define HASHKEY(pgno) ((pgno - 1 + HASHSIZE) % HASHSIZE) macro