Lines Matching full:keys
20 * One array for the integer keys, and the other one
31 int* keys;
47 map->keys = map->keys0;
57 if (map->keys != map->keys0)
58 AFREE(map->keys);
85 int* keys = map->keys;
89 if (keys[index] == key)
101 void* keys = map->keys;
104 if (keys == map->keys0)
105 keys = NULL;
115 AARRAY_RENEW(keys, newCapacity);
118 map->keys = keys;
128 int* keys;
132 keys = map->keys;
136 if (keys[index] == key)
145 map->keys[limit] = key;
161 int* keys;
164 keys = map->keys;
168 if (keys[index] == key);
179 map->keys[index] = map->keys[limit];
215 iter->key = map->keys[index];