HomeSort by relevance Sort by last modified time
    Searched refs:outs (Results 1 - 25 of 169) sorted by null

1 2 3 4 5 6 7

  /external/llvm/tools/llvm-readobj/
COFFImportDumper.cpp 27 outs() << '\n';
28 outs() << "File: " << File->getFileName() << "\n";
29 outs() << "Format: COFF-import-file\n";
33 case COFF::IMPORT_CODE: outs() << "Type: code\n"; break;
34 case COFF::IMPORT_DATA: outs() << "Type: data\n"; break;
35 case COFF::IMPORT_CONST: outs() << "Type: const\n"; break;
39 case COFF::IMPORT_ORDINAL: outs() << "Name type: ordinal\n"; break;
40 case COFF::IMPORT_NAME: outs() << "Name type: name\n"; break;
41 case COFF::IMPORT_NAME_NOPREFIX: outs() << "Name type: noprefix\n"; break;
42 case COFF::IMPORT_NAME_UNDECORATE: outs() << "Name type: undecorate\n"; break
    [all...]
  /external/curl/src/
tool_cb_wrt.c 35 bool tool_create_output_file(struct OutStruct *outs)
37 struct GlobalConfig *global = outs->config->global;
40 if(!outs->filename || !*outs->filename) {
45 if(outs->is_cd_filename) {
47 file = fopen(outs->filename, "rb");
50 warnf(global, "Refusing to overwrite %s: %s\n", outs->filename,
57 file = fopen(outs->filename, "wb");
59 warnf(global, "Failed to create the file %s: %s\n", outs->filename,
63 outs->s_isreg = TRUE
78 struct OutStruct *outs = userdata; local
    [all...]
tool_writeout.h 26 void ourWriteOut(CURL *curl, struct OutStruct *outs, const char *writeinfo);
tool_cb_wrt.h 33 bool tool_create_output_file(struct OutStruct *outs);
tool_cb_hdr.c 46 struct OutStruct *outs = hdrcbdata->outs; local
93 !curl_easy_getinfo(outs->config->easy, CURLINFO_EFFECTIVE_URL, &url) &&
122 outs->filename = filename;
123 outs->alloc_filename = TRUE;
124 outs->is_cd_filename = TRUE;
125 outs->s_isreg = TRUE;
126 outs->fopened = FALSE;
127 outs->stream = NULL;
tool_cb_hdr.h 30 * 'outs' member is a pointer to the OutStruct variable used to keep
38 * set 'outs' filename, otherwise FALSE;
42 struct OutStruct *outs; member in struct:HdrCbData
  /external/llvm/tools/bugpoint/
FindBugs.cpp 36 outs() << "Starting bug finding procedure...\n\n";
41 outs() << "\n";
43 outs() << "Generating reference output from raw program: \n";
60 outs() << "Running selected passes on program to test for crash: ";
62 outs() << "-" << PassesToRun[i] << " ";
67 outs() << "\n";
68 outs() << "Optimizer passes caused failure!\n\n";
72 outs() << "Combination " << num << " optimized successfully!\n";
78 outs() << "Running the code generator to test for a crash: ";
82 outs() << "\n*** compileProgram threw an exception: "
    [all...]
BugDriver.cpp 128 outs() << "Read input file : '" << Filenames[0] << "'\n";
134 outs() << "Linking in input file: '" << Filenames[i] << "'\n";
139 outs() << "*** All input ok\n";
165 outs() << "Running selected passes on program to test for crash: ";
174 outs() << "Running the code generator to test for a crash: ";
178 outs() << Error;
181 outs() << '\n';
189 outs() << "Generating reference output from raw program: ";
204 outs() << "*** Checking the code generator...\n";
211 outs() << "\n*** Output matches: Debugging miscompilation!\n"
    [all...]
  /frameworks/compile/mclinker/lib/Script/
InputSectDesc.cpp 37 mcld::outs() << "KEEP (";
41 mcld::outs() << "SORT (";
43 mcld::outs() << m_Spec.file().name();
46 mcld::outs() << "(";
49 mcld::outs() << "EXCLUDE_FILE (";
54 mcld::outs() << (*it)->name() << " ";
56 mcld::outs() << ")";
69 mcld::outs() << "SORT (";
72 mcld::outs() << "SORT_BY_ALIGNMENT (";
75 mcld::outs() << "SORT_BY_NAME_ALIGNMENT ("
    [all...]
OutputSectDesc.cpp 42 mcld::outs() << m_Name << "\t";
46 mcld::outs() << "\t";
51 mcld::outs() << "(NOLOAD)";
54 mcld::outs() << "(DSECT)";
57 mcld::outs() << "(COPY)";
60 mcld::outs() << "(INFO)";
63 mcld::outs() << "(OVERLAY)";
68 mcld::outs() << ":\n";
71 mcld::outs() << "\tAT ( ";
73 mcld::outs() << " )\n"
    [all...]
OutputFormatCmd.cpp 35 mcld::outs() << "OUTPUT_FORMAT ( ";
39 mcld::outs() << " , ";
40 mcld::outs() << m_FormatList[i];
42 mcld::outs() << " )\n";
AssertCmd.cpp 35 mcld::outs() << "Assert ( ";
39 mcld::outs() << " , " << m_Message << " )\n";
EntryCmd.cpp 28 mcld::outs() << "ENTRY ( " << m_Entry << " )\n";
OutputArchCmd.cpp 25 mcld::outs() << "OUTPUT_ARCH ( " << m_Arch << " )\n";
  /external/llvm/tools/llvm-objdump/
ELFDump.cpp 26 outs() << "Program Header:\n";
30 outs() << " LOAD ";
33 outs() << " STACK ";
36 outs() << "EH_FRAME ";
39 outs() << " INTERP ";
42 outs() << " DYNAMIC ";
45 outs() << " PHDR ";
48 outs() << " TLS ";
51 outs() << " UNKNOWN ";
56 outs() << "off " << format(Fmt, (uint64_t)Phdr.p_offset) << "vaddr
    [all...]
MachODump.cpp 210 dumpBytes(makeArrayRef(bytes, 4), outs());
212 outs() << "\t.long " << Value;
216 dumpBytes(makeArrayRef(bytes, 2), outs());
218 outs() << "\t.short " << Value;
222 dumpBytes(makeArrayRef(bytes, 2), outs());
224 outs() << "\t.byte " << Value;
228 outs() << "\t@ KIND_DATA\n";
230 outs() << "\t@ data in code kind = " << Kind << "\n";
234 dumpBytes(makeArrayRef(bytes, 1), outs());
236 outs() << "\t.byte " << format("%3u", Value) << "\t@ KIND_JUMP_TABLE8\n"
    [all...]
COFFDump.cpp 97 outs() << format(" 0x%02x: ", unsigned(UCs[0].u.CodeOffset))
101 outs() << " " << getUnwindRegisterName(UCs[0].getOpInfo());
105 outs() << " " << UCs[1].FrameOffset;
107 outs() << " " << UCs[1].FrameOffset
112 outs() << " " << ((UCs[0].getOpInfo() + 1) * 8);
115 outs() << " ";
118 outs() << " " << getUnwindRegisterName(UCs[0].getOpInfo())
122 outs() << " " << getUnwindRegisterName(UCs[0].getOpInfo())
127 outs() << " XMM" << static_cast<uint32_t>(UCs[0].getOpInfo())
131 outs() << " XMM" << UCs[0].getOpInfo(
    [all...]
  /external/glide/third_party/gif_encoder/src/main/java/com/bumptech/glide/gifencoder/
LZWEncoder.java 122 void char_out(byte c, OutputStream outs) throws IOException {
125 flush_char(outs);
131 void cl_block(OutputStream outs) throws IOException {
136 output(ClearCode, outs);
145 void compress(int init_bits, OutputStream outs) throws IOException {
178 output(ClearCode, outs);
203 output(ent, outs);
209 cl_block(outs);
212 output(ent, outs);
213 output(EOFCode, outs);
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
TraversalChecker.cpp 45 // It is mildly evil to print directly to llvm::outs() rather than emitting
49 llvm::outs() << C.getSourceManager().getSpellingLineNumber(Loc) << " "
54 llvm::outs() << "--END FUNCTION--\n";
78 // It is mildly evil to print directly to llvm::outs() rather than emitting
81 llvm::outs().indent(Indentation);
82 Call.dump(llvm::outs());
95 // It is mildly evil to print directly to llvm::outs() rather than emitting
98 llvm::outs().indent(Indentation);
100 llvm::outs() << "Returning void\n";
102 llvm::outs() << "Returning " << C.getSVal(CallE) << "\n"
    [all...]
  /external/llvm/utils/yaml-bench/
YAMLBench.cpp 91 outs() << indent(Indent);
94 outs() << "&" << Anchor << " ";
98 outs() << prettyTag(n) << " \"" << yaml::escape(Val) << "\"";
100 outs() << prettyTag(n) << " \"" << yaml::escape(BN->getValue()) << "\"";
102 outs() << prettyTag(n) << " [\n";
107 outs() << ",\n";
110 outs() << indent(Indent) << "]";
112 outs() << prettyTag(n) << " {\n";
116 outs() << indent(Indent) << "? ";
118 outs() << "\n"
    [all...]
  /frameworks/native/services/surfaceflinger/
GpuService.cpp 87 FILE* outs = fdopen(out, "w"); local
88 if (!outs) {
93 fprintf(outs,
96 fclose(outs);
152 FILE* outs = fdopen(out, "w"); local
153 if (!outs) {
162 fclose(outs);
165 fprintf(outs, "[\n");
166 VkResult result = vkjsonPrint(outs, errs);
167 fprintf(outs, "]\n")
    [all...]
  /external/llvm/tools/llvm-nm/
llvm-nm.cpp 305 outs() << Str << ' ';
307 outs() << Str << ' ';
309 outs() << Str << ' ';
311 outs() << Str << ' ';
313 outs() << Str << ' ';
314 outs() << I->Name << "\n";
323 outs() << SymbolAddrStr << ' ';
329 outs() << "(common) ";
331 outs() << "(alignment 2^" << (int)MachO::GET_COMM_ALIGN(NDesc) << ") ";
334 outs() << "(prebound "
    [all...]
  /external/llvm/tools/llvm-size/
llvm-size.cpp 87 outs() << ToolName << ": error reading file: " << ec.message() << ".\n";
88 outs().flush();
132 outs() << "Segment " << Seg.segname << ": "
135 outs() << " (vmaddr 0x" << format("%" PRIx64, Seg.vmaddr) << " fileoff "
137 outs() << "\n";
143 outs() << "\tSection (" << format("%.16s", &Sec.segname) << ", "
146 outs() << "\tSection " << format("%.16s", &Sec.sectname) << ": ";
147 outs() << format(fmt.str().c_str(), Sec.size);
149 outs() << " (addr 0x" << format("%" PRIx64, Sec.addr) << " offset "
151 outs() << "\n"
    [all...]
  /external/clang/tools/diagtool/
diagtool_main.cpp 21 return tool->run(argc - 2, &argv[2], llvm::outs());
  /external/llvm/examples/HowToUseJIT/
HowToUseJIT.cpp 119 outs() << "We just constructed this LLVM module:\n\n" << *M;
120 outs() << "\n\nRunning foo: ";
121 outs().flush();
128 outs() << "Result: " << gv.IntVal << "\n";

Completed in 1009 milliseconds

1 2 3 4 5 6 7