Searched refs:Result (Results 51 - 75 of 928) sorted by relevance

1234567891011>>

/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DInterleavedLoadCombinePass.cpp557 Polynomial Result(*this);
558 Result.A -= C;
559 return Result;
564 Polynomial Result(*this);
565 Result.A += C;
566 return Result;
709 /// \param Result Result of the computation
712 static bool compute(Value *V, VectorInfo &Result, const DataLayout &DL) { argument
715 return computeFromSVI(SVI, Result, D
731 computeFromBCI(BitCastInst *BCI, VectorInfo &Result, const DataLayout &DL) argument
786 computeFromSVI(ShuffleVectorInst *SVI, VectorInfo &Result, const DataLayout &DL) argument
868 computeFromLI(LoadInst *LI, VectorInfo &Result, const DataLayout &DL) argument
903 computePolynomialBinOp(BinaryOperator &BO, Polynomial &Result) argument
943 computePolynomial(Value &V, Polynomial &Result) argument
956 computePolynomialFromPointer(Value &Ptr, Polynomial &Result, Value *&BasePtr, const DataLayout &DL) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DObjCARCAliasAnalysis.h74 typedef ObjCARCAAResult Result; typedef in class:llvm::objcarc::ObjCARCAA
81 std::unique_ptr<ObjCARCAAResult> Result; member in class:llvm::objcarc::ObjCARCAAWrapperPass
88 ObjCARCAAResult &getResult() { return *Result; }
89 const ObjCARCAAResult &getResult() const { return *Result; }
H A DScalarEvolutionAliasAnalysis.h46 typedef SCEVAAResult Result; typedef in class:llvm::SCEVAA
53 std::unique_ptr<SCEVAAResult> Result; member in class:llvm::SCEVAAWrapperPass
60 SCEVAAResult &getResult() { return *Result; }
61 const SCEVAAResult &getResult() const { return *Result; }
H A DScopedNoAliasAA.h59 using Result = ScopedNoAliasAAResult;
66 std::unique_ptr<ScopedNoAliasAAResult> Result; member in class:llvm::ScopedNoAliasAAWrapperPass
73 ScopedNoAliasAAResult &getResult() { return *Result; }
74 const ScopedNoAliasAAResult &getResult() const { return *Result; }
H A DTypeBasedAliasAnalysis.h65 using Result = TypeBasedAAResult;
72 std::unique_ptr<TypeBasedAAResult> Result; member in class:llvm::TypeBasedAAWrapperPass
79 TypeBasedAAResult &getResult() { return *Result; }
80 const TypeBasedAAResult &getResult() const { return *Result; }
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/Transformer/
H A DRewriteRule.cpp32 translateEdits(const MatchResult &Result, ArrayRef<ASTEdit> ASTEdits) { argument
35 Expected<CharSourceRange> Range = E.TargetRange(Result);
39 tooling::getRangeForEdit(*Range, *Result.Context);
44 auto Replacement = E.Replacement->eval(Result);
57 return [Edits = std::move(Edits)](const MatchResult &Result) {
58 return translateEdits(Result, Edits);
63 return [Edit = std::move(Edit)](const MatchResult &Result) {
64 return translateEdits(Result, {Edit});
83 std::string *Result) const override {
84 Result
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Tooling/Transformer/
H A DMatchConsumer.h49 return [=](const ast_matchers::MatchFinder::MatchResult &Result) {
50 auto &Map = Result.Nodes.getMap();
51 return (Map.find(ID) != Map.end() ? TrueC : FalseC)(Result);
69 /// Result. \c Result is undefined in the case of an error. `Result` is an
73 T *Result) const = 0;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp68 LineNumberInfo Result; local
70 Result.Offset = Address - StartAddress;
71 Result.LineNumber = Line.Line;
73 return Result;
81 iJIT_Method_Load Result; local
82 memset(&Result, 0, sizeof(iJIT_Method_Load));
84 Result.method_id = Wrapper.iJIT_GetNewMethodID();
85 Result.method_name = const_cast<char*>(FnName);
86 Result.method_load_address = reinterpret_cast<void*>(FnStart);
87 Result
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Object/
H A DTapiUniversal.cpp25 Expected<std::unique_ptr<InterfaceFile>> Result = TextAPIReader::get(Source); local
27 if (!Result) {
28 Err = Result.takeError();
31 ParsedFile = std::move(Result.get());
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-modextract/
H A Dllvm-modextract.cpp61 SmallVector<char, 0> Result; local
62 BitcodeWriter Writer(Result);
63 Result.append(Ms[ModuleIndex].getBuffer().begin(),
66 Out->os() << Result;
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DWasmDump.h28 llvm::SmallVectorImpl<char> &Result);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyTargetTransformInfo.cpp29 unsigned Result = BaseT::getNumberOfRegisters(ClassID); local
34 Result = std::max(Result, 16u);
36 return Result;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DObjCARCAliasAnalysis.cpp49 AliasResult Result = local
52 if (Result != MayAlias)
53 return Result;
60 Result = AAResultBase::alias(MemoryLocation(UA), MemoryLocation(UB), AAQI);
63 if (Result == NoAlias)
153 Result.reset(new ObjCARCAAResult(M.getDataLayout()));
158 Result.reset();
/freebsd-13-stable/contrib/googletest/googlemock/include/gmock/
H A Dgmock-actions.h331 typedef typename internal::Function<F>::Result Result; typedef in class:testing::ActionInterface
341 virtual Result Perform(const ArgumentTuple& args) = 0;
359 typedef typename internal::Function<F>::Result Result; typedef in class:testing::Action
401 Result Perform(ArgumentTuple args) const {
441 // template <typename Result, typename ArgumentTuple>
442 // Result Perform(const ArgumentTuple& args) const {
467 typedef typename internal::Function<F>::Result Result; typedef in class:testing::PolymorphicAction::MonomorphicImpl
513 typedef typename internal::Function<F1>::Result Result; typedef in class:testing::internal::ActionAdaptor
583 typedef typename Function<F>::Result Result; typedef
595 typedef typename Function<F>::Result Result; typedef in class:testing::internal::ReturnAction::Impl
627 typedef typename Function<F>::Result Result; typedef in class:testing::internal::ReturnAction::Impl
693 typedef typename Function<F>::Result Result; typedef
707 typedef typename Function<F>::Result Result; typedef in class:testing::internal::ReturnRefAction::Impl
741 typedef typename Function<F>::Result Result; typedef
756 typedef typename Function<F>::Result Result; typedef in class:testing::internal::ReturnRefOfCopyAction::Impl
956 typedef typename internal::Function<F>::Result Result; typedef
968 typedef typename internal::Function<F>::Result Result; typedef in class:testing::internal::IgnoreResultAction::Impl
1041 typedef typename Function<F>::Result Result; typedef in class:testing::internal::DoBothAction::Impl
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DSymbolSerializer.h55 CVSymbol Result(&Prefix, sizeof(Prefix));
57 consumeError(Serializer.visitSymbolBegin(Result));
58 consumeError(Serializer.visitKnownRecord(Result, Sym));
59 consumeError(Serializer.visitSymbolEnd(Result));
60 return Result;
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DWindowsResourceDumper.cpp24 std::string Result; local
25 Result.reserve(UTF16Str.size());
32 Result += ChValue;
34 Result += '?';
36 return Result;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/MC/MCParser/
H A DMCTargetAsmParser.h199 NearMissInfo Result; local
200 Result.Kind = NearMissFeature;
201 Result.Features = MissingFeatures;
202 return Result;
209 NearMissInfo Result; local
210 Result.Kind = NearMissPredicate;
211 Result.PredicateError = FailureCode;
212 return Result;
223 NearMissInfo Result; local
224 Result
237 NearMissInfo Result; local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DMD5.h91 void final(MD5Result &Result);
95 static void stringifyResult(MD5Result &Result, SmallString<32> &Str);
114 MD5::MD5Result Result; local
115 Hash.final(Result);
117 return Result.low();
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DGlobalDecl.h158 GlobalDecl Result(*this);
159 Result.Value.setPointer(D);
160 return Result;
165 GlobalDecl Result(*this);
166 Result.Value.setInt(Type);
167 return Result;
172 GlobalDecl Result(*this);
173 Result.Value.setInt(Type);
174 return Result;
183 GlobalDecl Result(*thi
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldCOFFI386.h152 uint64_t Result = variable
157 assert(Result <= UINT32_MAX && "relocation overflow");
161 << " Value: " << format("0x%08" PRIx32, Result)
163 writeBytesUnaligned(Result, Target, 4);
169 uint64_t Result = variable
172 assert(Result <= UINT32_MAX && "relocation overflow");
176 << " Value: " << format("0x%08" PRIx32, Result)
178 writeBytesUnaligned(Result, Target, 4);
183 uint64_t Result = RE.Sections.SectionA == static_cast<uint32_t>(-1) variable
186 Result
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Lex/
H A DPPExpressions.cpp102 static bool EvaluateDefined(PPValue &Result, Token &PeekTok, DefinedTracker &DT, argument
105 Result.setBegin(beginLoc);
132 Result.Val = !!Macro;
133 Result.Val.setIsUnsigned(false); // Result is signed intmax_t.
137 if (Result.Val != 0 && ValueLive)
146 Result.setEnd(PeekTok.getLocation());
157 Result.setEnd(PeekTok.getLocation());
160 Result.setEnd(PeekTok.getLocation());
222 /// return the computed value in Result
229 EvaluateValue(PPValue &Result, Token &PeekTok, DefinedTracker &DT, bool ValueLive, Preprocessor &PP) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DIntrinsics.h179 IITDescriptor Result = { K, { Field } }; local
180 return Result;
186 IITDescriptor Result = {K, {Field}}; local
187 return Result;
191 IITDescriptor Result; local
192 Result.Kind = Vector;
193 Result.Vector_Width.Min = Width;
194 Result.Vector_Width.Scalable = IsScalable;
195 return Result;
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/
H A DFileMatchTrie.cpp118 StringRef Result = MatchingChild->getValue().findEquivalent( local
121 if (!Result.empty() || IsAmbiguous)
122 return Result;
126 StringRef Result; local
129 if (Result.empty()) {
130 Result = Child;
137 return Result;
191 StringRef Result = Root->findEquivalent(*Comparator, FileName, IsAmbiguous); local
194 return Result;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/
H A DRISCVELFStreamer.cpp148 size_t Result = 0; local
154 Result += getULEB128Size(item.Tag);
155 Result += getULEB128Size(item.IntValue);
158 Result += getULEB128Size(item.Tag);
159 Result += item.StringValue.size() + 1; // string + '\0'
162 Result += getULEB128Size(item.Tag);
163 Result += getULEB128Size(item.IntValue);
164 Result += item.StringValue.size() + 1; // string + '\0';
168 return Result;
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/Rename/
H A DUSRFinder.cpp54 Result = ND;
58 const NamedDecl *getNamedDecl() const { return Result; }
70 const NamedDecl *Result = nullptr; member in class:clang::tooling::__anon2406::NamedDeclOccurrenceFindingVisitor
115 Result = ND;
119 const NamedDecl *getNamedDecl() const { return Result; }
122 const NamedDecl *Result = nullptr; member in class:clang::tooling::__anon2407::NamedDeclFindingVisitor

Completed in 279 milliseconds

1234567891011>>