Lines Matching defs:ih
1400 \param ih handle
1405 uint32_t *ih,
1411 if(*ih < 1)return(4); // invalid handle
1412 if(!eht->table[*ih])return(5); // requested table position was not in use
1413 eht->table[*ih]=0; // remove handle from table
1418 eht->stack[eht->sptr]=*ih; // place handle on stack
1419 *ih=0; // invalidate handle variable, so a second delete will of it is not possible
1427 \param ih handle
1431 uint32_t *ih,
1440 if(!ih)return(4);
1452 *ih = eht->stack[eht->sptr]; // handle that is inserted
1453 if(eht->table[*ih])return(7);
1454 eht->table[*ih] = *ih; // handle goes into preexisting (but zero) slot in table
1456 if(*ih > eht->top){ eht->top = *ih; }