Home
last modified time | relevance | path

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

/freebsd-13.1/lib/libc/db/mpool/
H A Dmpool.c142 head = &mp->hqh[HASHKEY(bp->pgno)]; in mpool_new()
165 head = &mp->hqh[HASHKEY(bp->pgno)]; in mpool_delete()
205 head = &mp->hqh[HASHKEY(bp->pgno)]; in mpool_get()
258 head = &mp->hqh[HASHKEY(bp->pgno)]; in mpool_get()
366 head = &mp->hqh[HASHKEY(bp->pgno)]; in mpool_bkt()
435 head = &mp->hqh[HASHKEY(pgno)]; in mpool_look()
/freebsd-13.1/include/
H A Dmpool.h48 #define HASHKEY(pgno) ((pgno - 1 + HASHSIZE) % HASHSIZE) macro