Searched refs:Result (Results 326 - 350 of 928) sorted by relevance

<<11121314151617181920>>

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARC/Disassembler/
H A DARCDisassembler.cpp300 MCDisassembler::DecodeStatus Result;
320 Result =
322 if (Success == Result) {
324 return Result;
340 Result =
342 if (Success == Result) {
345 return Result;
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DInitialization.h330 InitializedEntity Result(EK_Temporary, SourceLocation(), Type);
331 Result.TypeInfo = TypeInfo;
332 return Result;
338 InitializedEntity Result(EK_RelatedResult, SourceLocation(), Type);
339 Result.MethodDecl = MD;
340 return Result;
399 InitializedEntity Result(EK_CompoundLiteralInit, SourceLocation(),
401 Result.TypeInfo = TSI;
402 return Result;
1357 void SetOverloadFailure(FailureKind Failure, OverloadingResult Result);
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DConstantFold.cpp69 SmallVector<Constant*, 16> Result; local
75 Result.push_back(C);
78 return ConstantVector::get(Result);
753 SmallVector<Constant*, 16> Result; local
770 Result.push_back(V);
774 if (Result.size() == V1VTy->getNumElements())
775 return ConstantVector::get(Result);
872 SmallVector<Constant*, 16> Result;
873 Result.reserve(NumElts);
878 Result
918 SmallVector<Constant*, 32> Result; local
968 SmallVector<Constant*, 32> Result; local
1025 SmallVector<Constant *, 16> Result; local
1399 SmallVector<Constant*, 16> Result; local
2045 int Result = -1; // -1 = unknown, 0 = known false, 1 = known true. local
2110 int Result = -1; // -1 = unknown, 0 = known false, 1 = known true. local
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Rewrite/
H A DDeltaTree.cpp411 int Result = 0; local
425 Result += Val.Delta;
431 if (!IN) return Result;
436 Result += IN->getChild(i)->getFullDelta();
443 return Result+IN->getChild(NumValsGreater)->getFullDelta();
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DPartialDiagnostic.h99 Storage *Result = FreeList[--NumFreeListEntries];
100 Result->NumDiagArgs = 0;
101 Result->DiagRanges.clear();
102 Result->FixItHints.clear();
103 return Result;
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DEvalEmitter.cpp23 InterpStack &Stk, APValue &Result)
24 : Ctx(Ctx), P(P), S(Parent, P, Stk, Ctx, this), Result(Result) {
102 return ReturnValue<T>(S.Stk.pop<T>(), Result);
193 return Composite(Ptr.getType(), Ptr, Result);
22 EvalEmitter(Context &Ctx, Program &P, State &Parent, InterpStack &Stk, APValue &Result) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DLineTable.cpp267 LineEntry Result; local
269 [Addr, &Result](const LineEntry &Row) -> bool {
272 Result = Row;
282 if (Result.isValid())
283 return Result;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DCOFF.h934 SmallVectorImpl<char> &Result) const override;
1088 Error getName(StringRef &Result) const;
1089 Error getImportLookupTableRVA(uint32_t &Result) const;
1090 Error getImportAddressTableRVA(uint32_t &Result) const;
1093 getImportTableEntry(const coff_import_directory_table_entry *&Result) const;
1115 Error getName(StringRef &Result) const;
1117 const delay_import_directory_table_entry *&Result) const;
1118 Error getImportAddress(int AddrIndex, uint64_t &Result) const;
1137 Error getDllName(StringRef &Result) const;
1138 Error getOrdinalBase(uint32_t &Result) cons
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Lex/
H A DPreprocessor.h1299 void HandleSkippedDirectiveWhileUsingPCH(Token &Result,
1390 void Lex(Token &Result);
1393 bool LexHeaderName(Token &Result, bool AllowMacroExpansion = true);
1395 bool LexAfterModuleImport(Token &Result);
1407 bool LexStringLiteral(Token &Result, std::string &String, argument
1410 Lex(Result);
1412 LexUnexpandedToken(Result);
1413 return FinishLexStringLiteral(Result, String, DiagnosticTag,
1419 bool FinishLexStringLiteral(Token &Result, std::string &String,
1428 void LexNonComment(Token &Result) { argument
1435 LexUnexpandedToken(Token &Result) argument
1448 LexUnexpandedNonComment(Token &Result) argument
1747 getRawToken(SourceLocation Loc, Token &Result, bool IgnoreWhiteSpace = false) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseExprCXX.cpp675 ExprResult Result = local
677 if (Result.isUnset()) {
681 Result = tryParseCXXIdExpression(SS, isAddressOfOperand, Replacement);
683 assert(!Result.isUnset() && "Typo correction suggested a keyword replacement "
685 return Result;
1562 ExprResult Result = ParseExpression();
1567 if (!Result.isInvalid() && !DeclaratorInfo.isInvalidType())
1568 Result = Actions.ActOnCXXNamedCast(OpLoc, Kind,
1571 T.getOpenLocation(), Result.get(),
1574 return Result;
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DGuardWidening.cpp186 /// InsertPt and return it in \p Result (else no change to the IR is made).
188 Value *&Result, bool InvertCondition);
260 Value *Result; local
262 widenCondCommon(getCondition(ToWiden), NewCondition, ToWiden, Result, local
265 setWidenableBranchCond(cast<BranchInst>(ToWiden), Result); local
268 setCondition(ToWiden, Result);
499 Instruction *InsertPt, Value *&Result,
536 Result = new ICmpInst(InsertPt, Pred, LHS, NewRHS, "wide.chk");
550 Result = nullptr;
553 if (Result)
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprScalar.cpp55 /// Sets \p Result to the value of the operation for BO_Add, BO_Sub, BO_Mul,
61 llvm::APInt &Result) {
68 Result = LHSAP.sadd_ov(RHSAP, Overflow);
70 Result = LHSAP.uadd_ov(RHSAP, Overflow);
73 Result = LHSAP.ssub_ov(RHSAP, Overflow);
75 Result = LHSAP.usub_ov(RHSAP, Overflow);
78 Result = LHSAP.smul_ov(RHSAP, Overflow);
80 Result = LHSAP.umul_ov(RHSAP, Overflow);
83 Result = LHSAP.sdiv_ov(RHSAP, Overflow);
106 llvm::APInt Result;
59 mayHaveIntegerOverflow(llvm::ConstantInt *LHS, llvm::ConstantInt *RHS, BinaryOperator::Opcode Opcode, bool Signed, llvm::APInt &Result) argument
393 Value *Result = ZI->getOperand(0); local
1471 Value *Result = Src; local
1759 Expr::EvalResult Result; local
2085 Expr::EvalResult Result; local
2757 Value *Result; local
2790 llvm::Value* Result = llvm::Constant::getNullValue(ResultType); local
2958 BinOpInfo Result; local
2968 EmitCompoundAssignLValue( const CompoundAssignOperator *E, Value *(ScalarExprEmitter::*Func)(const BinOpInfo &), Value *&Result) argument
3088 CGF.EmitStoreThroughBitfieldLValue(RValue::get(Result), LHSLV, &Result); local
3607 Value *Result; local
3968 Value *Result; local
4421 Value *Result = Visit(live); local
4754 Value *Result = nullptr; local
[all...]
/freebsd-13-stable/sys/contrib/openzfs/tests/test-runner/bin/
H A Dtest-runner.py.in75 class Result(object):
91 Result.total += 1
96 Result.runresults['RERAN'] += 1
99 Result.runresults['KILLED'] += 1
102 Result.runresults['PASS'] += 1
105 Result.runresults['SKIP'] += 1
108 Result.runresults['FAIL'] += 1
170 self.result = Result()
303 Result.total += 1
304 Result
[all...]
/freebsd-13-stable/contrib/googletest/googlemock/include/gmock/
H A Dgmock-generated-actions.h53 template <typename Result, typename ArgumentTuple>
337 template <typename Result, typename ArgumentTuple>
338 Result Perform(const ArgumentTuple& args) const {
339 return InvokeHelper<Result, ArgumentTuple>::InvokeCallback(
351 // SelectArgs<Result, ArgumentTuple, k1, k2, ..., k_n>::type is the
354 // type, and whose return type is Result. For example,
358 // SelectArgs<Result, ArgumentTuple, k1, k2, ..., k_n>::Select(args)
369 template <typename Result, typename ArgumentTuple, int k1, int k2, int k3,
373 typedef Result type(GMOCK_FIELD_(ArgumentTuple, k1),
387 template <typename Result, typenam
548 typedef typename Function<F>::Result Result; typedef in class:testing::internal::WithArgsAction::Impl
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp296 const Attr *Result = It->second; local
298 return Result;
806 QualType Result) {
827 diagnoseAndRemoveTypeQualifiers(S, DS, TypeQuals, Result, (unsigned)-1,
1047 QualType Result = QualType(Decl->getTypeForDecl(), 0); local
1050 Result = Context.applyObjCProtocolQualifiers(Result, Protocols,
1055 if (FailOnError) Result = QualType();
1057 if (FailOnError && Result.isNull())
1061 return Result;
805 checkOmittedBlockReturnType(Sema &S, Declarator &declarator, QualType Result) argument
1074 QualType Result = BaseType; local
1106 QualType Result = Context.getObjCObjectType( local
1174 QualType Result = BuildObjCObjectType( local
1296 QualType Result; local
2329 ExprResult Result = CheckPlaceholderExpr(ArraySize); local
2336 ExprResult Result = DefaultLvalueConversion(ArraySize); local
[all...]
H A DSemaCoroutine.cpp153 LookupResult Result(S, &S.PP.getIdentifierTable().get("coroutine_handle"),
155 if (!S.LookupQualifiedName(Result, StdExp)) {
161 ClassTemplateDecl *CoroHandle = Result.getAsSingle<ClassTemplateDecl>();
163 Result.suppressDiagnostics();
165 NamedDecl *Found = *Result.begin();
354 ExprResult Result = S.BuildMemberReferenceExpr( local
358 if (Result.isInvalid())
362 if (auto *TE = dyn_cast<TypoExpr>(Result.get())) {
370 return S.BuildCallExpr(nullptr, Result.get(), Loc, Args, Loc, nullptr);
423 ExprResult Result local
569 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, CtorArgExprs); local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Demangle/
H A DMicrosoftDemangle.cpp450 TypeNode *T = demangleType(MangledName, QualifierMangleMode::Result);
790 TypeNode *T = demangleType(MangledName, QualifierMangleMode::Result);
1197 unsigned Result = 0; local
1200 ++Result;
1202 return Result;
1246 unsigned Result = 0; local
1250 Result |= C << (8 * I);
1252 return Result;
1284 EncodedStringLiteralNode *Result = Arena.alloc<EncodedStringLiteralNode>(); local
1323 Result
1459 char *Result = OS.getBuffer(); local
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DASTUtils.h87 llvm::SmallVectorImpl<clang::Decl *> &Result) override {
88 m_Source->FindExternalLexicalDecls(DC, IsKindWeWant, Result);
270 if (clang::Decl *Result = Sources[i]->GetExternalDecl(ID))
271 return Result;
299 if (clang::Stmt *Result = Sources[i]->GetExternalDeclStmt(Offset))
300 return Result;
346 llvm::SmallVectorImpl<clang::Decl *> &Result) override {
348 Sources[i]->FindExternalLexicalDecls(DC, IsKindWeWant, Result);
349 if (!Result.empty())
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSmallBitVector.h696 SmallBitVector Result(LHS);
697 Result &= RHS;
698 return Result;
703 SmallBitVector Result(LHS);
704 Result |= RHS;
705 return Result;
710 SmallBitVector Result(LHS);
711 Result ^= RHS;
712 return Result;
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DCanonicalType.h634 CanQual<T> Result; local
635 Result.Stored = QualType::getFromOpaquePtr(Ptr);
636 assert((!Result || Result.Stored.getAsOpaquePtr() == (void*)-1 ||
637 Result.Stored.isCanonical()) && "Type is not canonical!");
638 return Result;
646 CanQual<T> Result; local
647 Result.Stored = Other;
648 return Result;
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/
H A DInterpolatingCompilationDatabase.cpp208 CompileCommand Result = Cmd; local
209 Result.Filename = std::string(Filename);
223 Result.CommandLine.push_back(std::string(Flag));
225 Result.CommandLine.push_back("-x");
226 Result.CommandLine.push_back(types::getTypeName(TargetType));
232 Result.CommandLine.emplace_back((
236 Result.CommandLine.push_back(std::string(Filename));
237 Result.Heuristic = "inferred from " + Cmd.Filename;
238 return Result;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.cpp398 uint64_t Result = getSymbolAddress(Name, false); local
399 if (Result != 0)
401 return Result;
406 uint64_t Result = getSymbolAddress(Name, true); local
407 if (Result != 0)
409 return Result;
677 auto Result = ParentEngine.findSymbol(Name, false); local
678 if (Result)
679 return Result;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DMemorySSA.cpp531 MemoryAccess *Result = MSSA.getLiveOnEntryDef(); local
538 return Result;
541 /// Result of calling walkToPhiOrClobber.
543 /// The "Result" of the walk. Either a clobber, the last thing we walked, or
545 MemoryAccess *Result; member in struct:__anon3382::ClobberWalker::UpwardsWalkResult
667 assert(Res.Result != StopWhere && Res.Result != SkipStopWhere);
671 TerminatedPath Term{Res.Result, PathIndex};
672 if (!MSSA.dominates(Res.Result, StopWhere))
680 if (Res.Result
857 TerminatedPath Result = TerminatedPaths.pop_back_val(); local
895 TerminatedPath Result = Clobbers.pop_back_val(); local
951 MemoryAccess *Result; local
1430 MemoryAccess *Result = local
2421 MemoryAccess *Result; local
2431 LLVM_DEBUG(dbgs() << "] for " << *I << " is " << *Result << "\\n"); local
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Frontend/
H A DPrecompiledPreamble.cpp483 uint64_t Result; local
484 if (llvm::sys::fs::file_size(Storage.asFile().getFilePath(), Result))
487 assert(Result <= std::numeric_limits<std::size_t>::max() &&
489 return Result;
770 PreambleFileHash Result; local
771 Result.Size = Size;
772 Result.ModTime = ModTime;
773 Result.MD5 = {};
774 return Result;
780 PreambleFileHash Result; local
[all...]
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_handlers.cpp766 ValueHandle Result,
771 if (Base == 0 && Result == 0)
773 else if (Base == 0 && Result != 0)
775 else if (Base != 0 && Result == 0)
789 << Result;
795 } else if ((sptr(Base) >= 0) == (sptr(Result) >= 0)) {
796 if (Base > Result)
799 << (void *)Base << (void *)Result;
803 << (void *)Base << (void *)Result;
807 << (void *)Base << (void *)Result;
764 handlePointerOverflowImpl(PointerOverflowData *Data, ValueHandle Base, ValueHandle Result, ReportOptions Opts) argument
811 __ubsan_handle_pointer_overflow(PointerOverflowData *Data, ValueHandle Base, ValueHandle Result) argument
818 __ubsan_handle_pointer_overflow_abort(PointerOverflowData *Data, ValueHandle Base, ValueHandle Result) argument
[all...]

Completed in 521 milliseconds

<<11121314151617181920>>