| /netbsd-src/external/gpl3/gcc/dist/gcc/config/arm/ |
| H A D | constraints.md | 25 ;; In ARM state, 'l' is an alias for 'r' 52 In ARM/Thumb-2 state a valid address for load instruction with XEXP (op, 0) 70 "@internal In Thumb-2 state a constant in range 1 to 16" 75 "@internal In Thumb-2 state a constant in range 0 to 7" 80 "@internal In Thumb-2 state a constant in range 1 to 8" 85 "@internal In Thumb-2 state a constant in range 0 to 15" 90 "@internal In Thumb-2 state a constant in range 0 to 31" 95 "@internal In Thumb-2 state a constant in range 1 to 32" 100 "@internal In Thumb-2 state a constant is one among 1, 2, 4 and 8" 123 "In Thumb state the core registers @code{r0}-@code{r7}.") [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/config/arm/ |
| H A D | constraints.md | 25 ;; In ARM state, 'l' is an alias for 'r' 52 In ARM/Thumb-2 state a valid address for load instruction with XEXP (op, 0) 70 "@internal In Thumb-2 state a constant in range 1 to 16" 75 "@internal In Thumb-2 state a constant in range 0 to 7" 80 "@internal In Thumb-2 state a constant in range 1 to 8" 85 "@internal In Thumb-2 state a constant in range 0 to 15" 90 "@internal In Thumb-2 state a constant in range 0 to 31" 95 "@internal In Thumb-2 state a constant in range 1 to 32" 100 "@internal In Thumb-2 state a constant is one among 1, 2, 4 and 8" 127 "In Thumb state the core registers @code{r0}-@code{r7}.") [all …]
|
| /netbsd-src/external/apache2/llvm/dist/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 | 594 void promoteTo(Instruction *In, IntegerType *DestTy, BasicBlock *LoopB); 598 bool findCycle(Value *Out, Value *In, ValueSeq &Cycle); 995 Instruction *In = dyn_cast<Instruction>(Val); in isPromotableTo() local 996 if (!In) in isPromotableTo() 1000 switch (In->getOpcode()) { in isPromotableTo() 1011 if (CmpInst *CI = cast<CmpInst>(In)) in isPromotableTo() 1015 return In->hasNoSignedWrap() && In->hasNoUnsignedWrap(); in isPromotableTo() 1020 void PolynomialMultiplyRecognize::promoteTo(Instruction *In, in promoteTo() argument 1022 Type *OrigTy = In->getType(); in promoteTo() 1026 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 …]
|
| /netbsd-src/sys/external/bsd/acpica/dist/resources/ |
| H A D | rsxface.c | 56 #define ACPI_COPY_FIELD(Out, In, Field) ((Out)->Field = (In)->Field) argument 57 #define ACPI_COPY_ADDRESS(Out, In) \ argument 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, Address.Granularity); \ 65 ACPI_COPY_FIELD(Out, In, Address.Minimum); \ [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Option/ |
| H A D | OptTable.cpp | 198 static bool optionMatches(const OptTable::Info &In, StringRef Option) { in optionMatches() argument 199 if (In.Prefixes) { in optionMatches() 200 StringRef InName(In.Name); in optionMatches() 201 for (size_t I = 0; In.Prefixes[I]; I++) in optionMatches() 203 if (Option.slice(0, Option.size() - InName.size()) == In.Prefixes[I]) in optionMatches() 216 const Info &In = OptionInfos[I]; in suggestValueCompletions() local 217 if (!In.Values || !optionMatches(In, Option)) in suggestValueCompletions() 221 StringRef(In.Values).split(Candidates, ",", -1, false); in suggestValueCompletions() 236 const Info &In = OptionInfos[I]; in findByPrefix() local 237 if (!In.Prefixes || (!In.HelpText && !In.GroupID)) in findByPrefix() [all …]
|
| /netbsd-src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
| H A D | am3517-evm-ui.dtsi | 14 "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";
|
| H A D | mt2701-evb.dts | 36 "AIN2L", "Tuner In", 37 "AIN2R", "Tuner In", 38 "AIN3L", "Satellite Tuner In", 39 "AIN3R", "Satellite Tuner In", 40 "AIN3L", "AUX In", 41 "AIN3R", "AUX In";
|
| /netbsd-src/usr.bin/make/unit-tests/ |
| H A D | opt-debug-errors-jobs.exp | 5 *** 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 D | varmod-loop-varname.exp | 1 make: "varmod-loop-varname.mk" line 17: In the :@ modifier, the variable name "${:Ubar:S,b,v,}" must not contain a dollar 3 make: "varmod-loop-varname.mk" line 87: In the :@ modifier, the variable name "v$" must not contain a dollar 5 make: "varmod-loop-varname.mk" line 93: In the :@ modifier, the variable name "v$$" must not contain a dollar 7 make: "varmod-loop-varname.mk" line 99: In the :@ modifier, the variable name "v$$$" must not contain a dollar
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUISelDAGToDAG.cpp | 229 bool SelectVOP3Mods_NNaN(SDValue In, SDValue &Src, SDValue &SrcMods) const; 230 bool SelectVOP3ModsImpl(SDValue In, SDValue &Src, unsigned &SrcMods, 232 bool SelectVOP3Mods(SDValue In, SDValue &Src, SDValue &SrcMods) const; 233 bool SelectVOP3BMods(SDValue In, SDValue &Src, SDValue &SrcMods) const; 234 bool SelectVOP3NoMods(SDValue In, SDValue &Src) const; 235 bool SelectVOP3Mods0(SDValue In, SDValue &Src, SDValue &SrcMods, 237 bool SelectVOP3BMods0(SDValue In, SDValue &Src, SDValue &SrcMods, 239 bool SelectVOP3NoMods0(SDValue In, SDValue &Src, SDValue &SrcMods, 242 bool SelectVOP3OMods(SDValue In, SDValue &Src, 245 bool SelectVOP3PMods(SDValue In, SDValue &Src, SDValue &SrcMods) const; [all …]
|
| /netbsd-src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/dataflow/ |
| H A D | DataFlow.cpp | 134 FILE *In = fopen(Input, "r"); in main() local 135 assert(In); in main() 136 fseek(In, 0, SEEK_END); in main() 137 InputLen = ftell(In); in main() 138 fseek(In, 0, SEEK_SET); in main() 140 size_t NumBytesRead = fread(Buf, 1, InputLen, In); in main() 143 fclose(In); in main()
|
| /netbsd-src/external/mit/libuv/dist/docs/src/ |
| H A D | migration_010_100.rst | 15 In libuv 0.10 (and previous versions), loops were created with `uv_loop_new`, which 46 Error handling had a major overhaul in libuv 1.0. In general, functions and status parameters 50 In 1.0, functions and status parameters contain the actual error code, which is 0 for success, or 78 In libuv 0.10 Unix used a threadpool which defaulted to 4 threads, while Windows used the 82 In 1.0, we unified both implementations, so Windows now uses the same implementation Unix 90 In libuv 0.10 the callback had to return a filled :c:type:`uv_buf_t` by value: 98 In libuv 1.0 a pointer to a buffer is passed to the callback, which the user 190 In libuv 0.10 (and earlier versions) the `uv_read2_start` function was used to start reading 203 In libuv 1.0, `uv_read2_start` was removed, and the user needs to check if there are pending 238 libuv 0.10. In 1.0, this function got renamed to :c:func:`uv_fs_scandir`, since it's [all …]
|
| /netbsd-src/sys/external/bsd/acpica/dist/utilities/ |
| H A D | utmisc.c | 148 } In; in AcpiUtDwordByteSwap() local 154 In.Value = Value; in AcpiUtDwordByteSwap() 156 Out.Bytes[0] = In.Bytes[3]; in AcpiUtDwordByteSwap() 157 Out.Bytes[1] = In.Bytes[2]; in AcpiUtDwordByteSwap() 158 Out.Bytes[2] = In.Bytes[1]; in AcpiUtDwordByteSwap() 159 Out.Bytes[3] = In.Bytes[0]; in AcpiUtDwordByteSwap()
|
| /netbsd-src/external/bsd/nvi/docs/internals/ |
| H A D | structures | 26 In general, functions are always passed an SCR structure, which usually 40 TEXT In nvi/cut.h. This structure describes a portion of a line, 44 CB In nvi/cut.h. A cut buffer. A cut buffer is a place to 50 MARK In nvi/mark.h. A cursor position, consisting of a line number 53 MSG In nvi/msg.h. A chain of messages for the user. 55 SEQ In nvi/seq.h. An abbreviation or a map entry. 60 EXCMD In nvi/ex/ex.h. The structure that gets passed around to the 65 VICMD In nvi/vi/vi.h. The structure that gets passed around to the
|
| H A D | context | 3 In historic vi, the previous context mark was always set: 16 In historic vi, the previous context mark was set if the 22 In historic vi, the previous context mark was set if the 30 In historic vi, the previous context mark was set in non-visual
|
| /netbsd-src/external/cddl/dtracetoolkit/dist/Docs/Examples/ |
| H A D | iopending_example.txt | 31 disk events were "pending" completion. In the above example the disks are 55 In the above output there was a little disk activity. For 390 samples there 61 In the following example iopending is run during heavy disk activity. We 121 In the first output, most of the time (67%) there was 1 event pending, 122 and for a short time there were 8 events pending. In the second output we
|
| /netbsd-src/external/cddl/dtracetoolkit/dist/Examples/ |
| H A D | iopending_example.txt | 31 disk events were "pending" completion. In the above example the disks are 55 In the above output there was a little disk activity. For 390 samples there 61 In the following example iopending is run during heavy disk activity. We 121 In the first output, most of the time (67%) there was 1 event pending, 122 and for a short time there were 8 events pending. In the second output we
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
| H A D | UnifyLoopExits.cpp | 118 for (auto In : Incoming) { in INITIALIZE_PASS_DEPENDENCY() local 119 LLVM_DEBUG(dbgs() << "predecessor " << In->getName() << ": "); in INITIALIZE_PASS_DEPENDENCY() 120 if (Def->getParent() == In || DT.dominates(Def, In)) { in INITIALIZE_PASS_DEPENDENCY() 122 NewPhi->addIncoming(Def, In); in INITIALIZE_PASS_DEPENDENCY() 125 NewPhi->addIncoming(UndefValue::get(Def->getType()), In); in INITIALIZE_PASS_DEPENDENCY()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ |
| H A D | llvm-objcopy.cpp | 141 static Error executeObjcopyOnIHex(ConfigManager &ConfigMgr, MemoryBuffer &In, in executeObjcopyOnIHex() argument 148 return elf::executeObjcopyOnIHex(ConfigMgr.getCommonConfig(), *ELFConfig, In, in executeObjcopyOnIHex() 155 MemoryBuffer &In, raw_ostream &Out) { in executeObjcopyOnRawBinary() argument 169 return elf::executeObjcopyOnRawBinary(Config, *ELFConfig, In, Out); in executeObjcopyOnRawBinary() 178 object::Binary &In, raw_ostream &Out) { in executeObjcopyOnBinary() argument 179 if (auto *ELFBinary = dyn_cast<object::ELFObjectFileBase>(&In)) { in executeObjcopyOnBinary() 186 } else if (auto *COFFBinary = dyn_cast<object::COFFObjectFile>(&In)) { in executeObjcopyOnBinary() 193 } else if (auto *MachOBinary = dyn_cast<object::MachOObjectFile>(&In)) { in executeObjcopyOnBinary() 201 dyn_cast<object::MachOUniversalBinary>(&In)) { in executeObjcopyOnBinary() 204 } else if (auto *WasmBinary = dyn_cast<object::WasmObjectFile>(&In)) { in executeObjcopyOnBinary()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineCasts.cpp | 952 Value *In = Cmp->getOperand(0); in transformZExtICmp() local 953 Value *Sh = ConstantInt::get(In->getType(), in transformZExtICmp() 954 In->getType()->getScalarSizeInBits() - 1); in transformZExtICmp() 955 In = Builder.CreateLShr(In, Sh, In->getName() + ".lobit"); in transformZExtICmp() 956 if (In->getType() != Zext.getType()) in transformZExtICmp() 957 In = Builder.CreateIntCast(In, Zext.getType(), false /*ZExt*/); in transformZExtICmp() 960 Constant *One = ConstantInt::get(In->getType(), 1); in transformZExtICmp() 961 In = Builder.CreateXor(In, One, In->getName() + ".not"); in transformZExtICmp() 964 return replaceInstUsesWith(Zext, In); in transformZExtICmp() 994 Value *In = Cmp->getOperand(0); in transformZExtICmp() local [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| H A D | RDFGraph.cpp | 598 bool TargetOperandInfo::isPreserving(const MachineInstr &In, unsigned OpNum) in isPreserving() argument 600 return TII.isPredicated(In); in isPreserving() 604 bool TargetOperandInfo::isClobbering(const MachineInstr &In, unsigned OpNum) in isClobbering() argument 606 const MachineOperand &Op = In.getOperand(OpNum); in isClobbering() 610 if (In.isCall()) in isClobbering() 617 bool TargetOperandInfo::isFixedReg(const MachineInstr &In, unsigned OpNum) in isFixedReg() argument 619 if (In.isCall() || In.isReturn() || In.isInlineAsm()) in isFixedReg() 622 if (In.isBranch()) in isFixedReg() 623 for (const MachineOperand &O : In.operands()) in isFixedReg() 627 const MCInstrDesc &D = In.getDesc(); in isFixedReg() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/ |
| H A D | ELFObjcopy.h | 27 const ELFConfig &ELFConfig, MemoryBuffer &In, 30 const ELFConfig &ELFConfig, MemoryBuffer &In, 34 object::ELFObjectFileBase &In, raw_ostream &Out);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/LineEditor/ |
| H A D | LineEditor.cpp | 198 LineEditor::LineEditor(StringRef ProgName, StringRef HistoryPath, FILE *In, in LineEditor() argument 211 Data->EL = ::el_init(ProgName.str().c_str(), In, Out, Err); in LineEditor() 282 FILE *In; member 286 LineEditor::LineEditor(StringRef ProgName, StringRef HistoryPath, FILE *In, in LineEditor() argument 289 Data->In = In; in LineEditor() 306 char *Res = ::fgets(Buf, sizeof(Buf), Data->In); in readLine()
|