Searched defs:Out (Results 51 - 75 of 193) sorted by relevance

12345678

/external/swiftshader/third_party/llvm-subzero/lib/Support/
H A DConvertUTFWrapper.cpp87 bool convertUTF16ToUTF8String(ArrayRef<char> SrcBytes, std::string &Out) { argument
88 assert(Out.empty());
117 Out.resize(SrcBytes.size() * UNI_MAX_UTF8_BYTES_PER_CODE_POINT + 1);
118 UTF8 *Dst = reinterpret_cast<UTF8 *>(&Out[0]);
119 UTF8 *DstEnd = Dst + Out.size();
126 Out.clear();
130 Out.resize(reinterpret_cast<char *>(Dst) - &Out[0]);
131 Out.push_back(0);
132 Out
136 convertUTF16ToUTF8String(ArrayRef<UTF16> Src, std::string &Out) argument
[all...]
/external/webrtc/webrtc/common_audio/signal_processing/
H A Dresample.c22 static void WebRtcSpl_32khzTo22khzIntToShort(const int32_t *In, int16_t *Out,
25 void WebRtcSpl_32khzTo22khzIntToInt(const int32_t *In, int32_t *Out,
423 int32_t* Out,
436 Out[0] = ((int32_t)In[3] << 15) + (1 << 14);
439 WebRtcSpl_DotProdIntToInt(&In[0], &In[22], kCoefficients32To22[0], &Out[1], &Out[10]);
442 WebRtcSpl_DotProdIntToInt(&In[2], &In[20], kCoefficients32To22[1], &Out[2], &Out[9]);
445 WebRtcSpl_DotProdIntToInt(&In[3], &In[19], kCoefficients32To22[2], &Out[3], &Out[
422 WebRtcSpl_32khzTo22khzIntToInt(const int32_t* In, int32_t* Out, int32_t K) argument
464 WebRtcSpl_32khzTo22khzIntToShort(const int32_t *In, int16_t *Out, int32_t K) argument
[all...]
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
H A Dfilterbanks.c282 Out: a length FRAMESAMPLES array of output reconstructed
289 float *Out,
320 Out[2*k]=tempin_ch2[k];
321 Out[2*k+1]=tempin_ch1[k];
328 ftmp2 = Out[k] + kHpStCoefOut1Float[2] * postfiltdata->HPstates1_float[0] +
330 ftmp = Out[k] - kHpStCoefOut1Float[0] * postfiltdata->HPstates1_float[0] -
334 Out[k] = ftmp2;
338 ftmp2 = Out[k] + kHpStCoefOut2Float[2] * postfiltdata->HPstates2_float[0] +
340 ftmp = Out[k] - kHpStCoefOut2Float[0] * postfiltdata->HPstates2_float[0] -
344 Out[
287 WebRtcIsac_FilterAndCombineFloat(float *InLP, float *InHP, float *Out, PostFiltBankstr *postfiltdata) argument
[all...]
/external/clang/include/clang/ASTMatchers/Dynamic/
H A DDiagnostics.h86 ArgStream(std::vector<std::string> *Out) : Out(Out) {} argument
93 std::vector<std::string> *Out; member in class:clang::ast_matchers::dynamic::Diagnostics::ArgStream
/external/clang/lib/AST/
H A DMangle.cpp42 raw_ostream &Out) {
45 Out << "__" << Outer << "_block_invoke";
47 Out << "__" << Outer << "_block_invoke_" << discriminator+1;
117 void MangleContext::mangleName(const NamedDecl *D, raw_ostream &Out) { argument
132 Out << '\01'; // LLVM IR Marker for __asm("foo")
134 Out << ALA->getLabel();
144 mangleObjCMethodName(OMD, Out);
146 mangleCXXName(D, Out);
150 Out << '\01';
152 Out << '
39 mangleFunctionBlock(MangleContext &Context, StringRef Outer, const BlockDecl *BD, raw_ostream &Out) argument
186 mangleGlobalBlock(const BlockDecl *BD, const NamedDecl *ID, raw_ostream &Out) argument
221 mangleBlock(const DeclContext *DC, const BlockDecl *BD, raw_ostream &Out) argument
270 mangleObjCMethodName(const ObjCMethodDecl *MD, raw_ostream &Out) argument
[all...]
H A DTemplateBase.cpp35 /// \param Out the raw_ostream instance to use for printing.
39 raw_ostream &Out, const PrintingPolicy& Policy) {
50 ECD->printQualifiedName(Out, Policy);
57 Out << (Val.getBoolValue() ? "true" : "false");
60 Out << ((Ch == '\'') ? "'\\" : "'");
61 Out.write_escaped(StringRef(&Ch, 1), /*UseHexEscapes=*/ true);
62 Out << "'";
64 Out << Val;
355 raw_ostream &Out) const {
358 Out << "(n
38 printIntegral(const TemplateArgument &TemplArg, raw_ostream &Out, const PrintingPolicy& Policy) argument
422 print(PrintingPolicy(LO), Out); local
[all...]
/external/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp584 VariantMatcher Out = constructMatcher(Ctor, NameRange, Args, Error); local
585 if (Out.isNull()) return Out;
587 llvm::Optional<DynTypedMatcher> Result = Out.getSingleMatcher();
/external/clang/lib/CodeGen/
H A DCodeGenTBAA.cpp160 llvm::raw_svector_ostream Out(OutName);
161 MContext.mangleTypeName(QualType(ETy, 0), Out); local
275 llvm::raw_svector_ostream Out(OutName);
276 MContext.mangleTypeName(QualType(Ty, 0), Out); local
/external/clang/lib/Frontend/
H A DASTConsumers.cpp38 ASTPrinter(raw_ostream *Out = nullptr, bool Dump = false,
40 : Out(Out ? *Out : llvm::outs()), Dump(Dump),
56 bool ShowColors = Out.has_colors();
58 Out.changeColor(raw_ostream::BLUE);
59 Out << ((Dump || DumpLookups) ? "Dumping " : "Printing ") << getName(D)
62 Out.resetColor();
64 Out << "\n";
84 DC->dumpLookups(Out, Dum
96 raw_ostream &Out; member in class:__anon1357::ASTPrinter
121 raw_ostream &Out; member in class:__anon1357::ASTDeclNodeLister
125 CreateASTPrinter(raw_ostream *Out, StringRef FilterString) argument
185 raw_ostream& Out; member in class:__anon1359::DeclContextPrinter
[all...]
H A DFrontendActions.cpp451 llvm::raw_ostream &Out; member in class:__anon1377::DumpModuleInfoListener
454 DumpModuleInfoListener(llvm::raw_ostream &Out) : Out(Out) { } argument
457 Out.indent(4) << Text << ": " << (Value? "Yes" : "No") << "\n"
460 Out.indent(2)
469 Out.indent(2) << "Module name: " << ModuleName << "\n";
472 Out.indent(2) << "Module map file: " << ModuleMapPath << "\n";
477 Out.indent(2) << "Language options:\n";
481 Out
604 llvm::raw_ostream &Out = OutFile.get()? *OutFile.get() : llvm::outs(); local
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DObjCSelfInitChecker.cpp82 void printState(raw_ostream &Out, ProgramStateRef State,
338 void ObjCSelfInitChecker::printState(raw_ostream &Out, ProgramStateRef State, argument
347 Out << Sep << NL << *this << " :" << NL;
350 Out << " An init method has been called." << NL;
354 Out << " An argument of the current call came from the 'self' variable."
358 Out << " An argument of the current call came from an init method."
363 Out << NL;
366 Out << I->first << " : ";
369 Out << "none";
372 Out << "sel
[all...]
/external/clang/unittests/ASTMatchers/Dynamic/
H A DRegistryTest.cpp26 std::vector<ParserValue> Out(1);
27 Out[0].Value = Arg1;
28 return Out;
32 std::vector<ParserValue> Out(2);
33 Out[0].Value = Arg1;
34 Out[1].Value = Arg2;
35 return Out;
47 VariantMatcher Out; local
49 Out = Registry::constructMatcher(*Ctor, SourceRange(), Args(), Error);
51 return Out;
60 VariantMatcher Out; local
74 VariantMatcher Out; local
[all...]
/external/llvm/include/llvm/Analysis/
H A DLoopInfoImpl.h110 BlockT *Out = getLoopPredecessor(); local
111 if (!Out) return nullptr;
115 typename BlockTraits::ChildIteratorType SI = BlockTraits::child_begin(Out);
117 if (SI != BlockTraits::child_end(Out))
121 return Out;
132 BlockT *Out = nullptr; local
142 if (Out && Out != N)
144 Out = N;
149 assert(Out
[all...]
/external/llvm/lib/Analysis/
H A DCallGraphSCCPass.cpp602 raw_ostream &Out; // raw_ostream to print on. member in class:__anon12583::CGPassManager::__anon12584::PrintCallGraphPass
607 : CallGraphSCCPass(ID), Banner(B), Out(o) {}
614 Out << Banner;
618 CGN->getFunction()->print(Out); variable
620 Out << "\nPrinting <null> Function\n";
/external/llvm/lib/LineEditor/
H A DLineEditor.cpp108 FILE *Out; member in struct:LineEditor::InternalData
129 FILE *Out = Data->Out; local
133 Data->ContinuationOutput.size(), 1, Out);
200 FILE *Out, FILE *Err)
207 Data->Out = Out;
212 Data->EL = ::el_init(ProgName.str().c_str(), In, Out, Err);
240 ::fwrite("\n", 1, 1, Data->Out);
284 FILE *Out; member in struct:LineEditor::InternalData
199 LineEditor(StringRef ProgName, StringRef HistoryPath, FILE *In, FILE *Out, FILE *Err) argument
287 LineEditor(StringRef ProgName, StringRef HistoryPath, FILE *In, FILE *Out, FILE *Err) argument
[all...]
/external/llvm/tools/llc/
H A Dllc.cpp359 std::unique_ptr<tool_output_file> Out = local
361 if (!Out) return 1;
387 raw_pwrite_stream *OS = &Out->os();
394 !Out->os().supportsSeeking()) ||
503 Out->os() << Buffer;
504 Out->keep();
510 Out->os() << Buffer;
515 Out->keep();
/external/llvm/tools/llvm-mc/
H A Dllvm-mc.cpp221 auto Out = llvm::make_unique<tool_output_file>(OutputFilename, EC, local
228 return Out;
481 std::unique_ptr<tool_output_file> Out = GetOutputStream(); local
482 if (!Out)
486 raw_pwrite_stream *OS = &Out->os();
521 if (!Out->os().supportsSeeking()) {
522 BOS = make_unique<buffer_ostream>(Out->os());
540 Res = AsLexInput(SrcMgr, *MAI, Out->os());
557 *Buffer, SrcMgr, Out->os());
560 if (Res == 0) Out
[all...]
/external/llvm/tools/obj2yaml/
H A Dcoff2yaml.cpp277 std::error_code coff2yaml(raw_ostream &Out, const object::COFFObjectFile &Obj) { argument
280 yaml::Output Yout(Out);
H A Delf2yaml.cpp426 static std::error_code elf2yaml(raw_ostream &Out, argument
434 yaml::Output Yout(Out);
440 std::error_code elf2yaml(raw_ostream &Out, const object::ObjectFile &Obj) { argument
442 return elf2yaml(Out, *ELFObj->getELFFile());
445 return elf2yaml(Out, *ELFObj->getELFFile());
448 return elf2yaml(Out, *ELFObj->getELFFile());
451 return elf2yaml(Out, *ELFObj->getELFFile());
H A Dmacho2yaml.cpp464 Error macho2yaml(raw_ostream &Out, const object::MachOObjectFile &Obj) { argument
473 yaml::Output Yout(Out);
478 Error macho2yaml(raw_ostream &Out, const object::MachOUniversalBinary &Obj) { argument
506 yaml::Output Yout(Out);
511 std::error_code macho2yaml(raw_ostream &Out, const object::Binary &Binary) { argument
513 if (auto Err = macho2yaml(Out, *MachOObj)) {
520 if (auto Err = macho2yaml(Out, *MachOObj)) {
/external/swiftshader/third_party/LLVM/lib/Analysis/IPA/
H A DCallGraphSCCPass.cpp582 raw_ostream &Out; // raw_ostream to print on. member in class:__anon19757::CGPassManager::__anon19758::PrintCallGraphPass
587 : CallGraphSCCPass(ID), Banner(B), Out(o) {}
594 Out << Banner;
596 (*I)->getFunction()->print(Out);
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DLoopPass.cpp31 raw_ostream &Out; // raw_ostream to print on. member in class:__anon19767::PrintLoopPass
36 : LoopPass(ID), Banner(B), Out(o) {}
43 Out << Banner;
47 (*b)->print(Out);
/external/swiftshader/third_party/LLVM/tools/llvm-mc/
H A DDisassembler.cpp58 SourceMgr &SM, raw_ostream &Out) {
86 Printer.printInst(&Inst, Out, "");
87 Out << "\n";
147 raw_ostream &Out) {
188 ErrorOccurred |= PrintInsts(*DisAsm, *IP, ByteArray, SM, Out);
206 raw_ostream &Out = *(raw_ostream *)((void **)Arg)[1]; local
209 Out << "[" << regName << "/" << R << "]";
212 Out << "(sp)";
214 Out << "(pc)";
222 raw_ostream &Out) {
56 PrintInsts(const MCDisassembler &DisAsm, MCInstPrinter &Printer, const ByteArrayTy &Bytes, SourceMgr &SM, raw_ostream &Out) argument
142 disassemble(const Target &T, const std::string &Triple, const std::string &Cpu, const std::string &FeaturesStr, MemoryBuffer &Buffer, raw_ostream &Out) argument
220 disassembleEnhanced(const std::string &TS, MemoryBuffer &Buffer, raw_ostream &Out) argument
[all...]
/external/swiftshader/third_party/LLVM/tools/opt/
H A Dopt.cpp150 raw_ostream &Out; member in struct:__anon20346::CallGraphSCCPassPrinter
154 CallGraphSCCPass(ID), PassToPrint(PI), Out(out) {
161 Out << "Printing analysis '" << PassToPrint->getPassName() << "':\n";
167 getAnalysisID<Pass>(PassToPrint->getTypeInfo()).print(Out,
186 raw_ostream &Out; member in struct:__anon20346::ModulePassPrinter
190 : ModulePass(ID), PassToPrint(PI), Out(out) {
197 Out << "Printing analysis '" << PassToPrint->getPassName() << "':\n";
200 getAnalysisID<Pass>(PassToPrint->getTypeInfo()).print(Out, &M);
215 raw_ostream &Out; member in struct:__anon20346::FunctionPassPrinter
220 : FunctionPass(ID), PassToPrint(PI), Out(ou
249 raw_ostream &Out; member in struct:__anon20346::LoopPassPrinter
282 raw_ostream &Out; member in struct:__anon20346::RegionPassPrinter
315 raw_ostream &Out; member in struct:__anon20346::BasicBlockPassPrinter
347 raw_ostream &Out; member in struct:__anon20346::BreakpointPrinter
513 OwningPtr<tool_output_file> Out; local
[all...]
/external/swiftshader/third_party/subzero/src/
H A DIceCfgNode.h119 void addOutEdge(CfgNode *Out) { OutEdges.push_back(Out); } argument

Completed in 636 milliseconds

12345678