Lines Matching refs:Key
38 uint32_t Key; // Offset (into strings) of key.
133 /// this return a bucket with an empty key (0).
136 Result.Key = HMAP_EmptyBucketKey;
150 Result.Key = getEndianAdjustedWord(BucketPtr->Key);
187 if (B.Key == HMAP_EmptyBucketKey) continue;
189 const char *Key = getString(B.Key);
192 fprintf(stderr, " %d. %s -> '%s' '%s'\n", i, Key, Prefix, Suffix);
222 if (B.Key == HMAP_EmptyBucketKey) return StringRef(); // Hash miss.
224 // See if the key matches. If not, probe on.
225 if (!Filename.equals_lower(getString(B.Key)))