Lines Matching refs:SPARES
661 max_free = hashp->SPARES[splitnum]; in overflow_page()
692 hashp->LAST_FREED = hashp->SPARES[splitnum]; in overflow_page()
693 hashp->SPARES[splitnum]++; in overflow_page()
694 offset = hashp->SPARES[splitnum] - in overflow_page()
695 (splitnum ? hashp->SPARES[splitnum - 1] : 0); in overflow_page()
705 hashp->SPARES[splitnum] = hashp->SPARES[splitnum-1]; in overflow_page()
706 hashp->SPARES[splitnum-1]--; in overflow_page()
732 hashp->SPARES[splitnum]++; in overflow_page()
745 hashp->SPARES[splitnum] = hashp->SPARES[splitnum-1]; in overflow_page()
746 hashp->SPARES[splitnum-1]--; in overflow_page()
783 for (i = 0; (i < splitnum) && (bit > hashp->SPARES[i]); i++); in overflow_page()
784 offset = (i ? bit - hashp->SPARES[i - 1] : bit); in overflow_page()
817 (ndx ? hashp->SPARES[ndx - 1] : 0) + (addr & SPLITMASK) - 1; in __free_ovflpage()