Home
last modified time | relevance | path

Searched refs:OutputType (Results 1 – 14 of 14) sorted by relevance

/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/geometry/
Dvertexconversion.h31 typedef T OutputType; typedef
44 typedef ToT OutputType; typedef
57 typedef T OutputType;
70 typedef float OutputType;
96 typedef float OutputType;
156 typedef typename Converter::OutputType OutputType;
160 static const std::size_t finalSize = WidenRule::finalWidth * sizeof(OutputType);
162 … static void convertArray(const InputType *in, std::size_t stride, std::size_t n, OutputType *out)
168 copyComponent(out, ein, 0, static_cast<OutputType>(DefaultValueRule::zero()));
169 copyComponent(out, ein, 1, static_cast<OutputType>(DefaultValueRule::zero()));
[all …]
/external/chromium/sdch/open-vcdiff/src/google/
Dvcencoder.h189 template<class OutputType>
190 bool StartEncoding(OutputType* output) { in StartEncoding()
191 OutputString<OutputType> output_string(output); in StartEncoding()
204 template<class OutputType>
205 bool EncodeChunk(const char* data, size_t len, OutputType* output) { in EncodeChunk()
206 OutputString<OutputType> output_string(output); in EncodeChunk()
219 template<class OutputType>
220 bool FinishEncoding(OutputType* output) { in FinishEncoding()
221 OutputString<OutputType> output_string(output); in FinishEncoding()
272 template<class OutputType>
[all …]
Dvcdecoder.h81 template<class OutputType>
82 bool DecodeChunk(const char* data, size_t len, OutputType* output) { in DecodeChunk()
83 OutputString<OutputType> output_string(output); in DecodeChunk()
156 template<class OutputType>
160 OutputType* target) { in Decode()
161 OutputString<OutputType> output_string(target); in Decode()
/external/clang/lib/Driver/
DAction.cpp66 PreprocessJobAction::PreprocessJobAction(Action *Input, types::ID OutputType) in PreprocessJobAction() argument
67 : JobAction(PreprocessJobClass, Input, OutputType) { in PreprocessJobAction()
72 PrecompileJobAction::PrecompileJobAction(Action *Input, types::ID OutputType) in PrecompileJobAction() argument
73 : JobAction(PrecompileJobClass, Input, OutputType) { in PrecompileJobAction()
78 AnalyzeJobAction::AnalyzeJobAction(Action *Input, types::ID OutputType) in AnalyzeJobAction() argument
79 : JobAction(AnalyzeJobClass, Input, OutputType) { in AnalyzeJobAction()
84 MigrateJobAction::MigrateJobAction(Action *Input, types::ID OutputType) in MigrateJobAction() argument
85 : JobAction(MigrateJobClass, Input, OutputType) { in MigrateJobAction()
90 CompileJobAction::CompileJobAction(Action *Input, types::ID OutputType) in CompileJobAction() argument
91 : JobAction(CompileJobClass, Input, OutputType) { in CompileJobAction()
[all …]
/external/webkit/Source/WebCore/html/
DAsyncImageResizer.h65 enum OutputType { enum
80 …static PassRefPtr<AsyncImageResizer> create(CachedImage*, OutputType, IntSize desiredBounds, Scrip…
89 …AsyncImageResizer(CachedImage*, OutputType, IntSize desiredBounds, ScriptValue successCallback, Sc…
97 OutputType m_outputType;
DImageResizerThread.h45 …uffer> imageData, AsyncImageResizer::CallbackInfo*, AsyncImageResizer::OutputType, IntSize desired…
49 …ImageResizerThread(AsyncImageResizer::CallbackInfo*, AsyncImageResizer::OutputType, IntSize desire…
59 AsyncImageResizer::OutputType m_outputType;
DAsyncImageResizer.cpp43 PassRefPtr<AsyncImageResizer> AsyncImageResizer::create(CachedImage* cachedImage, OutputType output… in create()
48 AsyncImageResizer::AsyncImageResizer(CachedImage* cachedImage, OutputType outputType, IntSize desir… in AsyncImageResizer()
DImageResizerThread.cpp53 …ata, AsyncImageResizer::CallbackInfo* callbackInfo, AsyncImageResizer::OutputType outputType, IntS… in start()
65 …read(AsyncImageResizer::CallbackInfo* callbackInfo, AsyncImageResizer::OutputType outputType, IntS… in ImageResizerThread()
/external/clang/tools/driver/
Dcc1as_main.cpp99 FileType OutputType; member
126 OutputType = FT_Asm; in AssemblerInvocation()
205 unsigned OutputType = StringSwitch<unsigned>(Name) in CreateFromArgs() local
210 if (OutputType == ~0U) { in CreateFromArgs()
215 Opts.OutputType = FileType(OutputType); in CreateFromArgs()
290 bool IsBinary = Opts.OutputType == AssemblerInvocation::FT_Obj; in ExecuteAssembler()
324 if (Opts.OutputType == AssemblerInvocation::FT_Asm) { in ExecuteAssembler()
340 } else if (Opts.OutputType == AssemblerInvocation::FT_Null) { in ExecuteAssembler()
343 assert(Opts.OutputType == AssemblerInvocation::FT_Obj && in ExecuteAssembler()
/external/clang/include/clang/Driver/
DAction.h145 PreprocessJobAction(Action *Input, types::ID OutputType);
156 PrecompileJobAction(Action *Input, types::ID OutputType);
167 AnalyzeJobAction(Action *Input, types::ID OutputType);
178 MigrateJobAction(Action *Input, types::ID OutputType);
189 CompileJobAction(Action *Input, types::ID OutputType);
200 AssembleJobAction(Action *Input, types::ID OutputType);
/external/llvm/tools/bugpoint/
DExecutionDriver.cpp30 enum OutputType { enum
41 cl::opt<OutputType>
60 cl::opt<OutputType>
/external/zlib/src/contrib/dotzlib/DotZLib/
DDotZLib.csproj18 OutputType = "Library"
/external/clang/lib/CodeGen/
DCGStmt.cpp1476 QualType OutputType = OutExpr->getType(); in EmitAsmStmt() local
1479 if (getContext().getTypeSize(OutputType) < InputSize) { in EmitAsmStmt()
1546 QualType OutputType = S.getOutputExpr(Output)->getType(); in EmitAsmStmt() local
1549 if (getContext().getTypeSize(OutputType) > in EmitAsmStmt()
1554 llvm::Type *OutputTy = ConvertType(OutputType); in EmitAsmStmt()
/external/mesa3d/src/mesa/main/
Dmtypes.h1846 GLenum OutputType; /**< GL_POINTS, GL_LINE_STRIP or GL_TRIANGLE_STRIP */ member