Home
last modified time | relevance | path

Searched refs:In (Results 1 – 25 of 1568) sorted by relevance

12345678910>>...63

/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelDAGToDAG.h201 bool SelectVOP3ModsImpl(SDValue In, SDValue &Src, unsigned &SrcMods,
204 bool SelectVOP3Mods(SDValue In, SDValue &Src, SDValue &SrcMods) const;
205 bool SelectVOP3ModsNonCanonicalizing(SDValue In, SDValue &Src,
207 bool SelectVOP3BMods(SDValue In, SDValue &Src, SDValue &SrcMods) const;
208 bool SelectVOP3NoMods(SDValue In, SDValue &Src) const;
209 bool SelectVOP3Mods0(SDValue In, SDValue &Src, SDValue &SrcMods,
211 bool SelectVOP3BMods0(SDValue In, SDValue &Src, SDValue &SrcMods,
213 bool SelectVOP3NoMods0(SDValue In, SDValue &Src, SDValue &SrcMods,
216 bool SelectVINTERPModsImpl(SDValue In, SDValue &Src, SDValue &SrcMods,
218 bool SelectVINTERPMods(SDValue In, SDValue &Src, SDValue &SrcMods) const;
[all …]
H A DAMDGPUISelDAGToDAG.cpp53 static bool isExtractHiElt(SDValue In, SDValue &Out) { in isExtractHiElt() argument
54 In = stripBitcast(In); in isExtractHiElt()
56 if (In.getOpcode() == ISD::EXTRACT_VECTOR_ELT) { in isExtractHiElt()
57 if (ConstantSDNode *Idx = dyn_cast<ConstantSDNode>(In.getOperand(1))) { in isExtractHiElt()
60 Out = In.getOperand(0); in isExtractHiElt()
65 if (In.getOpcode() != ISD::TRUNCATE) in isExtractHiElt()
68 SDValue Srl = In.getOperand(0); in isExtractHiElt()
83 static SDValue stripExtractLoElt(SDValue In) { in stripExtractLoElt() argument
84 if (In.getOpcode() == ISD::EXTRACT_VECTOR_ELT) { in stripExtractLoElt()
85 SDValue Idx = In.getOperand(1); in stripExtractLoElt()
[all …]
/freebsd/contrib/libxo/tests/core/saved/
H A Dtest_01.out1 Item Total Sold In Stock On Order SKU
11 In stock: 54
16 In stock: 4
21 In stock: 2
26 In stock: 144
31 In stock: 14
36 In stock: 45
H A Dtest_10.out1 Item Total Sold In Stock On Order SKU
11 In stock: 54
16 In stock: 4
21 In stock: 2
26 In stock: 144
31 In stock: 14
36 In stock: 45
H A Dtest_02.out1 Item Total Sold In Stock On Order SKU
11 In stock: 54
16 In stock: 4
21 In stock: 2
26 In stock: 144
31 In stock: 14
36 In stock: 45
H A Dtest_01.T.out11 Item Total Sold In Stock On Order SKU
21 In stock: 54
26 In stock: 4
31 In stock: 2
36 In stock: 144
41 In stock: 14
46 In stock: 45
54 Item Total Sold In Stock On Order SKU
/freebsd/contrib/llvm-project/clang/lib/Testing/
H A DTestAST.cpp77 TestAST::TestAST(const TestInputs &In) { in TestAST() argument
86 bool ErrorOK = In.ErrorOK || llvm::StringRef(In.Code).contains("error-ok"); in TestAST()
91 std::vector<std::string> LangArgs = getCC1ArgsForTesting(In.Language); in TestAST()
94 for (const auto &S : In.ExtraArgs) in TestAST()
96 std::string Filename = In.FileName; in TestAST()
98 Filename = getFilenameForTesting(In.Language).str(); in TestAST()
110 if (auto Err = VFS->setCurrentWorkingDirectory(In.WorkingDir)) in TestAST()
113 llvm::MemoryBuffer::getMemBufferCopy(In.Code, Filename)); in TestAST()
114 for (const auto &Extra : In.ExtraFiles) in TestAST()
124 In.MakeAction ? In.MakeAction() : std::make_unique<SyntaxOnlyAction>(); in TestAST()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonGenExtract.cpp80 bool convert(Instruction *In);
96 bool HexagonGenExtract::convert(Instruction *In) { in INITIALIZE_PASS_DEPENDENCY()
101 BasicBlock *BB = In->getParent(); in INITIALIZE_PASS_DEPENDENCY()
107 bool Match = match(In, m_And(m_Shl(m_LShr(m_Value(BF), m_ConstantInt(CSR)), in INITIALIZE_PASS_DEPENDENCY()
114 Match = match(In, m_And(m_Shl(m_AShr(m_Value(BF), m_ConstantInt(CSR)), in INITIALIZE_PASS_DEPENDENCY()
122 Match = match(In, m_And(m_Shl(m_Value(BF), m_ConstantInt(CSL)), in INITIALIZE_PASS_DEPENDENCY()
131 Match = match(In, m_And(m_LShr(m_Value(BF), m_ConstantInt(CSR)), in INITIALIZE_PASS_DEPENDENCY()
138 Match = match(In, m_And(m_AShr(m_Value(BF), m_ConstantInt(CSR)), in INITIALIZE_PASS_DEPENDENCY()
145 Match = match(In, m_Shl(m_LShr(m_Value(BF), m_ConstantInt(CSR)), in INITIALIZE_PASS_DEPENDENCY()
152 Match = match(In, m_Shl(m_AShr(m_Value(BF), m_ConstantInt(CSR)), in INITIALIZE_PASS_DEPENDENCY()
[all …]
H A DHexagonLoopIdiomRecognition.cpp592 void promoteTo(Instruction *In, IntegerType *DestTy, BasicBlock *LoopB);
596 bool findCycle(Value *Out, Value *In, ValueSeq &Cycle);
987 Instruction *In = dyn_cast<Instruction>(Val); in isPromotableTo() local
988 if (!In) in isPromotableTo()
992 switch (In->getOpcode()) { in isPromotableTo()
1003 if (CmpInst *CI = cast<CmpInst>(In)) in isPromotableTo()
1007 return In->hasNoSignedWrap() && In->hasNoUnsignedWrap(); in isPromotableTo()
1012 void PolynomialMultiplyRecognize::promoteTo(Instruction *In, in promoteTo() argument
1014 Type *OrigTy = In->getType(); in promoteTo()
1018 if (!In->getType()->isIntegerTy(1)) in promoteTo()
[all …]
H A DHexagonBlockRanges.cpp161 for (auto &In : B) { in InstrIndexMap() local
162 if (In.isDebugInstr()) in InstrIndexMap()
164 assert(getIndex(&In) == IndexType::None && "Instruction already in map"); in InstrIndexMap()
165 Map.insert(std::make_pair(Idx, &In)); in InstrIndexMap()
314 for (auto &In : B) { in computeInitialLiveRanges() local
315 if (In.isDebugInstr()) in computeInitialLiveRanges()
317 IndexType Index = IndexMap.getIndex(&In); in computeInitialLiveRanges()
319 for (auto &Op : In.operands()) { in computeInitialLiveRanges()
335 for (auto &Op : In.operands()) { in computeInitialLiveRanges()
349 for (auto &Op : In.operands()) { in computeInitialLiveRanges()
[all …]
/freebsd/sys/contrib/dev/acpica/components/resources/
H A Drsxface.c164 #define ACPI_COPY_FIELD(Out, In, Field) ((Out)->Field = (In)->Field) argument
165 #define ACPI_COPY_ADDRESS(Out, In) \ argument
166 ACPI_COPY_FIELD(Out, In, ResourceType); \
167 ACPI_COPY_FIELD(Out, In, ProducerConsumer); \
168 ACPI_COPY_FIELD(Out, In, Decode); \
169 ACPI_COPY_FIELD(Out, In, MinAddressFixed); \
170 ACPI_COPY_FIELD(Out, In, MaxAddressFixed); \
171 ACPI_COPY_FIELD(Out, In, Info); \
172 ACPI_COPY_FIELD(Out, In, Address.Granularity); \
173 ACPI_COPY_FIELD(Out, In, Address.Minimum); \
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/
H A DObjCopy.cpp39 object::Binary &In, raw_ostream &Out) { in executeObjcopyOnBinary() argument
40 if (auto *ELFBinary = dyn_cast<object::ELFObjectFileBase>(&In)) { in executeObjcopyOnBinary()
48 if (auto *COFFBinary = dyn_cast<object::COFFObjectFile>(&In)) { in executeObjcopyOnBinary()
56 if (auto *MachOBinary = dyn_cast<object::MachOObjectFile>(&In)) { in executeObjcopyOnBinary()
65 dyn_cast<object::MachOUniversalBinary>(&In)) { in executeObjcopyOnBinary()
69 if (auto *WasmBinary = dyn_cast<object::WasmObjectFile>(&In)) { in executeObjcopyOnBinary()
77 if (auto *XCOFFBinary = dyn_cast<object::XCOFFObjectFile>(&In)) { in executeObjcopyOnBinary()
/freebsd/sys/contrib/device-tree/src/arm/ti/omap/
H A Dam3517-evm-ui.dtsi14 "Microphone", "Mic In",
15 "Line", "Line In",
21 "LLINEIN", "Line In",
22 "RLINEIN", "Line In",
23 "MICIN", "Mic In";
44 "Microphone", "Mic In",
45 "Line", "Line In",
51 "LLINEIN", "Line In",
52 "RLINEIN", "Line In",
53 "MICIN", "Mic In";
/freebsd/sys/contrib/device-tree/Bindings/sound/
H A Dmt2701-cs42448.txt31 "AIN2L", "Tuner In",
32 "AIN2R", "Tuner In",
33 "AIN3L", "Satellite Tuner In",
34 "AIN3R", "Satellite Tuner In",
35 "AIN3L", "AUX In",
36 "AIN3R", "AUX In";
H A Ddavinci-evm-audio.txt26 * Line In
45 "LINE1L", "Line In",
46 "LINE2L", "Line In",
47 "LINE1R", "Line In",
48 "LINE2R", "Line In";
/freebsd/contrib/bmake/unit-tests/
H A Dopt-debug-errors-jobs.exp5 *** In directory: <curdir>
15 *** In directory: <curdir>
27 *** In directory: <curdir>
39 *** In directory: <curdir>
49 *** In directory: <curdir>
57 *** In directory: <curdir>
H A Dvarmod-loop-varname.exp1 …r:S,b,v,}@+${var}+@} != "+one+ +two+ +three+"" with value "one two three": In the :@ modifier, the…
3 make: "varmod-loop-varname.mk" line 89: while evaluating variable "1 2 3" with value "1 2 3": In th…
5 make: "varmod-loop-varname.mk" line 96: while evaluating variable "1 2 3" with value "1 2 3": In th…
7 make: "varmod-loop-varname.mk" line 103: while evaluating variable "1 2 3" with value "1 2 3": In t…
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DSipHash.cpp157 void llvm::getSipHash_2_4_64(ArrayRef<uint8_t> In, const uint8_t (&K)[16], in getSipHash_2_4_64() argument
159 siphash<2, 4>(In.data(), In.size(), K, Out); in getSipHash_2_4_64()
162 void llvm::getSipHash_2_4_128(ArrayRef<uint8_t> In, const uint8_t (&K)[16], in getSipHash_2_4_128() argument
164 siphash<2, 4>(In.data(), In.size(), K, Out); in getSipHash_2_4_128()
/freebsd/sys/contrib/device-tree/src/arm64/freescale/
H A Dimx8mm-verdin-dev.dtsi21 "LAUX", "Line In",
22 "RAUX", "Line In",
23 "LMICP", "Mic In",
24 "RMICP", "Mic In";
29 "Microphone", "Mic In",
30 "Line", "Line In";
/freebsd/sys/contrib/dev/acpica/components/utilities/
H A Dutmisc.c256 } In; in AcpiUtDwordByteSwap() local
262 In.Value = Value; in AcpiUtDwordByteSwap()
264 Out.Bytes[0] = In.Bytes[3]; in AcpiUtDwordByteSwap()
265 Out.Bytes[1] = In.Bytes[2]; in AcpiUtDwordByteSwap()
266 Out.Bytes[2] = In.Bytes[1]; in AcpiUtDwordByteSwap()
267 Out.Bytes[3] = In.Bytes[0]; in AcpiUtDwordByteSwap()
/freebsd/contrib/llvm-project/llvm/lib/Option/
H A DOptTable.cpp176 static bool optionMatches(const OptTable::Info &In, StringRef Option) { in optionMatches() argument
177 for (auto Prefix : In.Prefixes) in optionMatches()
178 if (Option.ends_with(In.getName())) in optionMatches()
179 if (Option.slice(0, Option.size() - In.getName().size()) == Prefix) in optionMatches()
191 const Info &In = OptionInfos[I]; in suggestValueCompletions() local
192 if (!In.Values || !optionMatches(In, Option)) in suggestValueCompletions()
196 StringRef(In.Values).split(Candidates, ",", -1, false); in suggestValueCompletions()
212 const Info &In = OptionInfos[I]; in findByPrefix() local
213 if (In.Prefixes.empty() || (!In.HelpText && !In.GroupID)) in findByPrefix()
215 if (!(In.Visibility & VisibilityMask)) in findByPrefix()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/net/
H A Dhisilicon-hns-nic.txt16 In NIC mode of DSAF, all 6 PHYs are taken as ethernet ports to the CPU. The
26 In Switch mode of DSAF, all 6 PHYs are taken as physical ports connect to a
28 this switch. In this case, the port-id will be 2 only.
43 In NIC mode of DSAF, all 6 PHYs of service DSAF are taken as ethernet ports
53 In Switch mode of DSAF, all 6 PHYs of service DSAF are taken as physical
55 single NIC connected to this switch. In this case, the port-idx-in-ae
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/Utils/
H A DAArch64SMEAttributes.h31 In = 1, // aarch64_in_zt0 enumerator
88 bool isInZA() const { return decodeZAState(Bitmask) == StateValue::In; } in isInZA()
96 return State == StateValue::In || State == StateValue::Out || in sharesZA()
116 bool isInZT0() const { return decodeZT0State(Bitmask) == StateValue::In; } in isInZT0()
126 return State == StateValue::In || State == StateValue::Out || in sharesZT0()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DUnifyLoopExits.cpp123 for (auto *In : Incoming) { in INITIALIZE_PASS_DEPENDENCY() local
124 LLVM_DEBUG(dbgs() << "predecessor " << In->getName() << ": "); in INITIALIZE_PASS_DEPENDENCY()
125 if (Def->getParent() == In || DT.dominates(Def, In)) { in INITIALIZE_PASS_DEPENDENCY()
127 NewPhi->addIncoming(Def, In); in INITIALIZE_PASS_DEPENDENCY()
130 NewPhi->addIncoming(PoisonValue::get(Def->getType()), In); in INITIALIZE_PASS_DEPENDENCY()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjCopy/ELF/
H A DELFObjcopy.h31 const ELFConfig &ELFConfig, MemoryBuffer &In,
39 const ELFConfig &ELFConfig, MemoryBuffer &In,
47 object::ELFObjectFileBase &In, raw_ostream &Out);

12345678910>>...63