Home
last modified time | relevance | path

Searched refs:Part (Results 1 – 25 of 976) sorted by relevance

12345678910>>...40

/netbsd-src/sys/external/bsd/acpica/dist/utilities/
H A Dutmath.c63 UINT64_STRUCT Part; member
107 ACPI_MUL_64_BY_32 (0, MultiplicandOvl.Part.Hi, Multiplier, in AcpiUtShortMultiply()
108 Product.Part.Hi, Carry32); in AcpiUtShortMultiply()
110 ACPI_MUL_64_BY_32 (0, MultiplicandOvl.Part.Lo, Multiplier, in AcpiUtShortMultiply()
111 Product.Part.Lo, Carry32); in AcpiUtShortMultiply()
113 Product.Part.Hi += Carry32; in AcpiUtShortMultiply()
154 OperandOvl.Part.Hi = OperandOvl.Part.Lo; in AcpiUtShortShiftLeft()
155 OperandOvl.Part.Lo = 0; in AcpiUtShortShiftLeft()
158 ACPI_SHIFT_LEFT_64_BY_32 (OperandOvl.Part.Hi, in AcpiUtShortShiftLeft()
159 OperandOvl.Part.Lo, Count); in AcpiUtShortShiftLeft()
[all …]
/netbsd-src/external/apache2/llvm/dist/libcxx/benchmarks/
H A Dfilesystem.bench.cpp14 for (auto& Part : in) in BM_PathConstructString() local
15 PP /= Part; in BM_PathConstructString()
32 for (auto& Part : in) in BM_PathConstructCStr() local
33 PP /= Part; in BM_PathConstructCStr()
50 for (auto& Part : in) in BM_PathConstructIter() local
51 PP /= Part; in BM_PathConstructIter()
82 for (auto& Part : in) in BM_PathIterateMultipleTimes() local
83 PP /= Part; in BM_PathIterateMultipleTimes()
102 for (auto& Part : in) in BM_PathIterateOnce() local
103 PP /= Part; in BM_PathIterateOnce()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp679 unsigned Part, unsigned Lane = UINT_MAX);
2316 for (unsigned Part = 0; Part < UF; ++Part) { in createVectorIntOrFpInductionPHI() local
2317 State.set(Def, LastInduction, Part); in createVectorIntOrFpInductionPHI()
2322 State, Part); in createVectorIntOrFpInductionPHI()
2359 unsigned Part, unsigned Lane) { in recordVectorLoopValueForInductionCast() argument
2379 State.set(CastDef, VectorLoopVal, VPIteration(Part, Lane)); in recordVectorLoopValueForInductionCast()
2381 State.set(CastDef, VectorLoopVal, Part); in recordVectorLoopValueForInductionCast()
2444 for (unsigned Part = 0; Part < UF; ++Part) { in widenIntOrFpInduction() local
2447 getStepVector(Broadcasted, VF.getKnownMinValue() * Part, Step, in widenIntOrFpInduction()
2449 State.set(Def, EntryPart, Part); in widenIntOrFpInduction()
[all …]
H A DVPlan.cpp233 .PerPartScalars[Def][Instance.Part][Instance.Lane.mapToCacheIndex(VF)]; in get()
236 assert(hasVectorValue(Def, Instance.Part)); in get()
237 auto *VecPart = Data.PerPartOutput[Def][Instance.Part]; in get()
475 for (unsigned Part = 0, UF = State->UF; Part < UF; ++Part) { in execute() local
476 State->Instance->Part = Part; in execute()
572 unsigned Part) { in generateInstruction() argument
576 Value *A = State.get(getOperand(0), Part); in generateInstruction()
577 Value *B = State.get(getOperand(1), Part); in generateInstruction()
579 State.set(this, V, Part); in generateInstruction()
585 Value *A = State.get(getOperand(0), Part); in generateInstruction()
[all …]
H A DVPlan.h179 unsigned Part; member
183 VPIteration(unsigned Part, unsigned Lane,
185 : Part(Part), Lane(Lane, Kind) {} in Part() function
187 VPIteration(unsigned Part, const VPLane &Lane) : Part(Part), Lane(Lane) {} in VPIteration()
189 bool isFirstIteration() const { return Part == 0 && Lane.isFirstLane(); } in isFirstIteration()
227 Value *get(VPValue *Def, unsigned Part);
232 bool hasVectorValue(VPValue *Def, unsigned Part) { in hasVectorValue()
234 return I != Data.PerPartOutput.end() && Part < I->second.size() && in hasVectorValue()
235 I->second[Part]; in hasVectorValue()
247 return Instance.Part < I->second.size() && in hasScalarValue()
[all …]
/netbsd-src/games/quiz/datfiles/
H A Dsov12 Rich[ard|] [II|2]:14:Hen[ry|] [IV|4] Part 1
13 Hen[ry|] [IV|4] Part 1:15|14-15:Hen[ry|] [IV|4] Part 2
14 Hen[ry|] [IV|4] Part 2:15|14-15:Hen[ry|] [V|5]
H A Dbard35 {King }Henry VI{,} Part I{ I-ii}:\
87 {King }Henry IV{,} Part I{ II-iv}:\
127 {King }Henry IV{,} Part I{ V-iv}:\
143 {King }Henry IV{,} Part II{ III-i}:\
227 {King }Henry VI{,} Part I{ III-iii}:\
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
H A DCallLowering.cpp575 for (unsigned Part = 0; Part < NumParts; ++Part) { in determineAssignments() local
577 if (Part == 0) { in determineAssignments()
581 if (Part == NumParts - 1) in determineAssignments()
597 Args[i].Flags[Part], CCInfo)) { in determineAssignments()
659 for (unsigned Part = 0; Part < NumParts; ++Part) in handleAssignments() local
660 Args[i].Regs[Part] = MRI.createGenericVirtualRegister(NewLLT); in handleAssignments()
673 for (unsigned Part = 0; Part < NumParts; ++Part) { in handleAssignments() local
674 Register ArgReg = Args[i].Regs[Part]; in handleAssignments()
676 VA = ArgLocs[j + Part]; in handleAssignments()
677 const ISD::ArgFlagsTy Flags = Args[i].Flags[Part]; in handleAssignments()
[all …]
H A DRegisterBankInfo.cpp540 for (const PartialMapping *Part = First + 1; Part != end(); ++Part) { in partsAllUniform() local
541 if (Part->Length != First->Length || Part->RegBank != First->RegBank) in partsAllUniform()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/split-file/
H A Dsplit-file.cpp61 struct Part { struct
69 DenseMap<StringRef, Part> partToBegin; in handle()
97 Part &cur = res.first->second; in handle()
126 Part &part = keyValue.second; in handle()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonSplitDouble.cpp101 bool isProfitable(const USet &Part, LoopRegMap &IRM) const;
117 bool splitPartition(const USet &Part);
137 const USet &Part, const TargetRegisterInfo &TRI) { in dump_partition() argument
139 for (auto I : Part) in dump_partition()
420 bool HexagonSplitDoubleRegs::isProfitable(const USet &Part, LoopRegMap &IRM) in isProfitable() argument
425 for (unsigned DR : Part) { in isProfitable()
442 if (Op.isReg() && Part.count(Op.getReg())) in isProfitable()
1123 bool HexagonSplitDoubleRegs::splitPartition(const USet &Part) { in splitPartition() argument
1130 dump_partition(dbgs(), Part, *TRI); dbgs() << '\n'); in splitPartition()
1135 for (unsigned DR : Part) { in splitPartition()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DHost.cpp167 StringRef Part; in getHostCPUNameForARM() local
174 Part = Lines[I].substr(8).ltrim("\t :"); in getHostCPUNameForARM()
189 return StringSwitch<const char *>(Part) in getHostCPUNameForARM()
219 return StringSwitch<const char *>(Part) in getHostCPUNameForARM()
230 return StringSwitch<const char *>(Part) in getHostCPUNameForARM()
236 return StringSwitch<const char *>(Part) in getHostCPUNameForARM()
245 return StringSwitch<const char *>(Part) in getHostCPUNameForARM()
253 return StringSwitch<const char *>(Part) in getHostCPUNameForARM()
270 unsigned Variant = 0, Part = 0; in getHostCPUNameForARM() local
282 I.ltrim("\t :").getAsInteger(0, Part); in getHostCPUNameForARM()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DLoopDistribute.cpp468 auto *Part = &*I; in cloneLoops() local
470 NewLoop = Part->cloneLoopWithPreheader(TopPH, Pred, Index, LI, DT); in cloneLoops()
472 Part->getVMap()[ExitBlock] = TopPH; in cloneLoops()
473 Part->remapInstructions(); in cloneLoops()
474 setNewLoopID(OrigLoopID, Part); in cloneLoops()
598 void setNewLoopID(MDNode *OrigLoopID, InstPartition *Part) { in setNewLoopID() argument
602 Part->hasDepCycle() ? LLVMLoopDistributeFollowupSequential in setNewLoopID()
605 Loop *NewLoop = Part->getDistributedLoop(); in setNewLoopID()
/netbsd-src/external/apache2/llvm/dist/llvm/utils/benchmark/src/
H A Dsysinfo.cc225 auto CountBits = [](std::string Part) { in CountSetBitsInCPUMap() argument
227 Part = "0x" + Part; in CountSetBitsInCPUMap()
228 CPUMask Mask(std::stoul(Part, nullptr, 16)); in CountSetBitsInCPUMap()
/netbsd-src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
H A Dsysinfo.cc227 auto CountBits = [](std::string Part) { in CountSetBitsInCPUMap() argument
229 Part = "0x" + Part; in CountSetBitsInCPUMap()
230 CPUMask Mask(benchmark::stoul(Part, nullptr, 16)); in CountSetBitsInCPUMap()
/netbsd-src/external/apache2/llvm/dist/libcxx/docs/DesignDocs/
H A DCapturingConfigInfo.rst59 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
79 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DDiagnosticAnalysisKinds.td3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
/netbsd-src/external/apache2/llvm/dist/llvm/bindings/ocaml/all_backends/
H A Dllvm_all_backends.ml3 * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
H A Dllvm_all_backends.mli3 * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
/netbsd-src/external/apache2/llvm/dist/llvm/bindings/ocaml/transforms/utils/
H A Dllvm_transform_utils.ml3 * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
/netbsd-src/external/apache2/llvm/dist/llvm/bindings/ocaml/backends/
H A Dllvm_backend.ml.in3 * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/
H A DRISCVRegisterBanks.td3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
H A DMipsRegisterBanks.td3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
/netbsd-src/external/apache2/llvm/dist/libcxx/include/
H A Dexecution4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
H A Dcassert4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.

12345678910>>...40