Home
last modified time | relevance | path

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

/netbsd-src/usr.bin/make/
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()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
H A DMSVC.cpp914 const char *keyEnd = placeHolder - 1; in getSystemRegistryString()
917 while ((keyEnd > keyPath) && (*keyEnd != '\\')) in getSystemRegistryString()
918 keyEnd--; in getSystemRegistryString()
922 size_t partialKeyLength = keyEnd - keyPath; in getSystemRegistryString()