Searched refs:keyEnd (Results 1 – 2 of 2) sorted by relevance
| /freebsd-14.2/contrib/bmake/ |
| H A D | hash.c | 184 const char *keyEnd; in HashTable_FindEntry() local 185 unsigned int h = Hash_String(key, &keyEnd); in HashTable_FindEntry() 186 return HashTable_Find(t, Substring_Init(key, keyEnd), h); in HashTable_FindEntry() 252 const char *keyEnd; in HashTable_CreateEntry() local 253 unsigned int h = Hash_String(key, &keyEnd); in HashTable_CreateEntry() 254 HashEntry *he = HashTable_Find(t, Substring_Init(key, keyEnd), h); in HashTable_CreateEntry() 265 he = bmake_malloc(sizeof *he + (size_t)(keyEnd - key)); in HashTable_CreateEntry() 268 memcpy(he->key, key, (size_t)(keyEnd - key) + 1); in HashTable_CreateEntry()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/WindowsDriver/ |
| H A D | MSVCPaths.cpp | 189 const char *keyEnd = placeHolder - 1; in getSystemRegistryString() 192 while ((keyEnd > keyPath) && (*keyEnd != '\\')) in getSystemRegistryString() 193 keyEnd--; in getSystemRegistryString() 197 size_t partialKeyLength = keyEnd - keyPath; in getSystemRegistryString()
|