Home
last modified time | relevance | path

Searched refs:SmHeapTable (Results 1 – 1 of 1) sorted by relevance

/illumos-gate/usr/src/cmd/sendmail/libsm/
H A Dheap.c257 static SM_HEAP_ITEM_T *SmHeapTable[SM_HEAP_TABLE_SIZE]; variable
490 for (hi = SmHeapTable[i]; hi != NULL; hi = hi->hi_next)
507 hi->hi_next = SmHeapTable[i];
508 SmHeapTable[i] = hi;
541 for (hp = &SmHeapTable[ptrhash(ptr)]; *hp != NULL; hp = &(**hp).hi_next)
565 hp = &SmHeapTable[ptrhash(newptr)];
611 for (hp = &SmHeapTable[ptrhash(ptr)]; *hp != NULL; hp = &(**hp).hi_next)
634 hp = &SmHeapTable[ptrhash(newptr)];
731 for (hp = SmHeapTable[ptrhash(ptr)]; hp != NULL; hp = hp->hi_next)
761 for (i = 0; i < sizeof(SmHeapTable) / sizeof(SmHeapTable[0]); ++i)
[all …]