Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h987 auto *AllocatedBuffer = Allocator.Allocate<char>(Source.size()); in allocateContent() local
988 llvm::copy(Source, AllocatedBuffer); in allocateContent()
989 return MutableArrayRef<char>(AllocatedBuffer, Source.size()); in allocateContent()
1002 auto *AllocatedBuffer = Allocator.Allocate<char>(SourceStr.size()); in allocateString() local
1003 llvm::copy(SourceStr, AllocatedBuffer); in allocateString()
1004 return MutableArrayRef<char>(AllocatedBuffer, SourceStr.size()); in allocateString()