Lines Matching defs:buckets
26 HashNode *buckets[0];
87 HashNode *tmp = GetHashNodeByNode(tab, tab->buckets[hashCode], node);
92 node->next = tab->buckets[hashCode];
93 tab->buckets[hashCode] = node;
106 HashNode *node = tab->buckets[hashCode];
111 if (node == tab->buckets[hashCode]) {
112 tab->buckets[hashCode] = node->next;
132 return GetHashNodeByKey(tab, tab->buckets[hashCode], key, tab->keyCompare);
155 HashListFree(tab, tab->buckets[i], context);
168 return GetHashNodeByKey(tab, tab->buckets[hashCode], key, keyCompare);
177 HashNode *node = tab->buckets[i];
191 HashNode *node = tab->buckets[i];