Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DStringMapEntry.h45 size_t KeyLength = Key.size(); in allocateWithKey() local
49 size_t AllocSize = EntrySize + KeyLength + 1; in allocateWithKey()
55 if (KeyLength > 0) in allocateWithKey()
56 ::memcpy(Buffer, Key.data(), KeyLength); in allocateWithKey()
57 Buffer[KeyLength] = 0; // Null terminate for convenience of clients. in allocateWithKey()
/netbsd-src/external/bsd/elftosb/dist/common/
H A Drijndael.h91 enum KeyLength { Key16Bytes , Key24Bytes , Key32Bytes }; enum
127 int init(Mode mode,Direction dir,const uint8_t *key,KeyLength keyLen,uint8_t * initVector = 0);
H A Drijndael.cpp974 int Rijndael::init(Mode mode,Direction dir,const uint8_t * key,KeyLength keyLen,uint8_t * initVecto… in init()