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

1 2 3 4 5 6 7 8 91011

  /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...]
  /external/swiftshader/third_party/LLVM/tools/bugpoint/
FindBugs.cpp 35 outs() << "Starting bug finding procedure...\n\n";
40 outs() << "\n";
42 outs() << "Generating reference output from raw program: \n";
59 outs() << "Running selected passes on program to test for crash: ";
61 outs() << "-" << PassesToRun[i] << " ";
66 outs() << "\n";
67 outs() << "Optimizer passes caused failure!\n\n";
71 outs() << "Combination " << num << " optimized successfully!\n";
77 outs() << "Running the code generator to test for a crash: ";
81 outs() << "\n*** compileProgram threw an exception: ";
    [all...]
BugDriver.cpp 122 outs() << "Read input file : '" << Filenames[0] << "'\n";
128 outs() << "Linking in input file: '" << Filenames[i] << "'\n";
138 outs() << "*** All input ok\n";
164 outs() << "Running selected passes on program to test for crash: ";
173 outs() << "Running the code generator to test for a crash: ";
177 outs() << Error;
180 outs() << '\n';
188 outs() << "Generating reference output from raw program: ";
203 outs() << "*** Checking the code generator...\n";
210 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";
  /external/swiftshader/third_party/LLVM/tools/macho-dump/
macho-dump.cpp 57 outs() << " ('segment_name', '";
58 outs().write_escaped(Name, /*UseHexEscapes=*/true) << "')\n";
59 outs() << " ('vm_addr', " << VMAddr << ")\n";
60 outs() << " ('vm_size', " << VMSize << ")\n";
61 outs() << " ('file_offset', " << FileOffset << ")\n";
62 outs() << " ('file_size', " << FileSize << ")\n";
63 outs() << " ('maxprot', " << MaxProt << ")\n";
64 outs() << " ('initprot', " << InitProt << ")\n";
65 outs() << " ('num_sections', " << NumSections << ")\n";
66 outs() << " ('flags', " << Flags << ")\n"
    [all...]
  /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 241 dumpBytes(makeArrayRef(bytes, 4), outs());
243 outs() << "\t.long " << Value;
247 dumpBytes(makeArrayRef(bytes, 2), outs());
249 outs() << "\t.short " << Value;
253 dumpBytes(makeArrayRef(bytes, 2), outs());
255 outs() << "\t.byte " << Value;
259 outs() << "\t@ KIND_DATA\n";
261 outs() << "\t@ data in code kind = " << Kind << "\n";
265 dumpBytes(makeArrayRef(bytes, 1), outs());
267 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...]
  /hardware/qcom/neuralnetworks/hvxservice/1.0/
HexagonOperationsCheck.cpp 34 bool addMul(const std::vector<uint32_t>& ins, const std::vector<uint32_t>& outs,
37 HEXAGON_SOFT_ASSERT_EQ(1, outs.size(), "Need 1 output for " << toString(op));
42 Shape outShape = model->getShape(outs[0]);
44 HEXAGON_SOFT_ASSERT(model->setShape(outs[0], outShape), "Error setting shape");
49 bool add(const std::vector<uint32_t>& ins, const std::vector<uint32_t>& outs, HexagonModel* model) {
50 return addMul(ins, outs, model, OperationType::ADD);
53 bool mul(const std::vector<uint32_t>& ins, const std::vector<uint32_t>& outs, HexagonModel* model) {
54 return addMul(ins, outs, model, OperationType::MUL);
57 bool pool(const std::vector<uint32_t>& ins, const std::vector<uint32_t>& outs, HexagonModel* model,
104 Shape outShape = model->getShape(outs[0])
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
TraversalChecker.cpp 47 // It is mildly evil to print directly to llvm::outs() rather than emitting
51 llvm::outs() << C.getSourceManager().getSpellingLineNumber(Loc) << " "
56 llvm::outs() << "--BEGIN FUNCTION--\n";
60 llvm::outs() << "--END FUNCTION--\n";
84 // It is mildly evil to print directly to llvm::outs() rather than emitting
87 llvm::outs().indent(Indentation);
88 Call.dump(llvm::outs());
101 // It is mildly evil to print directly to llvm::outs() rather than emitting
104 llvm::outs().indent(Indentation);
106 llvm::outs() << "Returning void\n"
    [all...]
  /external/llvm/tools/sanstats/
sanstats.cpp 81 llvm::outs() << LineInfo->FileName << ':' << LineInfo->Line << ' '
84 logAllUnhandledErrors(LineInfo.takeError(), llvm::outs(), "<error> ");
89 llvm::outs() << "cfi-vcall";
92 llvm::outs() << "cfi-nvcall";
95 llvm::outs() << "cfi-derived-cast";
98 llvm::outs() << "cfi-unrelated-cast";
101 llvm::outs() << "cfi-icall";
104 llvm::outs() << "<unknown>";
108 llvm::outs() << " " << CountFromData(Data, SizeofPtr) << '\n';
  /external/nos/host/generic/nugget/proto/
BUILD 137 outs = [
156 outs = [
175 outs = [
194 outs = [
215 outs = [
236 outs = [
  /external/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp 433 outs() << " num-strings = " << NumStrings << " {\n";
452 outs() << Indent << " '";
453 outs().write_escaped(Strings.slice(0, Size), /*hex=*/true);
454 outs() << "'\n";
458 outs() << Indent << " }";
487 if (Dump) outs() << Indent << "<BLOCKINFO_BLOCK/>\n";
503 outs() << Indent << "<";
506 outs() << BlockName;
508 outs() << "UnknownBlock" << BlockID;
511 outs() << " BlockID=" << BlockID
    [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...]

Completed in 690 milliseconds

1 2 3 4 5 6 7 8 91011