Searched refs:Result (Results 176 - 200 of 928) sorted by relevance

1234567891011>>

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/BPF/Disassembler/
H A DBPFDisassembler.cpp170 DecodeStatus Result; local
172 Result = readInstruction64(Bytes, Address, Size, Insn, IsLittleEndian);
173 if (Result == MCDisassembler::Fail) return MCDisassembler::Fail;
181 Result = decodeInstruction(DecoderTableBPFALU3264, Instr, Insn, Address,
184 Result = decodeInstruction(DecoderTableBPF64, Instr, Insn, Address, this,
187 if (Result == MCDisassembler::Fail) return MCDisassembler::Fail;
219 return Result;
/freebsd-13-stable/sys/contrib/dev/acpica/components/executer/
H A Dexconvrt.c194 UINT64 Result; local
234 Result = 0;
252 Result = AcpiUtImplicitStrtoul64 (ACPI_CAST_PTR (char, Pointer));
256 Result = AcpiUtExplicitStrtoul64 (ACPI_CAST_PTR (char, Pointer));
283 * Get next byte and shift it into the Result.
287 Result |= (((UINT64) Pointer[i]) << (i * 8));
300 ReturnDesc = AcpiUtCreateIntegerObject (Result);
307 ACPI_FORMAT_UINT64 (Result)));
309 /* Save the Result */
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DMapVector.h100 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair); local
101 auto &I = Result.first->second;
102 if (Result.second) {
119 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair); local
120 auto &I = Result.first->second;
121 if (Result.second) {
132 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair); local
133 auto &I = Result.first->second;
134 if (Result.second) {
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DBuiltinFunctionChecker.cpp116 llvm::APSInt Result = EVResult.Val.getInt(); local
118 BVF.getAPSIntType(CE->getType()).apply(Result);
119 V = SVB.makeIntVal(Result);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DASTTypeTraits.h406 DynTypedNode Result; local
407 Result.NodeKind = ASTNodeKind::getFromNode(Node);
408 new (Result.Storage.buffer) const void *(&Node);
409 return Result;
426 DynTypedNode Result; local
427 Result.NodeKind = ASTNodeKind::getFromNodeKind<T>();
428 new (Result.Storage.buffer) const void *(&Node);
429 return Result;
445 DynTypedNode Result; local
446 Result
[all...]
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerDataFlowTrace.h71 uint32_t Result = 0; local
74 Result++;
75 return Result;
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DRawCommentList.cpp193 const std::string Result = P.Parse(); local
194 const unsigned BriefTextLength = Result.size();
196 memcpy(BriefTextPtr, Result.c_str(), BriefTextLength + 1);
374 std::string Result; local
392 Result += "\n";
420 Result += Trimmed;
424 Result += "\n";
427 Result += L.getSpelling(Tok, SourceMgr);
440 DropTrailingNewLines(Result);
441 return Result;
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DDebugCrossImpSubsection.cpp58 auto Result = Mappings.insert(std::make_pair(Module, Targets)); local
59 if (!Result.second)
60 Result.first->getValue().push_back(Targets[0]);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DInfoStream.cpp89 uint32_t Result; local
90 if (!NamedStreams.get(Name, Result))
92 return Result;
H A DNamedStreamMap.cpp109 StringMap<uint32_t> Result; local
112 Result.try_emplace(Stream, Entry.second);
114 return Result;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp599 GenericValue Result; local
609 Result.IntVal = APInt(C->getType()->getPrimitiveSizeInBits(), 0);
615 Result.AggregateVal.resize(elemNum);
619 Result.AggregateVal[i].IntVal =
623 Result.AggregateVal[i] = getConstantValue(ElemUndef);
637 Result.AggregateVal.resize(elemNum);
640 Result.AggregateVal[i].IntVal =
644 return Result;
653 GenericValue Result = getConstantValue(Op0); local
657 char* tmp = (char*) Result
893 GenericValue Result; local
1079 LoadValueFromMemory(GenericValue &Result, GenericValue *Ptr, Type *Ty) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DInductiveRangeCheckElimination.cpp484 LoopStructure Result; local
485 Result.Tag = Tag;
486 Result.Header = cast<BasicBlock>(Map(Header));
487 Result.Latch = cast<BasicBlock>(Map(Latch));
488 Result.LatchBr = cast<BranchInst>(Map(LatchBr));
489 Result.LatchExit = cast<BasicBlock>(Map(LatchExit));
490 Result.LatchBrExitIdx = LatchBrExitIdx;
491 Result.IndVarBase = Map(IndVarBase);
492 Result.IndVarStart = Map(IndVarStart);
493 Result
1039 LoopStructure Result; local
1148 cloneLoop(LoopConstrainer::ClonedLoop &Result, const char *Tag) const argument
1897 auto Result = IRC.computeSafeIterationSpace(SE, IndVar, local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMCExpr.cpp112 int64_t Result = evaluateAsInt64(Value.getConstant()); local
114 (Result >= 0x8000))
116 Res = MCValue::get(Result);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopAnalysisManager.cpp30 bool LoopAnalysisManagerFunctionProxy::Result::invalidate(
132 LoopAnalysisManagerFunctionProxy::Result
135 return Result(*InnerAM, AM.getResult<LoopAnalysis>(F));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DDeltaAlgorithm.cpp21 bool Result = ExecuteOneTest(Changes);
22 if (!Result)
25 return Result;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/Windows/
H A DMemory.inc146 MemoryBlock Result;
147 Result.Address = PA;
148 Result.AllocatedSize = AllocSize;
149 Result.Flags = (Flags & ~MF_HUGE_HINT) | (HugePages ? MF_HUGE_HINT : 0);
152 Memory::InvalidateInstructionCache(Result.Address, AllocSize);
154 return Result;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARCOptAddrMode.cpp243 MachineInstr *Result = Ldst.getNextNode(); local
248 if (Result == &Add)
249 Result = Result->getNextNode();
259 return Result;
316 MachineInstr *Result = nullptr; local
324 Result = Last;
327 Result = First;
334 Result = First;
337 if (Result
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateDeduction.cpp383 DeducedTemplateArgument Result = checkDeducedTemplateArguments( local
385 if (Result.isNull()) {
392 Deduced[NTTP->getIndex()] = Result;
500 DeducedTemplateArgument Result = checkDeducedTemplateArguments(S.Context, local
503 if (Result.isNull()) {
510 Deduced[TempParam->getIndex()] = Result;
559 if (Sema::TemplateDeductionResult Result
564 return Result;
595 if (Sema::TemplateDeductionResult Result
601 return Result;
935 DeducedTemplateArgument Result = local
1424 DeducedTemplateArgument Result = checkDeducedTemplateArguments(S.Context, local
1778 Sema::TemplateDeductionResult Result = DeduceTemplateArguments( local
2143 auto Result = DeduceMatrixArg(MatrixParam->getRowExpr(), MatrixArg, local
3764 Sema::TemplateDeductionResult Result local
4045 TemplateDeductionResult Result; local
4152 TemplateDeductionResult Result; local
4247 TemplateDeductionResult Result; local
4295 TemplateDeductionResult Result; local
4458 TemplateDeductionResult Result; local
4526 QualType Result = Replacement; local
4584 DeduceAutoType(TypeSourceInfo *Type, Expr *&Init, QualType &Result, Optional<unsigned> DependentDeductionDepth, bool IgnoreConstraints) argument
4676 DeduceAutoType(TypeLoc Type, Expr *&Init, QualType &Result, Optional<unsigned> DependentDeductionDepth, bool IgnoreConstraints) argument
[all...]
H A DParsedAttr.cpp33 IdentifierLoc *Result = new (Ctx) IdentifierLoc; local
34 Result->Loc = Loc;
35 Result->Ident = Ident;
36 return Result;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/
H A DDIARawSymbol.cpp31 Variant Result; local
34 Result.Value.Int8 = V.cVal;
35 Result.Type = PDB_VariantType::Int8;
38 Result.Value.Int16 = V.iVal;
39 Result.Type = PDB_VariantType::Int16;
42 Result.Value.Int32 = V.intVal;
43 Result.Type = PDB_VariantType::Int32;
46 Result.Value.Int64 = V.llVal;
47 Result.Type = PDB_VariantType::Int64;
50 Result
124 GUID Result; local
172 std::string Result; local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeTypes.cpp457 dbgs() << "Result type " << i << " illegal: ";
706 void DAGTypeLegalizer::SetPromotedInteger(SDValue Op, SDValue Result) { argument
707 assert(Result.getValueType() ==
710 AnalyzeNewValue(Result);
714 OpIdEntry = getTableId(Result);
715 Result->setFlags(Op->getFlags());
717 DAG.transferDbgValues(Op, Result);
720 void DAGTypeLegalizer::SetSoftenedFloat(SDValue Op, SDValue Result) { argument
721 assert(Result.getValueType() ==
724 AnalyzeNewValue(Result);
731 SetPromotedFloat(SDValue Op, SDValue Result) argument
742 SetSoftPromotedHalf(SDValue Op, SDValue Result) argument
752 SetScalarizedVector(SDValue Op, SDValue Result) argument
854 SetWidenedVector(SDValue Op, SDValue Result) argument
[all...]
/freebsd-13-stable/contrib/bmake/unit-tests/
H A Dvarmod-defined.exp8 Result of ${VAR:D${8_DOLLARS}} is "$$$$$$$$" (VARE_WANTRES|VARE_KEEP_DOLLAR|VARE_KEEP_UNDEF, none, none)
19 Result of ${VAR:@var@${8_DOLLARS}@} is "$$$$" (VARE_WANTRES|VARE_KEEP_DOLLAR|VARE_KEEP_UNDEF, none, none)
H A Dvarname.exp9 Result of ${:UVAR(((} is "VAR(((" (VARE_UNDEFERR|VARE_WANTRES, none, VES_DEF)
15 Result of ${:UVAR\(\(\(} is "VAR\(\(\(" (VARE_UNDEFERR|VARE_WANTRES, none, VES_DEF)
/freebsd-13-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DMipsLinux.cpp30 DetectedMultilibs Result; local
31 findMIPSMultilibs(D, Triple, "", Args, Result);
32 Multilibs = Result.Multilibs;
33 SelectedMultilib = Result.SelectedMultilib;
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/Syntax/
H A DTokens.cpp611 : Result(SM), CollectedExpansions(std::move(CollectedExpansions)), SM(SM),
613 Result.ExpandedTokens = std::move(Expanded);
617 assert(!Result.ExpandedTokens.empty());
618 assert(Result.ExpandedTokens.back().kind() == tok::eof);
627 while (NextExpanded < Result.ExpandedTokens.size() - 1 /* eof */) {
640 for (const auto &File : Result.Files)
644 for (auto &pair : Result.Files) {
656 return std::move(Result);
668 Result.ExpandedTokens[NextExpanded].location());
670 const auto &SpelledTokens = Result
[all...]

Completed in 164 milliseconds

1234567891011>>