Home
last modified time | relevance | path

Searched refs:Output (Results 1 – 25 of 235) sorted by relevance

12345678910

/freebsd-9-stable/contrib/llvm/include/llvm/Support/
DOutputBuffer.h25 std::vector<unsigned char> &Output; variable
33 : Output(Out), is64Bit(is64bit), isLittleEndian(le) {} in OutputBuffer()
40 size_t Size = Output.size(); in align()
45 Output.resize(Size + Pad); in align()
53 Output.push_back(X); in outbyte()
57 Output.push_back(X & 255); in outhalf()
58 Output.push_back(X >> 8); in outhalf()
60 Output.push_back(X >> 8); in outhalf()
61 Output.push_back(X & 255); in outhalf()
66 Output.push_back((X >> 0) & 255); in outword()
[all …]
DYAMLTraits.h823 class Output : public IO {
825 Output(llvm::raw_ostream &, void *Ctxt=NULL);
826 virtual ~Output();
992 typename llvm::enable_if_c<has_DocumentListTraits<T>::value,Output &>::type
993 operator<<(Output &yout, T &docList) {
1009 typename llvm::enable_if_c<has_MappingTraits<T>::value,Output &>::type
1010 operator<<(Output &yout, T &map) {
1023 typename llvm::enable_if_c<has_SequenceTraits<T>::value,Output &>::type
1024 operator<<(Output &yout, T &seq) {
1037 typename llvm::enable_if_c<missingTraits<T>::value,Output &>::type
[all …]
/freebsd-9-stable/contrib/llvm/lib/Support/
DYAMLTraits.cpp395 Output::Output(raw_ostream &yout, void *context) in Output() function in Output
406 Output::~Output() { in ~Output()
409 bool Output::outputting() const { in outputting()
413 void Output::beginMapping() { in beginMapping()
418 bool Output::mapTag(StringRef Tag, bool Use) { in mapTag()
426 void Output::endMapping() { in endMapping()
430 bool Output::preflightKey(const char *Key, bool Required, bool SameAsDefault, in preflightKey()
441 void Output::postflightKey(void *) { in postflightKey()
448 void Output::beginDocuments() { in beginDocuments()
452 bool Output::preflightDocument(unsigned index) { in preflightDocument()
[all …]
/freebsd-9-stable/contrib/llvm/tools/clang/lib/Driver/
DTools.h49 const InputInfo &Output,
87 const InputInfo &Output,
104 const InputInfo &Output,
118 const InputInfo &Output,
203 const InputInfo &Output,
220 const InputInfo &Output,
254 const InputInfo &Output,
273 const InputInfo &Output,
286 const InputInfo &Output,
301 const InputInfo &Output,
[all …]
DTools.cpp243 const InputInfo &Output, in AddPreprocessingOptions() argument
261 } else if (Output.getType() == types::TY_Dependencies) { in AddPreprocessingOptions()
262 DepFile = Output.getFilename(); in AddPreprocessingOptions()
280 if (OutputOpt && Output.getType() != types::TY_Dependencies) { in AddPreprocessingOptions()
1977 const ArgList &Args, const InputInfo &Output, in SplitDebugInfo() argument
1986 StripArgs.push_back(Output.getFilename()); in SplitDebugInfo()
1987 ExtractArgs.push_back(Output.getFilename()); in SplitDebugInfo()
2032 const InputInfo &Output, in ConstructJob() argument
2062 if (Output.getType() == types::TY_Dependencies) in ConstructJob()
2672 if (Output.isFilename()) { in ConstructJob()
[all …]
/freebsd-9-stable/contrib/llvm/lib/Option/
DArg.cpp80 void Arg::renderAsInput(const ArgList &Args, ArgStringList &Output) const { in renderAsInput()
82 render(Args, Output); in renderAsInput()
87 Output.push_back(getValue(i)); in renderAsInput()
90 void Arg::render(const ArgList &Args, ArgStringList &Output) const { in render()
94 Output.push_back(getValue(i)); in render()
105 Output.push_back(Args.MakeArgString(OS.str())); in render()
110 Output.push_back(Args.GetOrMakeJoinedArgString( in render()
113 Output.push_back(getValue(i)); in render()
117 Output.push_back(Args.MakeArgString(getSpelling())); in render()
119 Output.push_back(getValue(i)); in render()
DArgList.cpp229 void ArgList::AddLastArg(ArgStringList &Output, OptSpecifier Id) const { in AddLastArg() argument
232 A->render(*this, Output); in AddLastArg()
236 void ArgList::AddLastArg(ArgStringList &Output, OptSpecifier Id0, in AddLastArg() argument
240 A->render(*this, Output); in AddLastArg()
244 void ArgList::AddAllArgs(ArgStringList &Output, OptSpecifier Id0, in AddAllArgs() argument
249 (*it)->render(*this, Output); in AddAllArgs()
253 void ArgList::AddAllArgValues(ArgStringList &Output, OptSpecifier Id0, in AddAllArgValues() argument
259 Output.push_back((*it)->getValue(i)); in AddAllArgValues()
263 void ArgList::AddAllArgsTranslated(ArgStringList &Output, OptSpecifier Id0, in AddAllArgsTranslated() argument
271 Output.push_back(MakeArgString(StringRef(Translation) + in AddAllArgsTranslated()
[all …]
/freebsd-9-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/
DAnalyses.def30 ANALYSIS_DIAGNOSTICS(HTML, "html", "Output analysis results using HTML", createHTMLDiagnosticCo…
31 ANALYSIS_DIAGNOSTICS(PLIST, "plist", "Output analysis results using Plists", createPlistDiagnosticC…
32 ANALYSIS_DIAGNOSTICS(PLIST_MULTI_FILE, "plist-multi-file", "Output analysis results using Plists (a…
33 ANALYSIS_DIAGNOSTICS(PLIST_HTML, "plist-html", "Output analysis results using HTML wrapped with Pli…
/freebsd-9-stable/contrib/gperf/
DChangeLog69 * src/output.cc (Output::output_lookup_function): Emit an inline
119 (output_keyword_entry, Output::output): Use it.
171 * src/output.cc (Output::output_keylength_table, output_switch_case,
172 Output::output_lookup_function_body): Use option.get_lengthtable_name.
175 (Output Details): Document --length-table-name option.
267 * src/output.cc (Output::output_hash_function): Avoid lint warning if
297 * src/main.cc (main): Pass _charset_dependent from Input to Output.
298 * src/output.h (Output::Output): Add charset_dependent argument.
299 (Output::_charset_dependent): New field.
300 * src/output.cc (Output::Output): Add charset_dependent argument.
[all …]
/freebsd-9-stable/contrib/gperf/src/
Doutput.cc79 Output::Output (KeywordExt_List *head, const char *struct_decl, in Output() function in Output
114 Output::compute_min_max () in compute_min_max()
132 Output::num_hash_values () const in num_hash_values()
221 Output::output_constants (struct Output_Constants& style) const in output_constants()
720 Output::output_asso_values_ref (int pos) const in output_asso_values_ref()
743 Output::output_hash_function () const in output_hash_function()
930 Output::output_keylength_table () const in output_keylength_table()
1001 Output::output_string_pool () const in output_string_pool()
1172 Output::output_keyword_table () const in output_keyword_table()
1242 Output::output_lookup_array () const in output_lookup_array()
[all …]
Doutput.h36 class Output
40 Output (KeywordExt_List *head,
/freebsd-9-stable/contrib/llvm/tools/clang/include/clang/Basic/
DMacroBuilder.h27 MacroBuilder(raw_ostream &Output) : Out(Output) {} in MacroBuilder() argument
DTargetInfo.h534 void setTiedOperand(unsigned N, ConstraintInfo &Output) { in setTiedOperand()
535 Output.setHasMatchingInput(); in setTiedOperand()
536 Flags = Output.Flags; in setTiedOperand()
/freebsd-9-stable/contrib/llvm/lib/CodeGen/
DUnreachableBlockElim.cpp188 unsigned Output = phi->getOperand(0).getReg(); in runOnMachineFunction() local
195 if (Input != Output) { in runOnMachineFunction()
197 MRI.constrainRegClass(Input, MRI.getRegClass(Output)); in runOnMachineFunction()
198 MRI.replaceRegWith(Output, Input); in runOnMachineFunction()
/freebsd-9-stable/contrib/llvm/include/llvm/Option/
DArgList.h233 void AddLastArg(ArgStringList &Output, OptSpecifier Id0) const;
234 void AddLastArg(ArgStringList &Output, OptSpecifier Id0,
238 void AddAllArgs(ArgStringList &Output, OptSpecifier Id0,
243 void AddAllArgValues(ArgStringList &Output, OptSpecifier Id0,
252 void AddAllArgsTranslated(ArgStringList &Output, OptSpecifier Id0,
DArg.h113 void render(const ArgList &Args, ArgStringList &Output) const;
120 void renderAsInput(const ArgList &Args, ArgStringList &Output) const;
/freebsd-9-stable/contrib/groff/doc/
Dgroff42 Node: Output device intro12694
238 Node: Output Devices366609
257 Node: gtroff Output370248
258 Node: gtroff Output-Footnotes372088
259 Ref: gtroff Output-Footnote-1372155
272 Node: Intermediate Output Examples397446
273 Node: Output Language Compatibility400238
/freebsd-9-stable/share/misc/
Dscsi_modes275 {Output Port 0 Channel Selection} t4
276 {Output Port 0 Volume} i1
278 {Output Port 1 Channel Selection} t4
279 {Output Port 1 Volume} i1
281 {Output Port 2 Channel Selection} t4
282 {Output Port 2 Volume} i1
284 {Output Port 3 Channel Selection} t4
285 {Output Port 3 Volume} i1
/freebsd-9-stable/contrib/llvm/include/llvm/CodeGen/
DScheduleDAG.h51 Output, ///< A register output-dependence (aka WAW). enumerator
107 case Output: in SDep()
130 case Output: in overlaps()
224 assert((getKind() == Data || getKind() == Anti || getKind() == Output) && in getReg()
235 assert((getKind() == Data || getKind() == Anti || getKind() == Output) && in setReg()
239 assert((getKind() != Output || Reg != 0) && in setReg()
/freebsd-9-stable/contrib/ntp/scripts/
Dplot_summary-opts.def72 descrip = 'Output file';
74 Output file for @code{gnuplot}, default to stdout.
/freebsd-9-stable/contrib/gperf/doc/
Dgperf.texi117 * Output Format:: Output Format for Generated C Code with @code{gperf}
136 * Output Language:: Specifying the Language for the Output Code
137 * Output Details:: Fine tuning Details in the Output Code
139 * Verbosity:: Informative Output
262 for serious programming projects. Output from @code{gperf} is currently
274 * Output Format:: Output Format for Generated C Code with @code{gperf}
304 @node Input Format, Output Format, Description, Description
765 @node Output Format, Binary Strings, Input Format, Description
766 @section Output Format for Generated C Code with @code{gperf}
829 @node Binary Strings, , Output Format, Description
[all …]
/freebsd-9-stable/contrib/gcclibs/libiberty/
Dvmsbuild.com61 $ SEARCH dummy.map "%LINK-I-UDFSYM" /Output=dummy.list
81 $ LIBR 'WORK_LIB' /Compress /Output='LIB_NAME' !new-lib.olb -> liberty.olb
/freebsd-9-stable/contrib/ntp/sntp/m4/
Dntp_ver_suffix.m44 dnl Output substitutions:
/freebsd-9-stable/contrib/llvm/tools/bugpoint/
DExecutionDriver.cpp447 std::string Output( in diffProgram() local
455 Output, in diffProgram()
465 sys::fs::remove(Output); in diffProgram()
/freebsd-9-stable/contrib/llvm/tools/clang/include/clang/AST/
DASTDiagnostic.h45 SmallVectorImpl<char> &Output,

12345678910