Searched refs:Result (Results 351 - 375 of 928) sorted by relevance

<<11121314151617181920>>

/freebsd-13-stable/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp85 BoundNodesTreeBuilder Result(*Builder);
87 *Builder = std::move(Result);
134 bool Result = InnerMatcher->dynMatches(DynNode, Finder, Builder); variable
135 if (Result) Builder->setBinding(ID, DynNode);
136 return Result;
323 auto Result = *this;
324 Result.Implementation =
325 new IdDynMatcher(ID, std::move(Result.Implementation));
326 return std::move(Result);
378 BoundNodesTreeBuilder Result; local
395 BoundNodesTreeBuilder Result = *Builder; local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugLine.cpp1228 uint32_t Result = lookupAddressImpl(Address); local
1230 if (Result != UnknownRowIndex ||
1232 return Result;
1254 std::vector<uint32_t> &Result) const {
1257 if (lookupAddressRangeImpl(Address, Size, Result))
1265 return lookupAddressRangeImpl(Address, Size, Result);
1270 std::vector<uint32_t> &Result) const {
1307 Result.push_back(I);
1336 std::string &Result, sys::path::Style Style) const {
1346 Result
1334 getFileNameByIndex( uint64_t FileIndex, StringRef CompDir, FileLineInfoKind Kind, std::string &Result, sys::path::Style Style) const argument
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjC.cpp36 RValue Result);
268 RValue Result) {
270 return Result;
274 if (ExpLLVMTy == Result.getScalarVal()->getType())
275 return Result;
278 return RValue::get(CGF.Builder.CreateBitCast(Result.getScalarVal(),
2936 template <typename Impl, typename Result> class ARCExprEmitter {
2944 Result visit(const Expr *e);
2945 Result visitCastExpr(const CastExpr *e);
2946 Result visitPseudoObjectExp
267 AdjustObjCObjectType(CodeGenFunction &CGF, QualType ExpT, RValue Result) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Bitstream/
H A DBitstreamReader.h242 uint32_t Result = 0;
245 Result |= (Piece & ((1U << (NumBits-1))-1)) << NextBit;
248 return Result;
269 uint64_t Result = 0;
272 Result |= uint64_t(Piece & ((1U << (NumBits-1))-1)) << NextBit;
275 return Result;
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DMultiplexExternalSemaSource.cpp46 if (Decl *Result = Sources[i]->GetExternalDecl(ID))
47 return Result;
75 if (Stmt *Result = Sources[i]->GetExternalDeclStmt(Offset))
76 return Result;
120 SmallVectorImpl<Decl *> &Result) {
122 Sources[i]->FindExternalLexicalDecls(DC, IsKindWeWant, Result);
118 FindExternalLexicalDecls( const DeclContext *DC, llvm::function_ref<bool(Decl::Kind)> IsKindWeWant, SmallVectorImpl<Decl *> &Result) argument
H A DSemaExprCXX.cpp572 ExprResult Result = TransformToPotentiallyEvaluated(E); local
573 if (Result.isInvalid()) return ExprError();
574 E = Result.get();
582 ExprResult Result = CheckUnevaluatedOperand(E); local
583 if (Result.isInvalid())
585 E = Result.get();
1384 auto Result = BuildCXXTypeConstructExpr(TInfo, LParenOrBraceLoc, exprs, local
1389 if (!Result.isInvalid() && Result.get()->isInstantiationDependent() &&
1390 !Result
1479 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Exprs); local
1517 bool Result = Method->isUsualDeallocationFunction(PreventedBy); local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DMachOPlatform.cpp264 std::vector<JITDylib *> Result, WorkStack({&JD}); local
273 Result.push_back(NextJD);
280 return Result;
408 LocalDependenciesMap Result; local
409 Result[MR.getInitializerSymbol()] = std::move(I->second);
411 return Result;
H A DCore.cpp487 auto OnComplete = [QueryInfo](Expected<SymbolMap> Result) {
489 if (Result) {
493 Result->count(KV.second.Aliasee)) &&
494 "Result map missing entry?");
500 (*Result)[KV.second.Aliasee].getAddress(), KV.second.AliasFlags);
513 ES.reportError(Result.takeError());
555 SymbolAliasMap Result; local
558 Result[Name] = SymbolAliasMapEntry(Name, (*Flags)[Name]);
561 return Result;
1264 SymbolFlagsMap Result;
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMPContext.cpp160 bool WasFound) -> Optional<bool> /* Result */ {
201 Optional<bool> Result = HandleTrait(Property, IsActiveTrait); local
202 if (Result.hasValue())
203 return Result.getValue();
222 Optional<bool> Result = HandleTrait(Property, FoundInOrder); local
223 if (Result.hasValue())
224 return Result.getValue();
/freebsd-13-stable/contrib/llvm-project/llvm/tools/bugpoint/
H A DCrashDebugger.cpp1078 Expected<bool> Result = local
1080 if (Error E = Result.takeError())
1100 Expected<bool> Result = local
1102 if (Error E = Result.takeError())
1178 Expected<bool> Result = local
1180 if (Error E = Result.takeError())
1209 Expected<bool> Result = local
1211 if (Error E = Result.takeError())
1239 Expected<bool> Result = local
1241 if (Error E = Result
1260 Expected<bool> Result = local
1282 Expected<bool> Result = ReduceCrashingBlocks(BD, TestFn).reduceList(Blocks); local
1295 Expected<bool> Result = ReduceSimplifyCFG(BD, TestFn).reduceList(Blocks); local
1332 Expected<bool> Result = local
1345 Expected<bool> Result = local
1383 Expected<bool> Result = ReducePassList(*this).reduceList(PassesToRun); local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/MSP430/Disassembler/
H A DMSP430Disassembler.cpp273 DecodeStatus Result = decodeInstruction(getDecoderTable(SrcAM, Words), MI,
275 if (Result != MCDisassembler::Fail) {
277 return Result;
313 DecodeStatus Result = decodeInstruction(DecoderTable, MI, Insn, Address,
315 if (Result != MCDisassembler::Fail) {
317 return Result;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DStratifiedSets.h548 auto Result = Values.find(Val); local
549 if (Result == Values.end())
551 return &Result->second;
555 auto Result = Values.find(Val); local
556 if (Result == Values.end())
558 return &Result->second;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/TableGen/
H A DSetTheory.cpp230 if (const RecVec *Result = ST.expand(Rec))
231 Elts.insert(Result->begin(), Result->end());
285 if (const RecVec *Result = expand(Def->getDef()))
286 return Elts.insert(Result->begin(), Result->end());
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DR600Packetizer.cpp70 DenseMap<unsigned, unsigned> Result; local
73 return Result;
95 Result[Dst] = R600::PS;
100 Result[Dst] = R600::PV_X;
123 Result[Dst] = PVReg;
125 return Result;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroInstr.h163 Info Result; local
166 return Result;
170 if ((Result.OutlinedParts = dyn_cast<ConstantStruct>(Initializer)))
171 return Result;
173 Result.Resumers = cast<ConstantArray>(Initializer);
174 return Result;
/freebsd-13-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DGnu.cpp1011 DetectedMultilibs &Result) {
1090 if (Candidate->select(Flags, Result.SelectedMultilib)) {
1092 Result.BiarchSibling = Multilib();
1093 Result.Multilibs = *Candidate;
1103 DetectedMultilibs &Result) {
1132 if (MS->select(Flags, Result.SelectedMultilib)) {
1133 Result.Multilibs = *MS;
1141 DetectedMultilibs &Result) {
1164 if (MuslMipsMultilibs.select(Flags, Result.SelectedMultilib)) {
1165 Result
1009 findMipsCsMultilibs(const Multilib::flags_list &Flags, FilterNonExistent &NonExistent, DetectedMultilibs &Result) argument
1100 findMipsAndroidMultilibs(llvm::vfs::FileSystem &VFS, StringRef Path, const Multilib::flags_list &Flags, FilterNonExistent &NonExistent, DetectedMultilibs &Result) argument
1139 findMipsMuslMultilibs(const Multilib::flags_list &Flags, FilterNonExistent &NonExistent, DetectedMultilibs &Result) argument
1171 findMipsMtiMultilibs(const Multilib::flags_list &Flags, FilterNonExistent &NonExistent, DetectedMultilibs &Result) argument
1343 findMipsImgMultilibs(const Multilib::flags_list &Flags, FilterNonExistent &NonExistent, DetectedMultilibs &Result) argument
1436 findMIPSMultilibs(const Driver &D, const llvm::Triple &TargetTriple, StringRef Path, const ArgList &Args, DetectedMultilibs &Result) argument
1509 findAndroidArmMultilibs(const Driver &D, const llvm::Triple &TargetTriple, StringRef Path, const ArgList &Args, DetectedMultilibs &Result) argument
1551 findMSP430Multilibs(const Driver &D, const llvm::Triple &TargetTriple, StringRef Path, const ArgList &Args, DetectedMultilibs &Result) argument
1571 findRISCVBareMetalMultilibs(const Driver &D, const llvm::Triple &TargetTriple, StringRef Path, const ArgList &Args, DetectedMultilibs &Result) argument
1625 findRISCVMultilibs(const Driver &D, const llvm::Triple &TargetTriple, StringRef Path, const ArgList &Args, DetectedMultilibs &Result) argument
1662 findBiarchMultilibs(const Driver &D, const llvm::Triple &TargetTriple, StringRef Path, const ArgList &Args, bool NeedsBiarchSuffix, DetectedMultilibs &Result) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-dwarfdump/
H A Dllvm-dwarfdump.cpp488 bool Result = DICtx.verify(stream, getDumpOpts(DICtx)); local
489 if (Result)
493 return Result;
501 bool Result = true; local
509 Result &= handleBuffer(Name, BuffOrErr.get(), HandleObj, OS);
513 return Result;
521 bool Result = true; local
523 Result = false;
531 Result = false;
544 Result
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RPC/
H A DRPCUtils.h652 UnwrappedArgType Result;
655 UnwrappedArgType>::deserialize(C, Result))
659 return Handler(std::move(Result));
715 HandlerArgType Result((typename HandlerArgType::value_type()));
719 HandlerArgType>::deserialize(C, Result))
723 return Handler(std::move(Result));
748 Error Result = Error::success(); variable
750 C, Result)) {
751 consumeError(std::move(Result));
755 consumeError(std::move(Result));
1432 auto Result = appendCallNB<Func>(Args...); local
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DHashedNameToDIE.h160 Result AppendHashDataForRegularExpression(
166 Result GetHashDataForName(llvm::StringRef name,
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DLazyValueInfo.h125 typedef LazyValueInfo Result; typedef in class:llvm::LazyValueAnalysis
126 Result run(Function &F, FunctionAnalysisManager &FAM);
H A DProfileSummaryInfo.h207 typedef ProfileSummaryInfo Result; typedef in class:llvm::ProfileSummaryAnalysis
209 Result run(Module &M, ModuleAnalysisManager &);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Tooling/Transformer/
H A DRewriteRule.h296 /// expansion point. `Result` must come from the matching of a rewrite rule.
298 getRuleMatchLoc(const ast_matchers::MatchFinder::MatchResult &Result);
303 findSelectedCase(const ast_matchers::MatchFinder::MatchResult &Result,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLowerMatrixIntrinsics.cpp796 MatrixTy Result; local
805 Result.addVector(Vector);
807 return Result.addNumLoads(getNumOps(Result.getVectorTy()) *
808 Result.getNumVectors());
1006 /// Compute \p Result += \p A * \p B for input matrices with left-associating
1008 void emitMatrixMultiply(MatrixTy &Result, const MatrixTy &A, argument
1013 Result.getElementType()->getPrimitiveSizeInBits().getFixedSize(),
1015 unsigned R = Result.getNumRows();
1016 unsigned C = Result
1319 MatrixTy Result; local
1390 MatrixTy Result; local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DBytesOutputStyle.cpp43 StreamSpec Result; local
44 if (Str.consumeInteger(0, Result.SI))
48 if (Str.consumeInteger(0, Result.Begin))
53 if (Str.consumeInteger(0, Result.Size))
61 return Result;
65 SmallVector<StreamSpec, 2> Result; local
74 Result.push_back(*ESS);
76 return Result;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DLLVMContext.h104 void getMDKindNames(SmallVectorImpl<StringRef> &Result) const;
110 void getOperandBundleTags(SmallVectorImpl<StringRef> &Result) const;

Completed in 431 milliseconds

<<11121314151617181920>>