Home
last modified time | relevance | path

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

12345678910>>...75

/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DArena.cpp123 auto EatSpaces = [&] { In = In.ltrim(' '); }; in parse()
126 if (In.consume_front("!")) { in parse()
132 if (In.consume_front("(")) { in parse()
133 auto *Arg1 = parse(A, In); in parse()
139 if (In.consume_front("|")) in parse()
150 auto *Arg2 = parse(A, In); in parse()
155 if (!In.consume_front(")")) in parse()
163 if (In.consume_front("V")) { in parse()
203 llvm::StringRef Rest = In; in parseFormula()
206 return llvm::make_error<FormulaParseError>(In, In.size() - Rest.size()); in parseFormula()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelDAGToDAG.h217 bool SelectVOP3ModsNonCanonicalizing(SDValue In, SDValue &Src,
220 bool SelectVOP3NoMods(SDValue In, SDValue &Src) const;
233 bool SelectVOP3OMods(SDValue In, SDValue &Src, SDValue &Clamp,
240 bool SelectVOP3PModsNeg(SDValue In, SDValue &Src) const;
241 bool SelectWMMAOpSelVOP3PMods(SDValue In, SDValue &Src) const;
243 bool SelectWMMAModsF32NegAbs(SDValue In, SDValue &Src,
246 bool SelectWMMAModsF16NegAbs(SDValue In, SDValue &Src,
248 bool SelectWMMAVISrc(SDValue In, SDValue &Src) const;
256 bool SelectVOP3PMadMixModsImpl(SDValue In, SDValue &Src,
258 bool SelectVOP3PMadMixModsExt(SDValue In, SDValue &Src,
[all …]
H A DAMDGPUISelDAGToDAG.cpp54 In = stripBitcast(In); in isExtractHiElt()
96 return In; in stripExtractLoElt()
2792 Src = In; in SelectVOP3ModsImpl()
2856 Src = In; in SelectVOP3NoMods()
2908 Src = In; in SelectVOP3OMods()
2920 Src = In; in SelectVOP3PMods()
3167 Src = In; in SelectWMMAModsF16Neg()
3214 Src = In; in SelectWMMAModsF16NegAbs()
3263 Src = In; in SelectWMMAModsF32NegAbs()
3346 Src = In; in SelectSWMMACIndex8()
[all …]
/freebsd/contrib/libxo/tests/core/saved/
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_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_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_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/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()
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()
211 IRBuilder<> IRB(In); in INITIALIZE_PASS_DEPENDENCY()
219 In->replaceAllUsesWith(NewIn); in INITIALIZE_PASS_DEPENDENCY()
241 Instruction *In = &*I; in visitBlock() local
[all …]
H A DHexagonLoopIdiomRecognition.cpp994 if (!In) in isPromotableTo()
998 switch (In->getOpcode()) { in isPromotableTo()
1013 return In->hasNoSignedWrap() && In->hasNoUnsignedWrap(); in isPromotableTo()
1025 In->mutateType(DestTy); in promoteTo()
1094 if (!In.isTerminator() && !isPromotableTo(&In, DestTy)) in promoteTypes()
1100 [](Instruction &In) { return &In; }); in promoteTypes() argument
1134 if (Out == In) in findCycle()
2323 for (auto I = In->op_begin(), E = In->op_end(); I != E; ++I) { in coverLoop()
2339 for (auto &In : *B) { in coverLoop()
2340 if (isa<BranchInst>(In) || isa<DbgInfoIntrinsic>(In)) in coverLoop()
[all …]
H A DHexagonBlockRanges.cpp161 for (auto &In : B) { in InstrIndexMap() local
162 if (In.isDebugInstr()) 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()
519 for (auto &In : M.Block) { in operator <<() local
[all …]
/freebsd/contrib/llvm-project/clang/lib/Testing/
H A DTestAST.cpp76 TestAST::TestAST(const TestInputs &In) { in TestAST() argument
85 bool ErrorOK = In.ErrorOK || llvm::StringRef(In.Code).contains("error-ok"); in TestAST()
90 std::vector<std::string> LangArgs = getCC1ArgsForTesting(In.Language); in TestAST()
93 for (const auto &S : In.ExtraArgs) in TestAST()
95 std::string Filename = In.FileName; in TestAST()
97 Filename = getFilenameForTesting(In.Language).str(); in TestAST()
110 llvm::MemoryBuffer::getMemBufferCopy(In.Code, Filename)); in TestAST()
111 for (const auto &Extra : In.ExtraFiles) in TestAST()
121 In.MakeAction ? In.MakeAction() : std::make_unique<SyntaxOnlyAction>(); in TestAST()
/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/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/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 … "${:Uone two three:@${:Ubar:S,b,v,}@+${var}+@} != "+one+ +two+ +three+"": In the :@ modifier, the…
3 make: "varmod-loop-varname.mk" line 89: while evaluating variable "1 2 3": In the :@ modifier, the …
5 make: "varmod-loop-varname.mk" line 96: while evaluating variable "1 2 3": In the :@ modifier, the …
7 make: "varmod-loop-varname.mk" line 103: while evaluating variable "1 2 3": In the :@ modifier, the…
/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/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";
H A Dimx8mp-verdin-dev.dtsi33 "LAUX", "Line In",
34 "RAUX", "Line In",
35 "LMICP", "Mic In",
36 "RMICP", "Mic In";
41 "Microphone", "Mic In",
42 "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/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/Option/
H A DOptTable.cpp177 for (auto Prefix : In.Prefixes) in optionMatches()
178 if (Option.ends_with(In.getName())) in optionMatches()
191 const Info &In = OptionInfos[I]; in suggestValueCompletions() local
192 if (!In.Values || !optionMatches(In, Option)) 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()
217 if (In.Flags & DisableFlags) in findByPrefix()
220 for (auto Prefix : In.Prefixes) { in findByPrefix()
222 if (In.HelpText) in findByPrefix()
[all …]
/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);
/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()

12345678910>>...75