Lines Matching defs:ih
1765 \param ih handle
1770 uint32_t *ih,
1775 if(*ih < 1)return(4); // invalid handle
1776 if(!wht->table[*ih])return(5); // requested table position was not in use
1777 wht->table[*ih]=0; // remove handle from table
1781 if(*ih < wht->lolimit)wht->lolimit = *ih; // adjust lolimit
1782 *ih=0; // invalidate handle variable, so a second delete will of it is not possible
1790 \param ih handle
1794 uint32_t *ih,
1801 if(!ih)return(4);
1809 *ih = wht->lolimit; // handle that is inserted in first available slot
1810 wht->table[*ih] = *ih; // handle goes into preexisting (but zero) slot in table, handle number is the same as the slot number
1811 if(*ih > wht->hilimit){
1812 wht->hilimit = *ih;
1815 if(*ih > wht->peak){
1816 wht->peak = *ih;