Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DASTConcept.cpp37 unsigned MessageSize = SubstitutionDiagnostic.second.size(); local
38 char *Mem = new (C) char[MessageSize];
39 memcpy(Mem, SubstitutionDiagnostic.second.data(), MessageSize);
41 SubstitutionDiagnostic.first, StringRef(Mem, MessageSize));
/freebsd-13.1/lib/libsecureboot/efi/include/Protocol/
H A DHash.h147 IN UINT64 MessageSize,
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaConcept.cpp254 unsigned MessageSize = DiagString.size(); in calculateConstraintSatisfaction() local
255 char *Mem = new (S.Context) char[MessageSize]; in calculateConstraintSatisfaction()
256 memcpy(Mem, DiagString.c_str(), MessageSize); in calculateConstraintSatisfaction()
260 SubstDiag.first, StringRef(Mem, MessageSize)}); in calculateConstraintSatisfaction()