Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/
H A DThreadSafety.cpp533 return NewCtx; in addDefinition()
541 return NewCtx; in addReference()
550 NewCtx = ContextFactory.add(NewCtx, D, newID); in updateDefinition()
552 return NewCtx; in updateDefinition()
560 Context NewCtx = Ctx; in clearDefinition() local
562 NewCtx = ContextFactory.remove(NewCtx, D); in clearDefinition()
563 NewCtx = ContextFactory.add(NewCtx, D, 0); in clearDefinition()
565 return NewCtx; in clearDefinition()
570 Context NewCtx = Ctx; in removeDefinition() local
572 NewCtx = ContextFactory.remove(NewCtx, D); in removeDefinition()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DThreadSafeModule.h53 ThreadSafeContext(std::unique_ptr<LLVMContext> NewCtx) in ThreadSafeContext() argument
54 : S(std::make_shared<State>(std::move(NewCtx))) { in ThreadSafeContext()