Searched refs:Out (Results 1 - 20 of 20) sorted by relevance

/frameworks/base/tools/incident_report/
H A Dprinter.h22 class Out class
25 Out(int fd);
26 ~Out();
H A Dprinter.cpp29 Out::Out(int fd) function in class:Out
38 Out::~Out()
44 Out::reallocate(int size)
59 Out::printf(const char* format, ...)
103 Out::indent()
110 Out::dedent()
118 Out::print_indent()
H A Dmain.cpp41 static void print_message(Out* out, Descriptor const* descriptor, GenericMessage const* message);
131 print_value(Out* out, FieldDescriptor const* field, GenericMessage::Node const& node)
199 print_message(Out* out, Descriptor const* descriptor, GenericMessage const* message)
560 Out out(outFd);
/frameworks/compile/slang/
H A Dslang_bitcode_gen.cpp32 void writeBitcode(llvm::raw_ostream &Out, argument
99 Out.write(reinterpret_cast<char*>(&Wrapper), ActualWrapperLen);
100 Out << Bitcode.str();
H A Dslang_bitcode_gen.h31 void writeBitcode(llvm::raw_ostream &Out,
H A Dllvm-rs-as.cpp89 std::unique_ptr<tool_output_file> Out
97 if (Force || !CheckBitcodeOutputToConsole(Out->os(), true)) {
98 slang::writeBitcode(Out->os(), *M,
103 if (!Out->os().has_error()) {
105 Out->keep();
H A Dslang_rs_reflection.cpp83 GeneratedFile *Out, const RSContext *RSContext,
131 "Out-of-bound index to access vector member");
1397 void genReduceResultRangeCheck(GeneratedFile &Out, const char *InVal) { argument
1398 Out.indent() << "if (" << InVal << " < 0)\n";
1399 Out.indent() << " throw new RSRuntimeException(\"Result is not representible in Java\");\n";
2463 const char *RenderScriptVar, GeneratedFile *Out, const RSContext *RSContext,
2466 mRenderScriptVar(RenderScriptVar), mOut(Out), mPaddingFieldIndex(1),
2461 RSReflectionJavaElementBuilder( const char *ElementBuilderName, const RSExportRecordType *ERT, const char *RenderScriptVar, GeneratedFile *Out, const RSContext *RSContext, RSReflectionJava *Reflection) argument
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64PLT.cpp121 uint32_t* Out = NULL; local
124 Out = static_cast<uint32_t*>(malloc(AArch64PLT1::EntrySize));
125 memcpy(Out, aarch64_plt1, AArch64PLT1::EntrySize);
129 Out[0] = helper_reencode_adr_imm(Out[0], imm >> 12);
131 Out[1] = helper_reencode_add_imm(
132 Out[1], helper_get_page_offset(GOTEntryAddress) >> 3);
134 Out[2] = helper_reencode_add_imm(Out[2],
137 plt1->setValue(reinterpret_cast<unsigned char*>(Out));
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
H A DomxVCM4P10_InvTransformResidualAndAdd.c84 OMX_S16 In[16], Out[16]; local
117 armVCM4P10_TransformResidual4x4 (Out, In);
124 Value = (OMX_S32) Out [j * 4 + i] + pSrcPred [j * iSrcPredStep + i];
/frameworks/compile/libbcc/tools/bcc_strip_attr/
H A Dbcc_strip_attr.cpp134 tool_output_file Out(OutputFilename.c_str(), EC,
147 Out.os() << *M;
148 } else if (!CheckBitcodeOutputToConsole(Out.os(), true)) {
149 WriteBitcodeToFile(M.get(), Out.os());
152 Out.keep();
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMPLT.cpp115 uint32_t* Out = NULL; local
118 Out = static_cast<uint32_t*>(malloc(ARMPLT1::EntrySize));
120 if (!Out)
127 Out[0] = arm_plt1[0] | ((Offset >> 20) & 0xFF);
128 Out[1] = arm_plt1[1] | ((Offset >> 12) & 0xFF);
129 Out[2] = arm_plt1[2] | (Offset & 0xFFF);
131 plt1->setValue(reinterpret_cast<unsigned char*>(Out));
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonPLT.cpp140 uint32_t* Out = NULL; local
143 Out = static_cast<uint32_t*>(malloc(HexagonPLT1::EntrySize));
145 if (!Out)
148 memcpy(Out, hexagon_plt1, plt1->size());
150 int32_t* dest = reinterpret_cast<int32_t*>(Out);
160 plt1->setValue(reinterpret_cast<unsigned char*>(Out));
/frameworks/base/libs/hwui/
H A DTreeInfo.h96 struct Out { struct in class:android::uirenderer::TreeInfo
/frameworks/compile/slang/BitWriter_2_9/
H A DReaderWriter_2_9.h56 void WriteBitcodeToFile(const llvm::Module *M, llvm::raw_ostream &Out);
H A DBitcodeWriter.cpp1708 void llvm_2_9::WriteBitcodeToFile(const Module *M, raw_ostream &Out) { argument
1737 // Write the generated bitstream to "Out".
1738 Out.write((char*)&Buffer.front(), Buffer.size());
/frameworks/compile/slang/BitWriter_2_9_func/
H A DReaderWriter_2_9_func.h56 void WriteBitcodeToFile(const llvm::Module *M, llvm::raw_ostream &Out);
H A DBitcodeWriter.cpp1772 void llvm_2_9_func::WriteBitcodeToFile(const Module *M, raw_ostream &Out) { argument
1801 // Write the generated bitstream to "Out".
1802 Out.write((char*)&Buffer.front(), Buffer.size());
/frameworks/compile/slang/BitWriter_3_2/
H A DReaderWriter_3_2.h56 void WriteBitcodeToFile(const llvm::Module *M, llvm::raw_ostream &Out);
H A DBitcodeWriter.cpp1846 void llvm_3_2::WriteBitcodeToFile(const Module *M, raw_ostream &Out) { argument
1875 // Write the generated bitstream to "Out".
1876 Out.write((char*)&Buffer.front(), Buffer.size());
/frameworks/compile/libbcc/lib/
H A DRSKernelExpand.cpp533 SmallGEPIndices Out(I32Args.size());
535 std::transform(I32Args.begin(), I32Args.end(), Out.begin(),
537 return Out;

Completed in 282 milliseconds