Searched refs:Out (Results 101 - 125 of 256) sorted by relevance

1234567891011

/external/llvm/tools/llvm-mc/
H A DDisassembler.cpp55 SourceMgr &SM, raw_ostream &Out,
163 raw_ostream &Out) {
224 ErrorOccurred |= PrintInsts(*DisAsm, ByteArray, SM, Out, Streamer,
53 PrintInsts(const MCDisassembler &DisAsm, const ByteArrayTy &Bytes, SourceMgr &SM, raw_ostream &Out, MCStreamer &Streamer, bool InAtomicBlock, const MCSubtargetInfo &STI) argument
157 disassemble(const Target &T, const std::string &Triple, MCSubtargetInfo &STI, MCStreamer &Streamer, MemoryBuffer &Buffer, SourceMgr &SM, raw_ostream &Out) argument
/external/clang/lib/CodeGen/
H A DCodeGenTBAA.cpp156 llvm::raw_svector_ostream Out(OutName);
157 MContext.mangleTypeName(QualType(ETy, 0), Out); local
158 Out.flush();
272 llvm::raw_svector_ostream Out(OutName);
273 MContext.mangleTypeName(QualType(Ty, 0), Out); local
274 Out.flush();
/external/clang/tools/driver/
H A Dcc1as_main.cpp260 // Make sure that the Out file gets unlinked from the disk if we get a
266 raw_fd_ostream *Out = local
272 delete Out;
276 return new formatted_raw_ostream(*Out, formatted_raw_ostream::DELETE_STREAM);
316 std::unique_ptr<formatted_raw_ostream> Out(
318 if (!Out)
368 Str.reset(TheTarget->createAsmStreamer(Ctx, *Out, /*asmverbose*/true,
380 Str.reset(TheTarget->createMCObjectStreamer(Opts.Triple, Ctx, *MAB, *Out,
404 Out.reset();
/external/llvm/lib/LTO/
H A DLTOCodeGenerator.cpp165 tool_output_file Out(path, ErrInfo, sys::fs::F_None);
173 WriteBitcodeToFile(IRLinker.getModule(), Out.os());
174 Out.os().close();
176 if (Out.os().has_error()) {
179 Out.os().clear_error();
183 Out.keep();
489 formatted_raw_ostream Out(out);
495 if (TargetMach->addPassesToEmitFile(codeGenPasses, Out,
/external/lzma/CPP/7zip/Compress/
H A DDeltaFilter.cpp101 static void *CreateCodec ## x ## Out() { return (void *)(ICompressFilter *)(new C ## x ## Encoder); }
105 #define METHOD_ITEM(x, id, name) { CreateCodec ## x, CreateCodec ## x ## Out, id, name, 1, true }
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmscnvrt.c693 int BlackPreservingGrayOnlySampler(register const cmsUInt16Number In[], register cmsUInt16Number Out[], register void* Cargo) argument
701 Out[0] = Out[1] = Out[2] = 0;
702 Out[3] = cmsEvalToneCurve16(bp->KTone, In[3]);
707 bp ->cmyk2cmyk ->Eval16Fn(In, Out, bp ->cmyk2cmyk->Data);
820 int BlackPreservingSampler(register const cmsUInt16Number In[], register cmsUInt16Number Out[], register void* Cargo) argument
839 Out[0] = Out[1] = Out[
[all...]
H A Dcmsgmt.c214 int GamutSampler(register const cmsUInt16Number In[], register cmsUInt16Number Out[], register void* Cargo) argument
250 Out[0] = 0;
255 Out[0] = 0;
259 Out[0] = (cmsUInt16Number) _cmsQuickFloor((dE1 - t->Thereshold) + .5);
270 Out[0] = (cmsUInt16Number) _cmsQuickFloor((ErrorRatio - t->Thereshold) + .5);
272 Out[0] = 0;
427 int EstimateTAC(register const cmsUInt16Number In[], register cmsUInt16Number Out[], register void * Cargo) argument
454 cmsUNUSED_PARAMETER(Out);
H A Dcmswtpnt.c332 cmsVEC3 In, Out; local
342 _cmsMAT3eval(&Out, &Bradford, &In);
344 Result -> X = Out.n[0];
345 Result -> Y = Out.n[1];
346 Result -> Z = Out.n[2];
/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/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DExceptionExtensions.cs71 ExceptionExtensions.PrintStackTrace(e, Console.Out);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DExceptionExtensions.cs79 e.PrintStackTrace( Console.Out );
/external/llvm/lib/Target/R600/
H A DAMDGPUAsmPrinter.h52 void getSIProgramInfo(SIProgramInfo &Out, MachineFunction &MF) const;
/external/llvm/test/MC/ARM/
H A Dthumb-diagnostics.s27 @ Out of range immediates for ASR instruction.
33 @ Out of range immediates for BKPT instruction.
43 @ Out of range immediates for v8 HLT instruction.
107 @ Out of range immediates for LSL instruction.
124 @ Out of range immediates for STR instruction.
138 @ Out of range immediate for SVC instruction.
149 @ Out of range immediate for ADD SP instructions
/external/llvm/tools/obj2yaml/
H A Delf2yaml.cpp278 static std::error_code elf2yaml(raw_ostream &Out, argument
286 yaml::Output Yout(Out);
292 std::error_code elf2yaml(raw_ostream &Out, const object::ObjectFile &Obj) { argument
294 return elf2yaml(Out, *ELFObj->getELFFile());
297 return elf2yaml(Out, *ELFObj->getELFFile());
300 return elf2yaml(Out, *ELFObj->getELFFile());
303 return elf2yaml(Out, *ELFObj->getELFFile());
/external/llvm/lib/Analysis/
H A DLoopPass.cpp32 raw_ostream &Out; // raw_ostream to print on. member in class:__anon25691::PrintLoopPass
37 : LoopPass(ID), Banner(B), Out(o) {}
44 Out << Banner;
49 (*b)->print(Out);
51 Out << "Printing <null> block";
/external/llvm/include/llvm/Support/
H A DOnDiskHashTable.h49 /// EmitKeyDataLength(raw_ostream &Out, key_type_ref Key, data_type_ref Data);
50 /// /// Write Key to Out. KeyLen is the length from EmitKeyDataLength.
51 /// static void EmitKey(raw_ostream &Out, key_type_ref Key,
53 /// /// Write Data to Out. DataLen is the length from EmitKeyDataLength.
54 /// static void EmitData(raw_ostream &Out, key_type_ref Key,
135 /// \brief Emit the table to Out, which must not be at offset 0.
136 offset_type Emit(raw_ostream &Out) { argument
138 return Emit(Out, InfoObj);
141 /// \brief Emit the table to Out, which must not be at offset 0.
144 offset_type Emit(raw_ostream &Out, Inf argument
[all...]
H A DOutputBuffer.h31 OutputBuffer(std::vector<unsigned char> &Out, argument
33 : Output(Out), is64Bit(is64bit), isLittleEndian(le) {}
50 // Out Functions - Output the specified value to the data buffer.
/external/clang/lib/ASTMatchers/Dynamic/
H A DMarshallers.h237 std::vector<DynTypedMatcher> &Out,
242 std::vector<DynTypedMatcher> &Out, TypeList) {
243 Out.push_back(ast_matchers::internal::Matcher<typename TypeList::head>(Poly));
244 mergePolyMatchers(Poly, Out, typename TypeList::tail());
263 VariantMatcher Out = VariantMatcher::PolymorphicMatcher(std::move(Matchers)); local
264 return Out;
323 VariantMatcher Out; local
325 Out = outvalueToVariantMatcher(
333 return Out;
484 std::vector<MatcherDescriptor *> &Out)
236 mergePolyMatchers(const PolyMatcher &Poly, std::vector<DynTypedMatcher> &Out, ast_matchers::internal::EmptyTypeList) argument
241 mergePolyMatchers(const PolyMatcher &Poly, std::vector<DynTypedMatcher> &Out, TypeList) argument
483 AdaptativeOverloadCollector(StringRef Name, std::vector<MatcherDescriptor *> &Out) argument
502 std::vector<MatcherDescriptor *> &Out; member in class:clang::ast_matchers::dynamic::internal::AdaptativeOverloadCollector
[all...]
/external/clang/lib/Serialization/
H A DGlobalModuleIndex.cpp661 EmitKeyDataLength(raw_ostream& Out, key_type_ref Key, data_type_ref Data) { argument
663 endian::Writer<little> LE(Out);
671 void EmitKey(raw_ostream& Out, key_type_ref Key, unsigned KeyLen) { argument
672 Out.write(Key.data(), KeyLen);
675 void EmitData(raw_ostream& Out, key_type_ref Key, data_type_ref Data, argument
679 endian::Writer<little>(Out).write<uint32_t>(Data[I]);
742 llvm::raw_svector_ostream Out(IdentifierTable);
744 endian::Writer<little>(Out).write<uint32_t>(0);
745 BucketOffset = Generator.Emit(Out, Trait);
832 llvm::raw_fd_ostream Out(TmpF
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DRetainCountChecker.cpp245 void print(raw_ostream &Out) const;
248 void RefVal::print(raw_ostream &Out) const {
250 Out << "Tracked " << T.getAsString() << '/';
253 Out << "(overridable) ";
258 Out << "Owned";
260 if (cnt) Out << " (+ " << cnt << ")";
265 Out << "NotOwned";
267 if (cnt) Out << " (+ " << cnt << ")";
272 Out << "ReturnedOwned";
274 if (cnt) Out << " (
3785 printState(raw_ostream &Out, ProgramStateRef State, const char *NL, const char *Sep) const argument
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
H A DDebugTreeGrammar.g357 Console.Out.WriteLine($expr.value + " (about " + result[0] + "*10^" + (result.Length-1) + ")");
H A DProfileTreeGrammar.g357 Console.Out.WriteLine($expr.value + " (about " + result[0] + "*10^" + (result.Length-1) + ")");
/external/chromium_org/mojo/nacl/generator/
H A Dinterface_dsl.py45 self.result_param.Out(self.return_type)
93 def Out(self, ty): member in class:Param
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DTreeRewriter.cs72 Console.Out.WriteLine(((CommonTree)t).ToStringTree() + " -> " +
/external/chromium_org/tools/win/ChromeDebug/LowLevel/
H A DNativeMethods.cs50 [Out] StringBuilder lpImageName, ref int size);

Completed in 4346 milliseconds

1234567891011