Home
last modified time | relevance | path

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

/titanic_44/usr/src/cmd/picl/plugins/sun4u/snowbird/frutree/
H A Dpiclfrutree.c164 static frutree_hash_t node_hash_table = {0, NULL}; variable
1225 node_hash_table.tbl = (frutree_hashelm_t **)malloc( in hash_init()
1228 if (node_hash_table.tbl == NULL) { in hash_init()
1233 node_hash_table.hash_size = HASH_TABLE_SIZE; in hash_init()
1234 for (i = 0; i < node_hash_table.hash_size; ++i) { in hash_init()
1235 node_hash_table.tbl[i] = NULL; in hash_init()
1251 if (node_hash_table.tbl == NULL) { in hash_destroy()
1257 for (i = 0; i < node_hash_table.hash_size; ++i) { in hash_destroy()
1258 while (node_hash_table.tbl[i] != NULL) { in hash_destroy()
1259 el = node_hash_table.tbl[i]; in hash_destroy()
[all …]