Lines Matching defs:nodes
42 struct hash_node *nodes;
79 table->nodes = i_new(struct hash_node, table->size);
127 if (table->nodes[i].next != NULL)
128 destroy_node_list(table, table->nodes[i].next);
146 i_free(table->nodes);
163 memset(table->nodes, 0, sizeof(struct hash_node) * table->size);
175 node = &table->nodes[hash % table->size];
239 node = &table->nodes[hash % table->size];
312 /* remove deleted nodes from the list */
337 hash_table_compress(table, &table->nodes[i]);
359 hash_table_compress(table, &table->nodes[hash % table->size]);
376 ctx->next = &table->nodes[0];
391 node = &ctx->table->nodes[ctx->pos];
466 old_nodes = table->nodes;
469 table->nodes = i_new(struct hash_node, table->size);