Home
last modified time | relevance | path

Searched refs:Input (Results 1 – 25 of 208) sorted by relevance

123456789

/freebsd-12.1/contrib/llvm/tools/clang/lib/Driver/
H A DAction.cpp165 : Action(InputClass, _Type), Input(_Input) {} in InputAction()
170 : Action(BindArchClass, Input), ArchName(ArchName) {} in BindArchAction()
308 : Action(Kind, Input, Type) {} in JobAction()
325 : JobAction(Kind, Input, OutputType) { in PrecompileJobAction()
339 : JobAction(AnalyzeJobClass, Input, OutputType) {} in AnalyzeJobAction()
344 : JobAction(MigrateJobClass, Input, OutputType) {} in MigrateJobAction()
349 : JobAction(CompileJobClass, Input, OutputType) {} in CompileJobAction()
354 : JobAction(BackendJobClass, Input, OutputType) {} in BackendJobAction()
359 : JobAction(AssembleJobClass, Input, OutputType) {} in AssembleJobAction()
380 : JobAction(Kind, Input, Type) { in VerifyJobAction()
[all …]
/freebsd-12.1/contrib/llvm/lib/Support/
H A DYAMLTraits.cpp56 Input::Input(StringRef InputContent, void *Ctxt, in Input() function in Input
64 Input::Input(MemoryBufferRef Input, void *Ctxt, in Input() argument
72 Input::~Input() = default;
77 void Input::HNode::anchor() {} in anchor()
83 bool Input::outputting() { in outputting()
108 bool Input::nextDocument() { in nextDocument()
126 void Input::beginMapping() { in beginMapping()
186 void Input::endMapping() { in endMapping()
220 void Input::endSequence() { in endSequence()
281 void Input::endEnumScalar() { in endEnumScalar()
[all …]
H A DYAMLParser.cpp64 if (Input.empty()) in getUnicodeEncoding()
70 if ( Input[1] == 0 in getUnicodeEncoding()
74 if (Input[1] == 0 && Input[2] == 0 && Input[3] != 0) in getUnicodeEncoding()
78 if (Input.size() >= 2 && Input[1] != 0) in getUnicodeEncoding()
82 if ( Input.size() >= 4 in getUnicodeEncoding()
84 && Input[2] == 0 in getUnicodeEncoding()
85 && Input[3] == 0) in getUnicodeEncoding()
88 if (Input.size() >= 2 && uint8_t(Input[1]) == 0xFE) in getUnicodeEncoding()
92 if (Input.size() >= 2 && uint8_t(Input[1]) == 0xFF) in getUnicodeEncoding()
104 if (Input.size() >= 4 && Input[1] == 0 && Input[2] == 0 && Input[3] == 0) in getUnicodeEncoding()
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/ADT/
H A DStringExtras.h57 return StringRef(reinterpret_cast<const char *>(Input.begin()), Input.size()); in toStringRef()
62 return {Input.bytes_begin(), Input.bytes_end()}; in arrayRefFromStringRef()
145 size_t Length = Input.size();
150 const unsigned char c = Input[i];
172 if (Input.empty()) in fromHex()
177 if (Input.size() % 2 == 1) { in fromHex()
179 Input = Input.drop_front(); in fromHex()
182 assert(Input.size() % 2 == 0); in fromHex()
183 while (!Input.empty()) { in fromHex()
184 uint8_t Hex = hexFromNibbles(Input[0], Input[1]); in fromHex()
[all …]
H A DPriorityWorklist.h115 insert(SequenceT &&Input) { in insert() argument
116 if (std::begin(Input) == std::end(Input)) in insert()
123 V.insert(V.end(), std::begin(Input), std::end(Input)); in insert()
H A DAPFloat.h639 opStatus convertToInteger(MutableArrayRef<integerPart> Input,
643 opStatus convertFromSignExtendedInteger(const integerPart *Input,
646 opStatus convertFromZeroExtendedInteger(const integerPart *Input,
1069 opStatus convertToInteger(MutableArrayRef<integerPart> Input, in convertToInteger() argument
1073 convertToInteger(Input, Width, IsSigned, RM, IsExact)); in convertToInteger()
1077 opStatus convertFromAPInt(const APInt &Input, bool IsSigned, in convertFromAPInt() argument
1079 APFLOAT_DISPATCH_ON_SEMANTICS(convertFromAPInt(Input, IsSigned, RM)); in convertFromAPInt()
1081 opStatus convertFromSignExtendedInteger(const integerPart *Input, in convertFromSignExtendedInteger() argument
1085 convertFromSignExtendedInteger(Input, InputSize, IsSigned, RM)); in convertFromSignExtendedInteger()
1087 opStatus convertFromZeroExtendedInteger(const integerPart *Input, in convertFromZeroExtendedInteger() argument
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Driver/
H A DAction.h128 Action(ActionClass Kind, Action *Input, types::ID Type) in Action() argument
129 : Action(Kind, ActionList({Input}), Type) {} in Action()
130 Action(ActionClass Kind, Action *Input) in Action() argument
131 : Action(Kind, ActionList({Input}), Input->getType()) {} in Action()
214 const llvm::opt::Arg &Input; variable
236 BindArchAction(Action *Input, StringRef ArchName);
427 void addModuleHeaderInput(Action *Input) { in addModuleHeaderInput() argument
428 getInputs().push_back(Input); in addModuleHeaderInput()
438 AnalyzeJobAction(Action *Input, types::ID OutputType);
549 VerifyPCHJobAction(Action *Input, types::ID Type);
[all …]
/freebsd-12.1/contrib/llvm/tools/llvm-lto2/
H A Dllvm-lto2.cpp264 std::unique_ptr<InputFile> Input = in run() local
268 for (const InputFile::Symbol &Sym : Input->symbols()) { in run()
286 check(Lto.add(std::move(Input), Res), F); in run()
335 std::unique_ptr<InputFile> Input = in dumpSymtab() local
338 outs() << "target triple: " << Input->getTargetTriple() << '\n'; in dumpSymtab()
339 Triple TT(Input->getTargetTriple()); in dumpSymtab()
341 outs() << "source filename: " << Input->getSourceFileName() << '\n'; in dumpSymtab()
344 outs() << "linker opts: " << Input->getCOFFLinkerOpts() << '\n'; in dumpSymtab()
346 std::vector<StringRef> ComdatTable = Input->getComdatTable(); in dumpSymtab()
347 for (const InputFile::Symbol &Sym : Input->symbols()) { in dumpSymtab()
/freebsd-12.1/contrib/gperf/src/
H A Dinput.h32 class Input
35 Input (FILE *stream, Keyword_Factory *keyword_factory);
36 ~Input ();
/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DYAMLTraits.h544 return Input.drop_front(
545 std::min(Input.find_first_not_of("0123456789"), Input.size()));
1658 operator>>(Input &yin, T &docList) {
1674 Input &>::type
1675 operator>>(Input &yin, T &docMap) {
1687 operator>>(Input &yin, T &docSeq) {
1698 operator>>(Input &In, T &Val) {
1709 operator>>(Input &In, T &Val) {
1719 operator>>(Input &In, T &Val) {
1729 Input &>::type
[all …]
/freebsd-12.1/contrib/llvm/lib/Analysis/
H A DGlobalsModRef.cpp635 const Value *Input = Inputs.pop_back_val(); in isNonEscapingGlobalNoAliasWithLoad() local
637 if (isa<GlobalValue>(Input) || isa<Argument>(Input) || isa<CallInst>(Input) || in isNonEscapingGlobalNoAliasWithLoad()
638 isa<InvokeInst>(Input)) in isNonEscapingGlobalNoAliasWithLoad()
654 if (auto *LI = dyn_cast<LoadInst>(Input)) { in isNonEscapingGlobalNoAliasWithLoad()
658 if (auto *SI = dyn_cast<SelectInst>(Input)) { in isNonEscapingGlobalNoAliasWithLoad()
667 if (auto *PN = dyn_cast<PHINode>(Input)) { in isNonEscapingGlobalNoAliasWithLoad()
722 const Value *Input = Inputs.pop_back_val(); in isNonEscapingGlobalNoAlias() local
750 if (isa<Argument>(Input) || isa<CallInst>(Input) || in isNonEscapingGlobalNoAlias()
751 isa<InvokeInst>(Input)) { in isNonEscapingGlobalNoAlias()
765 if (auto *LI = dyn_cast<LoadInst>(Input)) { in isNonEscapingGlobalNoAlias()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/
H A DFrontendAction.cpp539 FrontendInputFile Input(RealInput); in BeginSourceFile() local
541 assert(!Input.isEmpty() && "Unexpected empty filename!"); in BeginSourceFile()
542 setCurrentInput(Input); in BeginSourceFile()
563 StringRef InputFile = Input.getFile(); in BeginSourceFile()
612 Input = FrontendInputFile(File->getName(), Kind); in BeginSourceFile()
616 setCurrentInput(Input, std::move(AST)); in BeginSourceFile()
629 StringRef InputFile = Input.getFile(); in BeginSourceFile()
652 setCurrentInput(Input, std::move(AST)); in BeginSourceFile()
751 if (!CI.InitializeSourceManager(Input)) in BeginSourceFile()
761 if (loadModuleMapForModuleBuild(CI, Input.isSystem(), in BeginSourceFile()
[all …]
H A DLayoutOverrideSource.cpp31 std::ifstream Input(Filename.str().c_str()); in LayoutOverrideSource() local
32 if (!Input.is_open()) in LayoutOverrideSource()
40 while (Input.good()) { in LayoutOverrideSource()
42 getline(Input, Line); in LayoutOverrideSource()
/freebsd-12.1/contrib/llvm/tools/clang/tools/driver/
H A Dcc1gen_reproducer_main.cpp163 StringRef Input = Argv[0]; in cc1gen_reproducer_main() local
165 llvm::MemoryBuffer::getFile(Input); in cc1gen_reproducer_main()
167 llvm::errs() << "error: failed to read " << Input << ": " in cc1gen_reproducer_main()
171 llvm::yaml::Input YAML(Buffer.get()->getBuffer()); in cc1gen_reproducer_main()
194 llvm::sys::fs::remove(Input); in cc1gen_reproducer_main()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Rewrite/Core/
H A DRewriteBuffer.h47 void Initialize(StringRef Input) { in Initialize() argument
48 Initialize(Input.begin(), Input.end()); in Initialize()
/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DUnreachableBlockElim.cpp199 const MachineOperand &Input = phi->getOperand(1); in runOnMachineFunction() local
201 unsigned InputReg = Input.getReg(); in runOnMachineFunction()
208 unsigned InputSub = Input.getSubReg(); in runOnMachineFunction()
211 !Input.isUndef()) { in runOnMachineFunction()
221 .addReg(InputReg, getRegState(Input), InputSub); in runOnMachineFunction()
/freebsd-12.1/contrib/llvm/lib/Target/SystemZ/
H A DSystemZISelDAGToDAG.cpp128 SDValue Input; member
762 SDValue N = RxSBG.Input; in expandRxSBG()
772 RxSBG.Input = N.getOperand(0); in expandRxSBG()
783 SDValue Input = N.getOperand(0); in expandRxSBG() local
794 RxSBG.Input = Input; in expandRxSBG()
817 RxSBG.Input = Input; in expandRxSBG()
830 RxSBG.Input = N.getOperand(0); in expandRxSBG()
836 RxSBG.Input = N.getOperand(0); in expandRxSBG()
865 RxSBG.Input = N.getOperand(0); in expandRxSBG()
891 RxSBG.Input = N.getOperand(0); in expandRxSBG()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/ARCMigrate/
H A DARCMT.h42 checkForManualIssues(CompilerInvocation &CI, const FrontendInputFile &Input,
54 const FrontendInputFile &Input,
70 CompilerInvocation &origCI, const FrontendInputFile &Input,
/freebsd-12.1/contrib/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp205 static void loadInput(const WeightedFile &Input, SymbolRemapper *Remapper, in loadInput() argument
216 WC->ErrWhence = Input.Filename; in loadInput()
218 auto ReaderOrErr = InstrProfReader::create(Input.Filename); in loadInput()
241 WC->Writer.addRecord(std::move(I), Input.Weight, [&](Error E) { in loadInput()
314 for (const auto &Input : Inputs) in mergeInstrProfile() local
315 loadInput(Input, Remapper, Contexts[0].get()); in mergeInstrProfile()
321 for (const auto &Input : Inputs) { in mergeInstrProfile() local
322 Pool.async(loadInput, Input, Remapper, Contexts[Ctx].get()); in mergeInstrProfile()
419 for (const auto &Input : Inputs) { in mergeSampleProfile() local
422 exitWithErrorCode(EC, Input.Filename); in mergeSampleProfile()
[all …]
/freebsd-12.1/sys/gnu/dts/arm/
H A Ddove-sbc-a510.dts58 * 1.1 Camera Input FPC FLASH_STB and P21.5
59 * 1.2 Camera Input FPC WE and P21.22
61 * 1.4 Camera Input FPC AFTR_RST and P21.17
62 * 1.5 Camera Input FPC OE and P21.19
63 * 1.6 Camera Input FPC SNPSHT and P21.6
64 * 1.7 Camera Input FPC SHTR and P21.10
/freebsd-12.1/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DARCMT.cpp238 CompilerInvocation &origCI, const FrontendInputFile &Input, in checkForManualIssues() argument
257 CInvok->getFrontendOpts().Inputs.push_back(Input); in checkForManualIssues()
339 applyTransforms(CompilerInvocation &origCI, const FrontendInputFile &Input, in applyTransforms() argument
350 if (arcmt::checkForManualIssues(CInvokForCheck, Input, PCHContainerOps, in applyTransforms()
357 CInvok.getFrontendOpts().Inputs.push_back(Input); in applyTransforms()
385 CompilerInvocation &origCI, const FrontendInputFile &Input, in applyTransformations() argument
388 return applyTransforms(origCI, Input, PCHContainerOps, DiagClient, in applyTransformations()
393 CompilerInvocation &origCI, const FrontendInputFile &Input, in migrateWithTemporaryFiles() argument
398 return applyTransforms(origCI, Input, PCHContainerOps, DiagClient, outputDir, in migrateWithTemporaryFiles()
/freebsd-12.1/contrib/llvm/lib/ProfileData/
H A DSampleProfReader.cpp69 static bool ParseHead(const StringRef &Input, StringRef &FName, in ParseHead() argument
71 if (Input[0] == ' ') in ParseHead()
73 size_t n2 = Input.rfind(':'); in ParseHead()
74 size_t n1 = Input.rfind(':', n2 - 1); in ParseHead()
75 FName = Input.substr(0, n1); in ParseHead()
76 if (Input.substr(n1 + 1, n2 - n1 - 1).getAsInteger(10, NumSamples)) in ParseHead()
78 if (Input.substr(n2 + 1).getAsInteger(10, NumHeadSamples)) in ParseHead()
101 for (Depth = 0; Input[Depth] == ' '; Depth++) in ParseLine()
106 size_t n1 = Input.find(':'); in ParseLine()
107 StringRef Loc = Input.substr(Depth, n1 - Depth); in ParseLine()
[all …]
/freebsd-12.1/contrib/llvm/tools/llvm-readobj/
H A Dllvm-readobj.cpp370 static void reportError(StringRef Input, std::error_code EC) { in reportError() argument
371 if (Input == "-") in reportError()
372 Input = "<stdin>"; in reportError()
374 reportError(Twine(Input) + ": " + EC.message()); in reportError()
377 static void reportError(StringRef Input, Error Err) { in reportError() argument
378 if (Input == "-") in reportError()
379 Input = "<stdin>"; in reportError()
383 logAllUnhandledErrors(std::move(Err), ErrStream, Input + ": "); in reportError()
/freebsd-12.1/contrib/dialog/samples/
H A Dsourcemage.rc63 # Input box color
66 # Input box border color
135 # Input box border2 color
H A Dslackware.rc63 # Input box color
66 # Input box border color
135 # Input box border2 color

123456789