Searched refs:In (Results 1 - 25 of 118) sorted by relevance

12345

/freebsd-11.0-release/contrib/bmake/unit-tests/
H A Dsysv.exp6 In the Sun
H A Dsysv.mk26 @echo ${In:L:%=% ${SUN}}
/freebsd-11.0-release/contrib/llvm/lib/Target/Hexagon/
H A DHexagonGenExtract.cpp68 bool convert(Instruction *In);
84 bool HexagonGenExtract::convert(Instruction *In) { argument
88 BasicBlock *BB = In->getParent();
94 bool Match = match(In, m_And(m_Shl(m_LShr(m_Value(BF), m_ConstantInt(CSR)),
101 Match = match(In, m_And(m_Shl(m_AShr(m_Value(BF), m_ConstantInt(CSR)),
109 Match = match(In, m_And(m_Shl(m_Value(BF), m_ConstantInt(CSL)),
118 Match = match(In, m_And(m_LShr(m_Value(BF), m_ConstantInt(CSR)),
125 Match = match(In, m_And(m_AShr(m_Value(BF), m_ConstantInt(CSR)),
132 Match = match(In, m_Shl(m_LShr(m_Value(BF), m_ConstantInt(CSR)),
139 Match = match(In, m_Sh
231 Instruction *In = &*I; local
[all...]
H A DRDFGraph.cpp564 // In theory, the lane information could be used to determine register
675 bool TargetOperandInfo::isPreserving(const MachineInstr &In, unsigned OpNum) argument
677 return TII.isPredicated(&In);
681 bool TargetOperandInfo::isClobbering(const MachineInstr &In, unsigned OpNum) argument
683 if (In.isCall())
684 if (In.getOperand(OpNum).isImplicit())
690 bool TargetOperandInfo::isFixedReg(const MachineInstr &In, unsigned OpNum) argument
692 if (In.isCall() || In.isReturn())
694 const MCInstrDesc &D = In
1167 buildStmt(NodeAddr<BlockNode*> BA, MachineInstr &In) argument
[all...]
/freebsd-11.0-release/share/doc/psd/20.ipctut/
H A Dsocketpair.c34 #define DATA1 "In Xanadu, did Kublai Khan . . ."
/freebsd-11.0-release/sys/contrib/dev/acpica/components/resources/
H A Drsxface.c56 #define ACPI_COPY_FIELD(Out, In, Field) ((Out)->Field = (In)->Field)
57 #define ACPI_COPY_ADDRESS(Out, In) \
58 ACPI_COPY_FIELD(Out, In, ResourceType); \
59 ACPI_COPY_FIELD(Out, In, ProducerConsumer); \
60 ACPI_COPY_FIELD(Out, In, Decode); \
61 ACPI_COPY_FIELD(Out, In, MinAddressFixed); \
62 ACPI_COPY_FIELD(Out, In, MaxAddressFixed); \
63 ACPI_COPY_FIELD(Out, In, Info); \
64 ACPI_COPY_FIELD(Out, In, Addres
[all...]
/freebsd-11.0-release/sys/contrib/dev/acpica/components/utilities/
H A Dutmisc.c147 } In; local
153 In.Value = Value;
155 Out.Bytes[0] = In.Bytes[3];
156 Out.Bytes[1] = In.Bytes[2];
157 Out.Bytes[2] = In.Bytes[1];
158 Out.Bytes[3] = In.Bytes[0];
/freebsd-11.0-release/contrib/llvm/lib/LineEditor/
H A DLineEditor.cpp193 LineEditor::LineEditor(StringRef ProgName, StringRef HistoryPath, FILE *In, argument
206 Data->EL = ::el_init(ProgName.str().c_str(), In, Out, Err);
277 FILE *In; member in struct:LineEditor::InternalData
281 LineEditor::LineEditor(StringRef ProgName, StringRef HistoryPath, FILE *In, argument
284 Data->In = In;
301 char *Res = ::fgets(Buf, sizeof(Buf), Data->In);
/freebsd-11.0-release/contrib/llvm/lib/Transforms/IPO/
H A DLoopExtractor.cpp204 std::ifstream In(Filename);
205 if (!In.good()) {
210 while (In) {
212 In >> FunctionName;
213 In >> BlockName;
H A DInternalize.cpp98 std::ifstream In(Filename);
99 if (!In.good()) {
104 while (In) {
106 In >> Symbol;
/freebsd-11.0-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp597 Value *In = ICI->getOperand(0);
598 Value *Sh = ConstantInt::get(In->getType(),
599 In->getType()->getScalarSizeInBits() - 1);
600 In = Builder->CreateLShr(In, Sh, In->getName() + ".lobit");
601 if (In->getType() != CI.getType())
602 In = Builder->CreateIntCast(In, CI.getType(), false/*ZExt*/);
605 Constant *One = ConstantInt::get(In
643 Value *In = ICI->getOperand(0); local
983 Value *In = Builder->CreateAShr(Op0, Sh, Op0->getName()+".lobit"); local
1005 Value *In = ICI->getOperand(0); local
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Target/WebAssembly/
H A DWebAssemblyISelLowering.cpp427 for (const auto &In : Ins) {
428 assert(!In.Flags.isByVal() && "byval is not valid for return values");
429 assert(!In.Flags.isNest() && "nest is not valid for return values");
430 if (In.Flags.isInAlloca())
432 if (In.Flags.isInConsecutiveRegs())
434 if (In.Flags.isInConsecutiveRegsLast())
437 // Ignore In.getOrigAlign() because all our arguments are passed in
439 Tys.push_back(In.VT);
511 for (const ISD::InputArg &In : Ins) {
512 if (In
[all...]
/freebsd-11.0-release/tools/tools/mid/
H A Dmid-index58 } elsif (/^In-Reply-to:\s+[^<]*\<([^$idsep]+)/oi) {
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/MIRParser/
H A DMIRParser.cpp92 bool parseMachineFunction(yaml::Input &In, Module &M, bool NoLLVMIR);
207 yaml::Input In(SM.getMemoryBuffer(SM.getMainFileID())->getBuffer(),
209 In.setContext(&In);
211 if (!In.setCurrentDocument()) {
212 if (In.error())
223 dyn_cast_or_null<yaml::BlockScalarNode>(In.getCurrentNode())) {
231 In.nextDocument();
232 if (!In.setCurrentDocument())
242 if (parseMachineFunction(In, *
250 parseMachineFunction(yaml::Input &In, Module &M, bool NoLLVMIR) argument
[all...]
/freebsd-11.0-release/crypto/openssl/crypto/modes/asm/
H A Dghashv8-armx.pl216 { my ($Xln,$Xmn,$Xhn,$In) = map("q$_",(4..7));
227 vext.8 $In,$t1,$t1,#8
229 vpmull.p64 $Xln,$H,$In @ H��Ii+1
230 veor $t1,$t1,$In @ Karatsuba pre-processing
231 vpmull2.p64 $Xhn,$H,$In
267 vext.8 $In,$t1,$t1,#8
270 vpmull.p64 $Xln,$H,$In @ H��Ii+1
276 veor $t1,$t1,$In @ Karatsuba pre-processing
278 vpmull2.p64 $Xhn,$H,$In
/freebsd-11.0-release/contrib/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelDAGToDAG.cpp126 bool SelectVOP3Mods(SDValue In, SDValue &Src, SDValue &SrcMods) const;
127 bool SelectVOP3NoMods(SDValue In, SDValue &Src, SDValue &SrcMods) const;
128 bool SelectVOP3Mods0(SDValue In, SDValue &Src, SDValue &SrcMods,
130 bool SelectVOP3NoMods0(SDValue In, SDValue &Src, SDValue &SrcMods,
133 bool SelectVOP3Mods0Clamp(SDValue In, SDValue &Src, SDValue &SrcMods,
135 bool SelectVOP3Mods0Clamp0OMod(SDValue In, SDValue &Src, SDValue &SrcMods,
1282 // the format expected by the S_BFE_I32 / S_BFE_U32. In the second
1368 bool AMDGPUDAGToDAGISel::SelectVOP3Mods(SDValue In, SDValue &Src, argument
1373 Src = In;
1385 SrcMods = CurDAG->getTargetConstant(Mods, SDLoc(In), MV
1390 SelectVOP3NoMods(SDValue In, SDValue &Src, SDValue &SrcMods) const argument
1396 SelectVOP3Mods0(SDValue In, SDValue &Src, SDValue &SrcMods, SDValue &Clamp, SDValue &Omod) const argument
1407 SelectVOP3NoMods0(SDValue In, SDValue &Src, SDValue &SrcMods, SDValue &Clamp, SDValue &Omod) const argument
1417 SelectVOP3Mods0Clamp(SDValue In, SDValue &Src, SDValue &SrcMods, SDValue &Omod) const argument
1426 SelectVOP3Mods0Clamp0OMod(SDValue In, SDValue &Src, SDValue &SrcMods, SDValue &Clamp, SDValue &Omod) const argument
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Target/
H A DTargetRecip.cpp27 // In addition, the command-line interface recognizes the global parameters
49 static bool parseRefinementStep(StringRef In, size_t &Position, argument
52 Position = In.find(RefStepToken);
56 StringRef RefStepString = In.substr(Position + 1);
/freebsd-11.0-release/contrib/wpa/src/eapol_auth/
H A Deapol_auth_sm_i.h20 typedef enum { Both = 0, In = 1 } ControlledDirection; enumerator in enum:__anon5744
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Basic/
H A DVirtualFileSystem.cpp53 Status Status::copyWithNewName(const Status &In, StringRef NewName) { argument
54 return Status(NewName, In.getUniqueID(), In.getLastModificationTime(),
55 In.getUser(), In.getGroup(), In.getSize(), In.getType(),
56 In.getPermissions());
59 Status Status::copyWithNewName(const file_status &In, StringRef NewName) { argument
60 return Status(NewName, In
[all...]
/freebsd-11.0-release/contrib/llvm/include/llvm/LineEditor/
H A DLineEditor.h30 /// \param In The input stream used by the editor.
33 LineEditor(StringRef ProgName, StringRef HistoryPath = "", FILE *In = stdin,
/freebsd-11.0-release/contrib/llvm/lib/TableGen/
H A DTGLexer.h46 Bit, Bits, Class, Code, Dag, Def, Foreach, Defm, Field, In, Int, Let, List, enumerator in enum:llvm::tgtok::TokKind
/freebsd-11.0-release/contrib/dtc/Documentation/
H A Ddtc-paper.tex109 In May 2005 \benh implemented a new approach to handling the device
132 kernel that parses it and the bootloader that generates it. In
138 its internals. In practice that means we must not use pointers
143 having to effectively regenerate the whole flattened tree. In
253 In many cases a flat tree can be simpler than a typical OF provided
269 bindings for many modern buses and devices. In particular, embedded
277 tree. In OF, each node in the tree has an associated phandle, a
278 32-bit integer that uniquely identifies the node\footnote{In practice
290 In the flattened tree, a node's phandle is represented by a special
305 node's \texttt{reg} property. In additio
[all...]
/freebsd-11.0-release/contrib/openpam/
H A Dmkpkgng.in136 Linux-PAM, plus some innovations of its own. In areas where these
/freebsd-11.0-release/contrib/pam_modules/pam_passwdqc/
H A Dpam_passwdqc.spec14 PAM-aware password changing programs, such as passwd(1). In addition
/freebsd-11.0-release/contrib/gcc/config/mips/
H A Dirix-crti.asm19 In theory, the SGI model should allow the crti, crtn and intermediate code

Completed in 229 milliseconds

12345