Home
last modified time | relevance | path

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

/picolibc-latest/newlib/libc/search/
Dhash_page.c657 int max_free, offset, splitnum; in overflow_page() local
663 splitnum = hashp->OVFL_POINT; in overflow_page()
664 max_free = hashp->SPARES[splitnum]; in overflow_page()
695 hashp->LAST_FREED = hashp->SPARES[splitnum]; in overflow_page()
696 hashp->SPARES[splitnum]++; in overflow_page()
697 offset = hashp->SPARES[splitnum] - in overflow_page()
698 (splitnum ? hashp->SPARES[splitnum - 1] : 0); in overflow_page()
702 if (++splitnum >= NCACHED) { in overflow_page()
706 hashp->OVFL_POINT = splitnum; in overflow_page()
707 hashp->SPARES[splitnum] = hashp->SPARES[splitnum-1]; in overflow_page()
[all …]