Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/ADT/
H A DStringMapEntry.h48 size_t KeyLength = Key.size(); in allocateWithKey() local
52 size_t AllocSize = EntrySize + KeyLength + 1; in allocateWithKey()
58 if (KeyLength > 0) in allocateWithKey()
59 ::memcpy(Buffer, Key.data(), KeyLength); in allocateWithKey()
60 Buffer[KeyLength] = 0; // Null terminate for convenience of clients. in allocateWithKey()