Home
last modified time | relevance | path

Searched refs:keyEnd (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/bmake/
H A Dhash.c178 const char *keyEnd; in HashTable_FindEntry() local
179 unsigned int h = Hash_String(key, &keyEnd); in HashTable_FindEntry()
180 return HashTable_Find(t, Substring_Init(key, keyEnd), h); in HashTable_FindEntry()
259 const char *keyEnd; in HashTable_CreateEntry() local
260 unsigned int h = Hash_String(key, &keyEnd); in HashTable_CreateEntry()
261 HashEntry *he = HashTable_Find(t, Substring_Init(key, keyEnd), h); in HashTable_CreateEntry()
272 he = bmake_malloc(sizeof *he + (size_t)(keyEnd - key)); in HashTable_CreateEntry()
275 memcpy(he->key, key, (size_t)(keyEnd - key) + 1); in HashTable_CreateEntry()
/freebsd/contrib/llvm-project/llvm/lib/WindowsDriver/
H A DMSVCPaths.cpp189 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()