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

1 2 3 4 5 6

  /art/tools/dexfuzz/src/dexfuzz/program/mutators/
ValuePrinter.java 68 if (getInstructionOutputType(mInsn) != OutputType.UNKNOWN) {
94 if (getInstructionOutputType(insnOutputToPrint) == OutputType.UNKNOWN) {
119 OutputType outputType = getInstructionOutputType(insnOutputToPrint);
121 if (outputType == OutputType.UNKNOWN) {
128 outputType.getSignatureForPrintln());
132 if (outputType == OutputType.LONG || outputType == OutputType.DOUBLE)
    [all...]
  /prebuilts/gdb/darwin-x86/include/python2.7/
cStringIO.h 60 PyTypeObject *InputType, *OutputType;
68 (Py_TYPE(O)==PycStringIO->OutputType)
  /prebuilts/gdb/linux-x86/include/python2.7/
cStringIO.h 60 PyTypeObject *InputType, *OutputType;
68 (Py_TYPE(O)==PycStringIO->OutputType)
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
cStringIO.h 60 PyTypeObject *InputType, *OutputType;
68 (Py_TYPE(O)==PycStringIO->OutputType)
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
cStringIO.h 60 PyTypeObject *InputType, *OutputType;
68 (Py_TYPE(O)==PycStringIO->OutputType)
  /external/gemmlowp/internal/
output_neon.h 45 typedef NEONFragmentInt32x16x1 OutputType;
50 OutputType Eval(InputType input, int row, int col) const {
51 OutputType output;
69 typedef NEONFragmentInt32x4x1 OutputType;
74 OutputType Eval(InputType input, int, int) const {
96 typedef NEONFragmentInt32x4x1 OutputType;
102 OutputType Eval(InputType input, int row, int col) const {
126 typedef NEONFragmentInt32x4x1 OutputType;
132 OutputType Eval(InputType input, int row, int col) const {
154 typedef NEONFragmentUint8x4x1 OutputType;
    [all...]
output.h 76 // Each specialization provides a OutputType typedef and an Eval function
77 // returning OutputType. The OutputType typically depends on the InputType.
106 typedef FragmentInt32x1x1 OutputType;
111 OutputType Eval(InputType input, int, int) const {
129 typedef FragmentInt32x1x1 OutputType;
135 OutputType Eval(InputType input, int row, int col) const {
153 typedef FragmentInt32x1x1 OutputType;
159 OutputType Eval(InputType input, int row, int col) const {
177 typedef FragmentUint8x1x1 OutputType;
    [all...]
  /external/clang/lib/Driver/
Action.cpp 89 types::ID OutputType)
90 : JobAction(PreprocessJobClass, std::move(Input), OutputType) {}
95 types::ID OutputType)
96 : JobAction(PrecompileJobClass, std::move(Input), OutputType) {}
101 types::ID OutputType)
102 : JobAction(AnalyzeJobClass, std::move(Input), OutputType) {}
107 types::ID OutputType)
108 : JobAction(MigrateJobClass, std::move(Input), OutputType) {}
113 types::ID OutputType)
114 : JobAction(CompileJobClass, std::move(Input), OutputType) {}
    [all...]
  /external/deqp/modules/glshared/
glsDrawTest.hpp 77 enum OutputType
178 static std::string outputTypeToString (OutputType type);
189 static AttributeSpec createAttributeArray (InputType inputType, OutputType outputType, Storage storage, Usage usage, int componentCount, int offset, int stride, bool normalize, int instanceDivisor);
190 static AttributeSpec createDefaultAttribute (InputType inputType, OutputType outputType, int componentCount); //!< allowed inputType values: INPUTTYPE_INT, INPUTTYPE_UNSIGNED_INT, INPUTTYPE_FLOAT
193 OutputType outputType;
glsVertexArrayTests.hpp 86 enum OutputType
145 static std::string outputTypeToString (OutputType type);
154 virtual void bind (int attribNdx, int offset, int size, InputType inType, OutputType outType, bool normalized, int stride) = 0;
161 virtual OutputType getOutputType (void) const = 0;
176 virtual void bind (int attribNdx, int offset, int size, InputType inType, OutputType outType, bool normalized, int stride);
184 virtual Array::OutputType getOutputType (void) const { return m_outputType; }
195 static std::string outputTypeToGLType (Array::OutputType type);
210 Array::OutputType m_outputType;
457 ArraySpec (Array::InputType inputType, Array::OutputType outputType, Array::Storage storage, Array::Usage usage, int componetCount, int offset, int stride, bool norma (…)
    [all...]
glsDrawTest.cpp 132 static std::string outputTypeToGLType (DrawTestSpec::OutputType type)
201 static bool outputTypeIsFloatType (DrawTestSpec::OutputType type)
212 static bool outputTypeIsIntType (DrawTestSpec::OutputType type)
223 static bool outputTypeIsUintType (DrawTestSpec::OutputType type)
305 if (outputTypeIsFloatType(a.attribs[ndx].outputType) && outputTypeIsFloatType(b.attribs[ndx].outputType))
307 if (outputTypeIsIntType(a.attribs[ndx].outputType) && outputTypeIsIntType(b.attribs[ndx].outputType))
309 if (outputTypeIsUintType(a.attribs[ndx].outputType) && outputTypeIsUintType(b.attribs[ndx].outputType))
    [all...]
glsVertexArrayTests.cpp 102 std::string Array::outputTypeToString(OutputType type)
208 static bool outputTypeIsFloatType (Array::OutputType type)
532 void ContextArray::bind (int attribNdx, int offset, int size, InputType inputType, OutputType outType, bool normalized, int stride)
683 std::string ContextArray::outputTypeToGLType (Array::OutputType type)
757 static rr::GenericVecType mapOutputType (const Array::OutputType& type);
758 static int getComponentCount (const Array::OutputType& type);
1065 rr::GenericVecType ContextShaderProgram::mapOutputType (const Array::OutputType& type)
1093 int ContextShaderProgram::getComponentCount (const Array::OutputType& type)
    [all...]
  /external/clang/include/clang/Driver/
Action.h 188 PreprocessJobAction(std::unique_ptr<Action> Input, types::ID OutputType);
198 PrecompileJobAction(std::unique_ptr<Action> Input, types::ID OutputType);
208 AnalyzeJobAction(std::unique_ptr<Action> Input, types::ID OutputType);
218 MigrateJobAction(std::unique_ptr<Action> Input, types::ID OutputType);
228 CompileJobAction(std::unique_ptr<Action> Input, types::ID OutputType);
238 BackendJobAction(std::unique_ptr<Action> Input, types::ID OutputType);
248 AssembleJobAction(std::unique_ptr<Action> Input, types::ID OutputType);
  /frameworks/compile/slang/
llvm-rs-cc.cpp 69 slang::Slang::OutputType OutputType,
71 if (OutputType == slang::Slang::OT_Nothing)
86 if (OutputType == slang::Slang::OT_Dependency) {
95 switch (OutputType) {
slang_backend.h 67 Slang::OutputType mOT;
160 Slang::OutputType OT,
rs_cc_options.h 52 slang::Slang::OutputType mOutputType;
slang.h 77 enum OutputType {
148 OutputType mOT;
210 OutputType OT);
237 void setOutputType(OutputType OT) { mOT = OT; }
  /external/clang/tools/driver/
cc1as_main.cpp 109 FileType OutputType;
141 OutputType = FT_Asm;
228 unsigned OutputType = StringSwitch<unsigned>(Name)
233 if (OutputType == ~0U) {
237 Opts.OutputType = FileType(OutputType);
318 bool IsBinary = Opts.OutputType == AssemblerInvocation::FT_Obj;
374 if (Opts.OutputType == AssemblerInvocation::FT_Asm) {
387 } else if (Opts.OutputType == AssemblerInvocation::FT_Null) {
390 assert(Opts.OutputType == AssemblerInvocation::FT_Obj &
    [all...]
  /external/llvm/tools/bugpoint/
ExecutionDriver.cpp 28 // OutputType - Allow the user to specify the way code should be run, to test
31 enum OutputType {
42 cl::opt<OutputType>
61 cl::opt<OutputType>
  /external/libchrome/base/strings/
string_split.cc 21 // The default converter is a NOP, it works when the OutputType is the
23 template<typename Str, typename OutputType>
24 OutputType PieceToOutputType(BasicStringPiece<Str> piece) {
  /external/webrtc/webrtc/modules/audio_device/android/
audio_device_template.h 27 // InputType/OutputType can be any class that implements the capturing/rendering
30 // internal implementation of InputType and OutputType will RTC_DCHECK if that
32 // thread. See comments in each InputType/OutputType class for more info.
37 template <class InputType, class OutputType>
498 OutputType output_;
  /external/skia/src/gpu/effects/
GrPorterDuffXferProcessor.cpp 33 enum OutputType {
73 template<OutputType PrimaryOut, OutputType SecondaryOut,
106 OutputType fPrimaryOutputType : 4;
107 OutputType fSecondaryOutputType : 4;
387 BlendFormula::OutputType outputType, const char* output,
389 switch (outputType) {
    [all...]
  /prebuilts/tools/common/m2/repository/org/seleniumhq/selenium/selenium-api/2.42.2/
selenium-api-2.42.2.jar 
  /external/deqp/modules/gles2/stress/
es2sDrawTests.cpp 61 spec.attribs[0].outputType = gls::DrawTestSpec::OUTPUTTYPE_VEC2;
72 spec.attribs[1].outputType = gls::DrawTestSpec::OUTPUTTYPE_VEC2;
279 gls::DrawTestSpec::OutputType outputTypes[] =
333 attribSpec.outputType = random.chooseWeighted<gls::DrawTestSpec::OutputType> (DE_ARRAY_BEGIN(outputTypes), DE_ARRAY_END(outputTypes), outputTypeWeights.weights);
375 if (spec.attribs[0].outputType == gls::DrawTestSpec::OUTPUTTYPE_FLOAT || spec.attribs[0].outputType == gls::DrawTestSpec::OUTPUTTYPE_INT || spec.attribs[0].outputType == gls::DrawTestSpec::OUTPUTTYPE_UINT)
  /external/deqp/modules/gles31/stress/
es31sDrawTests.cpp 404 gls::DrawTestSpec::OutputType outputTypes[] =
481 attribSpec.outputType = random.chooseWeighted<gls::DrawTestSpec::OutputType> (DE_ARRAY_BEGIN(outputTypes), DE_ARRAY_END(outputTypes), outputTypeWeights.weights);
523 if (spec.attribs[0].outputType == gls::DrawTestSpec::OUTPUTTYPE_FLOAT || spec.attribs[0].outputType == gls::DrawTestSpec::OUTPUTTYPE_INT || spec.attribs[0].outputType == gls::DrawTestSpec::OUTPUTTYPE_UINT)

Completed in 428 milliseconds

1 2 3 4 5 6