Searched refs:SourceStr (Results 1 – 2 of 2) sorted by relevance
1091 auto SourceStr = Source.toStringRef(TmpBuffer); in allocateContent() local1092 auto *AllocatedBuffer = Allocator.Allocate<char>(SourceStr.size()); in allocateContent()1093 llvm::copy(SourceStr, AllocatedBuffer); in allocateContent()1094 return MutableArrayRef<char>(AllocatedBuffer, SourceStr.size()); in allocateContent()1130 auto SourceStr = Source.toStringRef(TmpBuffer); in allocateCString() local1131 auto *AllocatedBuffer = Allocator.Allocate<char>(SourceStr.size() + 1); in allocateCString()1132 llvm::copy(SourceStr, AllocatedBuffer); in allocateCString()1133 AllocatedBuffer[SourceStr.size()] = '\0'; in allocateCString()1134 return MutableArrayRef<char>(AllocatedBuffer, SourceStr.size() + 1); in allocateCString()
1456 SmallString<16> SourceStr; in checkFortifiedBuiltinMemoryFunction() local1458 SourceSize->toString(SourceStr, /*Radix=*/10); in checkFortifiedBuiltinMemoryFunction()1461 << FunctionName << DestinationStr << SourceStr); in checkFortifiedBuiltinMemoryFunction()