Lines Matching refs:hp
528 SM_HEAP_ITEM_T *hi, **hp;
541 for (hp = &SmHeapTable[ptrhash(ptr)]; *hp != NULL; hp = &(**hp).hi_next)
543 if ((**hp).hi_ptr == ptr)
547 hi = *hp;
562 *hp = hi->hi_next;
565 hp = &SmHeapTable[ptrhash(newptr)];
566 hi->hi_next = *hp;
567 *hp = hi;
596 SM_HEAP_ITEM_T *hi, **hp;
611 for (hp = &SmHeapTable[ptrhash(ptr)]; *hp != NULL; hp = &(**hp).hi_next)
613 if ((**hp).hi_ptr == ptr)
616 hi = *hp;
631 *hp = hi->hi_next;
634 hp = &SmHeapTable[ptrhash(newptr)];
635 hi->hi_next = *hp;
636 *hp = hi;
663 SM_HEAP_ITEM_T **hp;
674 for (hp = &SmHeapTable[ptrhash(ptr)]; *hp != NULL; hp = &(**hp).hi_next)
676 if ((**hp).hi_ptr == ptr)
678 SM_HEAP_ITEM_T *hi = *hp;
680 *hp = hi->hi_next;
725 SM_HEAP_ITEM_T *hp;
731 for (hp = SmHeapTable[ptrhash(ptr)]; hp != NULL; hp = hp->hi_next)
733 if (hp->hi_ptr == ptr)