Lines Matching refs:SPARES
652 max_free = hashp->SPARES[splitnum]; in overflow_page()
683 hashp->LAST_FREED = hashp->SPARES[splitnum]; in overflow_page()
684 hashp->SPARES[splitnum]++; in overflow_page()
685 offset = hashp->SPARES[splitnum] - in overflow_page()
686 (splitnum ? hashp->SPARES[splitnum - 1] : 0); in overflow_page()
696 hashp->SPARES[splitnum] = hashp->SPARES[splitnum-1]; in overflow_page()
697 hashp->SPARES[splitnum-1]--; in overflow_page()
723 hashp->SPARES[splitnum]++; in overflow_page()
736 hashp->SPARES[splitnum] = hashp->SPARES[splitnum-1]; in overflow_page()
737 hashp->SPARES[splitnum-1]--; in overflow_page()
774 for (i = 0; (i < splitnum) && (bit > hashp->SPARES[i]); i++); in overflow_page()
775 offset = (i ? bit - hashp->SPARES[i - 1] : bit); in overflow_page()
808 (ndx ? hashp->SPARES[ndx - 1] : 0) + (addr & SPLITMASK) - 1; in __free_ovflpage()