Lines Matching refs:index
46 int index;
58 * in this index for a duplicate
60 index = calc_hash(key);
61 node->next = hash[ index ];
62 hash[ index ] = node;
80 int index;
83 index = calc_hash(key);
84 node = hash[ index ];
96 int index;
100 index = calc_hash(key);
101 if (!hash[ index ]) {
105 if (strcmp(hash[ index ]->key, key) == 0) {
106 node = hash[ index ];
108 hash[ index ] = hash[ index ]->next;
113 prev = hash[ index ];