Home | History | Annotate | Download | only in tests

Lines Matching defs:keys

158     // should see all 3 unique keys when iterating over hash
160 int keys[3] = {0, 0, 0};
163 keys[count] = key;
168 ASSERT(keys[0] != keys[1]);
169 ASSERT(keys[0] != keys[2]);
170 ASSERT(keys[1] != keys[2]);
172 // should see 2 unique keys when iterating over hash that aren't 1
175 memset(keys, 0, sizeof(keys));
178 keys[count] = key;
184 ASSERT(keys[0] != keys[1]);