Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DStringMapEntry.h47 size_t KeyLength = Key.size(); in allocateWithKey() local
51 size_t AllocSize = EntrySize + KeyLength + 1; in allocateWithKey()
57 if (KeyLength > 0) in allocateWithKey()
58 ::memcpy(Buffer, Key.data(), KeyLength); in allocateWithKey()
59 Buffer[KeyLength] = 0; // Null terminate for convenience of clients. in allocateWithKey()