Searched refs:MessageSize (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DASTConcept.cpp37 unsigned MessageSize = SubstitutionDiagnostic.second.size(); variable
38 char *Mem = new (C) char[MessageSize];
39 memcpy(Mem, SubstitutionDiagnostic.second.data(), MessageSize);
41 SubstitutionDiagnostic.first, StringRef(Mem, MessageSize));
/freebsd-13-stable/lib/libsecureboot/efi/include/Protocol/
H A DHash.h127 @param[in] MessageSize The size of Message, in bytes.
135 @retval EFI_INVALID_PARAMETER Message or Hash, HashAlgorithm is NULL or MessageSize is 0.
136 MessageSize is not an integer multiple of block size.
147 IN UINT64 MessageSize,
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaConcept.cpp238 unsigned MessageSize = DiagString.size(); local
239 char *Mem = new (S.Context) char[MessageSize];
240 memcpy(Mem, DiagString.c_str(), MessageSize);
244 SubstDiag.first, StringRef(Mem, MessageSize)});

Completed in 96 milliseconds