| /openbsd-src/gnu/usr.bin/gcc/gcc/f/ |
| H A D | info-k.def | 30 form "<file>: In function `foo': <error message>". */ 32 FFEINFO_KIND (FFEINFO_kindNONE, "In unknown kind", "") 33 FFEINFO_KIND (FFEINFO_kindENTITY, "In entity", "e") 34 FFEINFO_KIND (FFEINFO_kindFUNCTION, "In function", "f") 35 FFEINFO_KIND (FFEINFO_kindSUBROUTINE, "In subroutine", "u") 36 FFEINFO_KIND (FFEINFO_kindPROGRAM, "In program", "p") 37 FFEINFO_KIND (FFEINFO_kindBLOCKDATA, "In block-data unit", "b") 38 FFEINFO_KIND (FFEINFO_kindCOMMON, "In common block", "c") 39 FFEINFO_KIND (FFEINFO_kindCONSTRUCT, "In construct", ":") 40 FFEINFO_KIND (FFEINFO_kindNAMELIST, "In namelist", "n") [all …]
|
| /openbsd-src/gnu/gcc/gcc/config/arm/ |
| H A D | constraints.md | 26 ;; In ARM state, 'l' is an alias for 'r' 56 "In Thumb state the core registers @code{r0}-@code{r7}.") 59 "In Thumb state the core registers @code{r8}-@code{r15}.") 73 "In ARM state a constant that can be used as an immediate value in a Data 74 Processing instruction. In Thumb state a constant in the range 0-255." 80 "In ARM state a constant in the range @minus{}4095-4095. In Thumb state 87 "In ARM state a constant that satisfies the @code{I} constraint if inverted. 88 In Thumb state a constant that satisfies the @code{I} constraint multiplied 95 "In ARM state a constant that satisfies the @code{I} constraint if negated. 96 In Thumb state a constant in the range @minus{}7-7." [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/Hexagon/ |
| H A D | HexagonGenExtract.cpp | 80 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 D | HexagonLoopIdiomRecognition.cpp | 592 void promoteTo(Instruction *In, IntegerType *DestTy, BasicBlock *LoopB); 596 bool findCycle(Value *Out, Value *In, ValueSeq &Cycle); 993 Instruction *In = dyn_cast<Instruction>(Val); in isPromotableTo() local 994 if (!In) in isPromotableTo() 998 switch (In->getOpcode()) { in isPromotableTo() 1009 if (CmpInst *CI = cast<CmpInst>(In)) in isPromotableTo() 1013 return In->hasNoSignedWrap() && In->hasNoUnsignedWrap(); in isPromotableTo() 1018 void PolynomialMultiplyRecognize::promoteTo(Instruction *In, in promoteTo() argument 1020 Type *OrigTy = In->getType(); in promoteTo() 1024 if (!In->getType()->isIntegerTy(1)) in promoteTo() [all …]
|
| H A D | HexagonBlockRanges.cpp | 161 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() 315 for (auto &In : B) { in computeInitialLiveRanges() local 316 if (In.isDebugInstr()) in computeInitialLiveRanges() 318 IndexType Index = IndexMap.getIndex(&In); in computeInitialLiveRanges() 320 for (auto &Op : In.operands()) { in computeInitialLiveRanges() 336 for (auto &Op : In.operands()) { in computeInitialLiveRanges() 350 for (auto &Op : In.operands()) { in computeInitialLiveRanges() [all …]
|
| H A D | HexagonVectorCombine.cpp | 142 bool isSafeToMoveBeforeInBB(const Instruction &In, 255 std::optional<MemoryLocation> getLocation(const Instruction &In) const; 256 std::optional<AddrInfo> getAddrInfo(Instruction &In) const; 274 DepList getUpwardDeps(Instruction *In, Instruction *Base) const; 363 auto getNumSignificantBits(Value *V, Instruction *In) const 367 auto matchFxpMul(Instruction &In) const -> std::optional<FxpOp>; 368 auto processFxpMul(Instruction &In, const FxpOp &Op) const -> Value *; 370 auto processFxpMulChopped(IRBuilderBase &Builder, Instruction &In, 421 template <typename T> T *isCandidate(Instruction *In) { in isCandidate() argument 422 return dyn_cast<T>(In); in isCandidate() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUISelDAGToDAG.h | 218 bool SelectVOP3ModsImpl(SDValue In, SDValue &Src, unsigned &SrcMods, 220 bool SelectVOP3Mods(SDValue In, SDValue &Src, SDValue &SrcMods) const; 221 bool SelectVOP3BMods(SDValue In, SDValue &Src, SDValue &SrcMods) const; 222 bool SelectVOP3NoMods(SDValue In, SDValue &Src) const; 223 bool SelectVOP3Mods0(SDValue In, SDValue &Src, SDValue &SrcMods, 225 bool SelectVOP3BMods0(SDValue In, SDValue &Src, SDValue &SrcMods, 227 bool SelectVOP3NoMods0(SDValue In, SDValue &Src, SDValue &SrcMods, 230 bool SelectVINTERPModsImpl(SDValue In, SDValue &Src, SDValue &SrcMods, 232 bool SelectVINTERPMods(SDValue In, SDValue &Src, SDValue &SrcMods) const; 233 bool SelectVINTERPModsHi(SDValue In, SDValue &Src, SDValue &SrcMods) const; [all …]
|
| H A D | AMDGPUISelDAGToDAG.cpp | 51 static bool isExtractHiElt(SDValue In, SDValue &Out) { in isExtractHiElt() argument 52 In = stripBitcast(In); in isExtractHiElt() 54 if (In.getOpcode() == ISD::EXTRACT_VECTOR_ELT) { in isExtractHiElt() 55 if (ConstantSDNode *Idx = dyn_cast<ConstantSDNode>(In.getOperand(1))) { in isExtractHiElt() 58 Out = In.getOperand(0); in isExtractHiElt() 63 if (In.getOpcode() != ISD::TRUNCATE) in isExtractHiElt() 66 SDValue Srl = In.getOperand(0); in isExtractHiElt() 81 static SDValue stripExtractLoElt(SDValue In) { in stripExtractLoElt() argument 82 if (In.getOpcode() == ISD::EXTRACT_VECTOR_ELT) { in stripExtractLoElt() 83 if (ConstantSDNode *Idx = dyn_cast<ConstantSDNode>(In.getOperand(1))) { in stripExtractLoElt() [all …]
|
| /openbsd-src/lib/libkeynote/ |
| H A D | HOWTO.add.crypto | 16 - In auxil.c, function keynote_keyhash(), add to the switch statement 19 - In signature.c: 20 - In keynote_free_key(), add code to free any memory allocated for 22 - In keynote_get_sig_algorithm(), add code that checks whether a 27 - In kn_decode_key(), add code that converts a bit string to 31 - In kn_keycompare(), add code that compares two keys and 33 - In keynote_signverify_assertion, add code that verifies a 36 - In keynote-keygen.c, replicate the code for DSA key generation to 43 - In signature.h, if the length of the new hash function's result is 46 - In signature.c: [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/ObjCopy/ |
| H A D | ObjCopy.cpp | 39 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()
|
| /openbsd-src/gnu/llvm/clang/lib/Testing/ |
| H A D | TestAST.cpp | 75 TestAST::TestAST(const TestInputs &In) { in TestAST() argument 84 bool ErrorOK = In.ErrorOK || llvm::StringRef(In.Code).contains("error-ok"); in TestAST() 89 std::vector<std::string> LangArgs = getCC1ArgsForTesting(In.Language); in TestAST() 92 for (const auto &S : In.ExtraArgs) in TestAST() 94 std::string Filename = getFilenameForTesting(In.Language).str(); in TestAST() 107 llvm::MemoryBuffer::getMemBufferCopy(In.Code, Filename)); in TestAST() 108 for (const auto &Extra : In.ExtraFiles) in TestAST() 118 In.MakeAction ? In.MakeAction() : std::make_unique<SyntaxOnlyAction>(); in TestAST()
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/fuzzer/dataflow/ |
| H A D | DataFlow.cpp | 165 FILE *In = fopen(Input, "r"); in main() local 166 assert(In); in main() 167 fseek(In, 0, SEEK_END); in main() 168 InputLen = ftell(In); in main() 169 fseek(In, 0, SEEK_SET); in main() 171 size_t NumBytesRead = fread(Buf, 1, InputLen, In); in main() 173 fclose(In); in main()
|
| /openbsd-src/regress/usr.bin/mandoc/roff/ll/ |
| H A D | basic.out_ascii | 7 This is a longer text to demonstrate the default line length. In ASCII 11 demonstrate shorter lines. In 16 In ASCII mode, it is expected to break at column 78. 18 …This is another long text to demonstrate longer lines. In ASCII mode, it is not expected to break… 20 This is a longer text after switching to an invalid line length. In
|
| /openbsd-src/regress/usr.sbin/ocspcheck/ |
| H A D | index.txt | 1 V 420817003032Z 1000 unknown /C=CA/ST=Edmonton/O=Muppet Show/OU=Pigs In Space OCSP division/CN=loc… 2 R 420817003033Z 200921003033Z 1001 unknown /C=CA/ST=Edmonton/O=Muppet Show/OU=Pigs In Space Revoked… 3 V 420817003033Z 1002 unknown /C=CA/ST=Edmonton/O=Muppet Show/OU=Pigs In Space Server Certs/CN=loca… 4 V 420817003033Z 1003 unknown /C=CA/ST=Edmonton/O=Muppet Show/OU=Pigs In Space Client Certs/CN=loca…
|
| /openbsd-src/gnu/llvm/llvm/lib/Option/ |
| H A D | OptTable.cpp | 176 static bool optionMatches(const OptTable::Info &In, StringRef Option) { in optionMatches() argument 177 for (auto Prefix : In.Prefixes) in optionMatches() 178 if (Option.endswith(In.Name)) in optionMatches() 179 if (Option.slice(0, Option.size() - In.Name.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() 211 const Info &In = OptionInfos[I]; in findByPrefix() local 212 if (In.Prefixes.empty() || (!In.HelpText && !In.GroupID)) in findByPrefix() 214 if (In.Flags & DisableFlags) in findByPrefix() [all …]
|
| /openbsd-src/regress/usr.bin/mandoc/mdoc/In/ |
| H A D | noarg.out_lint | 1 mandoc: noarg.in:12:2: WARNING: skipping empty macro: In 2 mandoc: noarg.in:19:2: WARNING: skipping empty macro: In 3 mandoc: noarg.in:16:11: STYLE: no blank before trailing delimiter: In math.h:
|
| /openbsd-src/usr.bin/vi/docs/internals/ |
| H A D | context | 5 In historic vi, the previous context mark was always set: 18 In historic vi, the previous context mark was set if the 24 In historic vi, the previous context mark was set if the 32 In historic vi, the previous context mark was set in non-visual
|
| H A D | structures | 28 In general, functions are always passed an SCR structure, which usually 42 TEXT In nvi/cut.h. This structure describes a portion of a line, 46 CB In nvi/cut.h. A cut buffer. A cut buffer is a place to 52 MARK In nvi/mark.h. A cursor position, consisting of a line number 55 MSG In nvi/msg.h. A chain of messages for the user. 57 SEQ In nvi/seq.h. An abbreviation or a map entry. 62 EXCMD In nvi/ex/ex.h. The structure that gets passed around to the 67 VICMD In nvi/vi/vi.h. The structure that gets passed around to the
|
| /openbsd-src/gnu/usr.bin/perl/lib/unicore/ |
| H A D | mktables.lst | 269 lib/In/10_0.pl 270 lib/In/11_0.pl 271 lib/In/12_0.pl 272 lib/In/12_1.pl 273 lib/In/13_0.pl 274 lib/In/14_0.pl 275 lib/In/15_0.pl 276 lib/In/2_0.pl 277 lib/In/2_1.pl 278 lib/In/ [all...] |
| /openbsd-src/gnu/llvm/llvm/include/llvm/ObjCopy/ELF/ |
| H A D | ELFObjcopy.h | 31 const ELFConfig &ELFConfig, MemoryBuffer &In, 39 const ELFConfig &ELFConfig, MemoryBuffer &In, 47 object::ELFObjectFileBase &In, raw_ostream &Out);
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/ |
| H A D | UnifyLoopExits.cpp | 126 for (auto *In : Incoming) { in INITIALIZE_PASS_DEPENDENCY() local 127 LLVM_DEBUG(dbgs() << "predecessor " << In->getName() << ": "); in INITIALIZE_PASS_DEPENDENCY() 128 if (Def->getParent() == In || DT.dominates(Def, In)) { in INITIALIZE_PASS_DEPENDENCY() 130 NewPhi->addIncoming(Def, In); in INITIALIZE_PASS_DEPENDENCY() 133 NewPhi->addIncoming(UndefValue::get(Def->getType()), In); in INITIALIZE_PASS_DEPENDENCY()
|
| /openbsd-src/gnu/llvm/llvm/lib/LineEditor/ |
| H A D | LineEditor.cpp | 193 LineEditor::LineEditor(StringRef ProgName, StringRef HistoryPath, FILE *In, in LineEditor() argument 206 Data->EL = ::el_init(ProgName.str().c_str(), In, Out, Err); in LineEditor() 277 FILE *In; member 281 LineEditor::LineEditor(StringRef ProgName, StringRef HistoryPath, FILE *In, in LineEditor() argument 284 Data->In = In; in LineEditor() 301 char *Res = ::fgets(Buf, sizeof(Buf), Data->In); in readLine()
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/ |
| H A D | RDFGraph.cpp | 596 bool TargetOperandInfo::isPreserving(const MachineInstr &In, unsigned OpNum) in isPreserving() argument 598 return TII.isPredicated(In); in isPreserving() 602 bool TargetOperandInfo::isClobbering(const MachineInstr &In, unsigned OpNum) in isClobbering() argument 604 const MachineOperand &Op = In.getOperand(OpNum); in isClobbering() 608 if (In.isCall()) in isClobbering() 615 bool TargetOperandInfo::isFixedReg(const MachineInstr &In, unsigned OpNum) in isFixedReg() argument 617 if (In.isCall() || In.isReturn() || In.isInlineAsm()) in isFixedReg() 620 if (In.isBranch()) in isFixedReg() 621 for (const MachineOperand &O : In.operands()) in isFixedReg() 625 const MCInstrDesc &D = In.getDesc(); in isFixedReg() [all …]
|
| /openbsd-src/regress/usr.bin/mandoc/char/space/ |
| H A D | esct-mdoc.out_ascii | 7 In plain text: 20 In an unfilled display: 27 In a literal display:
|
| /openbsd-src/gnu/llvm/llvm/lib/Analysis/ |
| H A D | README.txt | 5 In test/Transforms/LoopStrengthReduce/quadradic-exit-value.ll, the 15 In addition to being much more complicated, it involves i65 arithmetic, 20 In formatValue in test/CodeGen/X86/lsr-delayed-fold.ll,
|