| /freebsd/sys/contrib/dev/acpica/components/utilities/ |
| H A D | utmath.c | 171 UINT64_STRUCT Part; member 215 ACPI_MUL_64_BY_32 (0, MultiplicandOvl.Part.Hi, Multiplier, in AcpiUtShortMultiply() 216 Product.Part.Hi, Carry32); in AcpiUtShortMultiply() 218 ACPI_MUL_64_BY_32 (0, MultiplicandOvl.Part.Lo, Multiplier, in AcpiUtShortMultiply() 219 Product.Part.Lo, Carry32); in AcpiUtShortMultiply() 221 Product.Part.Hi += Carry32; in AcpiUtShortMultiply() 262 OperandOvl.Part.Hi = OperandOvl.Part.Lo; in AcpiUtShortShiftLeft() 263 OperandOvl.Part.Lo = 0; in AcpiUtShortShiftLeft() 266 ACPI_SHIFT_LEFT_64_BY_32 (OperandOvl.Part.Hi, in AcpiUtShortShiftLeft() 267 OperandOvl.Part.Lo, Count); in AcpiUtShortShiftLeft() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
| H A D | VPlanUnroll.cpp | 71 VPValue *getConstantVPV(unsigned Part) { in getConstantVPV() argument 73 return Plan.getOrAddLiveIn(ConstantInt::get(CanIVIntTy, Part)); in getConstantVPV() 82 VPValue *getValueForPart(VPValue *V, unsigned Part) { in getValueForPart() argument 83 if (Part == 0 || V->isLiveIn()) in getValueForPart() 85 assert((VPV2Parts.contains(V) && VPV2Parts[V].size() >= Part) && in getValueForPart() 87 return VPV2Parts[V][Part - 1]; in getValueForPart() 94 unsigned Part) { in addRecipeForPart() argument 97 assert(Ins.first->second.size() == Part - 1 && "earlier parts not set"); in addRecipeForPart() 106 for (unsigned Part = 0; Part != UF; ++Part) in addUniformForAllParts() local 114 void remapOperand(VPRecipeBase *R, unsigned OpIdx, unsigned Part) { in remapOperand() argument [all …]
|
| /freebsd/contrib/libcbor/doc/source/ |
| H A D | tutorial.rst | 23 :start-after: // Part 1: Begin 24 :end-before: // Part 1: End 32 :start-after: // Part 2: Begin 33 :end-before: // Part 2: End 41 :start-after: // Part 3: Begin 42 :end-before: // Part 3: End 50 :start-after: // Part 4: Begin 51 :end-before: // Part 4: End 59 :start-after: // Part 5: Begin 60 :end-before: // Part 5: End
|
| /freebsd/contrib/llvm-project/llvm/lib/Object/ |
| H A D | DXContainer.cpp | 63 Error DXContainer::parseDXILHeader(StringRef Part) { in parseDXILHeader() argument 66 const char *Current = Part.begin(); in parseDXILHeader() 68 if (Error Err = readStruct(Part, Current, Header)) in parseDXILHeader() 75 Error DXContainer::parseShaderFeatureFlags(StringRef Part) { in parseShaderFeatureFlags() argument 79 if (Error Err = readInteger(Part, Part.begin(), FlagValue)) in parseShaderFeatureFlags() 85 Error DXContainer::parseHash(StringRef Part) { in parseHash() argument 89 if (Error Err = readStruct(Part, Part.begin(), ReadHash)) in parseHash() 95 Error DXContainer::parseRootSignature(StringRef Part) { in parseRootSignature() argument 98 RootSignature = DirectX::RootSignature(Part); in parseRootSignature() 104 Error DXContainer::parsePSVInfo(StringRef Part) { in parsePSVInfo() argument [all …]
|
| /freebsd/contrib/llvm-project/libcxx/src/filesystem/ |
| H A D | path.cpp | 144 static PathPartKind ClassifyPathPart(string_view_t Part) { in ClassifyPathPart() argument 145 if (Part.empty()) in ClassifyPathPart() 147 if (Part == PATHSTR(".")) in ClassifyPathPart() 149 if (Part == PATHSTR("..")) in ClassifyPathPart() 151 if (Part == PATHSTR("/")) in ClassifyPathPart() 154 if (Part == PATHSTR("\\")) in ClassifyPathPart() 186 auto Part = *PP; in lexically_normal() local 187 PathPartKind Kind = ClassifyPathPart(Part); in lexically_normal() 192 AddPart(Kind, Part); in lexically_normal() 374 string_view_t Part = PP.inRootDir() ? PATHSTR("/") : *PP; in hash_value() local [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/VE/ |
| H A D | VVPISelLowering.cpp | 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 207 for (PackElem Part : {PackElem::Hi, PackElem::Lo}) { in splitPackedLoadStore() 210 auto SplitTM = CDAG.getTargetSplitMask(PackedMask, PackedAVL, Part); in splitPackedLoadStore() 213 if (Part == PackElem::Hi) in splitPackedLoadStore() 225 CDAG.getUnpack(SplitDataVT, PackData, Part, SplitTM.AVL); in splitPackedLoadStore() 230 // Push (ptr + ElemBytes * <Part>, 2 * ElemBytes) in splitPackedLoadStore() 233 OpVec.push_back(CDAG.getSplitPtrOffset(PackPtr, PackStride, Part)); in splitPackedLoadStore() 242 PartOps[(int)Part] = CDAG.getNode(VVPOC, MVT::Other, OpVec); in splitPackedLoadStore() 245 PartOps[(int)Part] = in splitPackedLoadStore() 365 for (PackElem Part in splitVectorOp() [all...] |
| H A D | VECustomDAG.cpp | 480 SDValue VECustomDAG::getUnpack(EVT DestVT, SDValue Vec, PackElem Part, in getUnpack() argument 486 (Part == PackElem::Lo) ? VEISD::VEC_UNPACK_LO : VEISD::VEC_UNPACK_HI; in getUnpack() 499 PackElem Part) const { in getTargetSplitMask() 503 if (Part == PackElem::Hi) in getTargetSplitMask() 516 NewMask = getUnpack(MVT::v256i1, RawMask, Part, NewAVL); in getTargetSplitMask() 522 PackElem Part) const { in getSplitPtrOffset() 525 if (Part == PackElem::Hi) in getSplitPtrOffset()
|
| H A D | VECustomDAG.h | 190 SDValue getUnpack(EVT DestVT, SDValue Vec, PackElem Part, SDValue AVL) const; 208 PackElem Part) const; 212 PackElem Part) const;
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/M68k/MCTargetDesc/ |
| H A D | M68kBaseInfo.h | 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 88 uint16_t Part = (Val >> (i * 16)) & 0xFFFF; in swapWord() local 89 Part = support::endian::byte_swap(Part, llvm::endianness::big); in swapWord() 90 NewVal |= (Part << (i * 16)); in swapWord()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| H A D | CallLowering.cpp | 712 for (unsigned Part = 0; Part < NumParts; ++Part) { in determineAssignments() local 714 if (Part == 0) { in determineAssignments() 718 if (Part == NumParts - 1) in determineAssignments() 724 Args[i].Flags[Part], CCInfo)) { in determineAssignments() 813 for (unsigned Part = 0; Part < NumParts; ++Part) in handleAssignments() local 814 Args[i].Regs[Part] = MRI.createGenericVirtualRegister(NewLLT); in handleAssignments() 831 for (unsigned Part = 0; Part < NumParts; ++Part) { in handleAssignments() local 832 assert((VA.getLocInfo() != CCValAssign::Indirect || Part == 0) && in handleAssignments() 835 Register ArgReg = Args[i].Regs[Part]; in handleAssignments() 837 unsigned Idx = BigEndianPartOrdering ? NumParts - 1 - Part : Part; in handleAssignments() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/ |
| H A D | DXContainerYAML.h | 287 struct Part { struct 288 Part() = default; 289 Part(std::string N, uint32_t S) : Name(N), Size(S) {} in Part() argument 302 std::vector<Part> Parts; argument 308 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::DXContainerYAML::Part) 356 template <> struct MappingTraits<DXContainerYAML::Part> { in LLVM_YAML_IS_SEQUENCE_VECTOR() 357 LLVM_ABI static void mapping(IO &IO, DXContainerYAML::Part &Version); in LLVM_YAML_IS_SEQUENCE_VECTOR()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | LoopDistribute.cpp | 459 for (auto &Part : llvm::drop_begin(llvm::reverse(PartitionContainer))) { in cloneLoops() local 460 NewLoop = Part.cloneLoopWithPreheader(TopPH, Pred, Index, LI, DT); in cloneLoops() 462 Part.getVMap()[ExitBlock] = TopPH; in cloneLoops() 463 Part.remapInstructions(); in cloneLoops() 464 setNewLoopID(OrigLoopID, &Part); in cloneLoops() 590 void setNewLoopID(MDNode *OrigLoopID, InstPartition *Part) { in setNewLoopID() argument 594 Part->hasDepCycle() ? LLVMLoopDistributeFollowupSequential in setNewLoopID() 597 Loop *NewLoop = Part->getDistributedLoop(); in setNewLoopID()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
| H A D | DXContainer.h | 454 LLVM_ABI Error initialize(StringRef Part); 480 Error parseDXILHeader(StringRef Part); 481 Error parseShaderFeatureFlags(StringRef Part); 482 Error parseHash(StringRef Part); 483 Error parseRootSignature(StringRef Part); 484 Error parsePSVInfo(StringRef Part); 485 Error parseSignature(StringRef Part, DirectX::Signature &Array); 496 dxbc::PartHeader Part; member
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | VirtualCallChecker.cpp | 151 const CheckerFrontendWithBugType &Part = IsPure ? PureChecker : ImpureChecker; in checkPreCall() local 153 if (!Part.isEnabled()) { in checkPreCall() 158 auto Report = std::make_unique<PathSensitiveBugReport>(Part, OS.str(), N); in checkPreCall()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonSplitDouble.cpp | 95 bool isProfitable(const USet &Part, LoopRegMap &IRM) const; 111 bool splitPartition(const USet &Part); 131 const USet &Part, const TargetRegisterInfo &TRI) { in dump_partition() argument 133 for (auto I : Part) in dump_partition() 413 bool HexagonSplitDoubleRegs::isProfitable(const USet &Part, LoopRegMap &IRM) in isProfitable() argument 418 for (unsigned DR : Part) { in isProfitable() 435 if (Op.isReg() && Part.count(Op.getReg())) in isProfitable() 1115 bool HexagonSplitDoubleRegs::splitPartition(const USet &Part) { in splitPartition() argument 1122 dump_partition(dbgs(), Part, *TRI); dbgs() << '\n'); in splitPartition() 1127 for (unsigned DR : Part) { in splitPartition() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | ArgumentPromotion.cpp | 359 const ArgPart &Part = Pair.second; in doPromotion() local 365 Part.Ty, nullptr, Arg.getName() + "." + Twine(Offset) + ".allc"); in doPromotion() 573 ArgPart &Part = Pair.first->second; in findArgParts() local 586 if (Part.Ty != Ty) { in findArgParts() 588 << "accessed as both " << *Part.Ty << " and " << *Ty in findArgParts() 600 (OffsetNotSeenBefore || Part.Alignment < I->getAlign())) { in findArgParts() 613 Part.Alignment = std::max(Part.Alignment, I->getAlign()); in findArgParts()
|
| /freebsd/contrib/llvm-project/llvm/lib/TargetParser/ |
| H A D | Host.cpp | 194 StringRef Part = Parts.empty() ? StringRef() : Parts.back(); in getHostCPUNameForARM() local 222 return StringSwitch<const char *>(Part) in getHostCPUNameForARM() 291 return StringSwitch<const char *>(Part) in getHostCPUNameForARM() 302 return StringSwitch<const char *>(Part) in getHostCPUNameForARM() 309 return StringSwitch<const char *>(Part) in getHostCPUNameForARM() 320 return StringSwitch<const char *>(Part) in getHostCPUNameForARM() 328 return StringSwitch<const char *>(Part) in getHostCPUNameForARM() 346 unsigned Variant = 0, Part = 0; in getHostCPUNameForARM() local 358 I.ltrim("\t :").getAsInteger(0, Part); in getHostCPUNameForARM() 360 unsigned Exynos = (Variant << 12) | Part; in getHostCPUNameForARM() [all …]
|
| /freebsd/contrib/llvm-project/libcxx/modules/std.compat/ |
| H A D | cstdarg.inc | 4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
| H A D | csetjmp.inc | 4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
| /freebsd/contrib/llvm-project/libcxx/modules/std/ |
| H A D | cstdarg.inc | 4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
| H A D | barrier.inc | 4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
| H A D | csetjmp.inc | 4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
| /freebsd/contrib/llvm-project/libcxx/include/ |
| H A D | __pstl_algorithm | |
| H A D | __pstl_memory | |
| H A D | __pstl_numeric | |