Searched defs:outputType (Results 1 - 25 of 35) sorted by relevance

12

/external/deqp/framework/referencerenderer/
H A DrrShaders.cpp30 GeometryShader::GeometryShader (size_t numVaryingInputs, size_t numVaryingOutputs, GeometryShaderInputType inputType, GeometryShaderOutputType outputType, size_t verticesOut, size_t numInvocations) argument
32 , m_outputType (outputType)
/external/skia/src/gpu/glsl/
H A DGrGLSLGeometryShaderBuilder.cpp41 void GrGLSLGeometryBuilder::configure(InputType inputType, OutputType outputType, int maxVertices, argument
52 this->addLayoutQualifier(output_type_name(outputType), kOut_InterfaceQualifier);
/external/protobuf/csharp/src/Google.Protobuf/Reflection/
H A DMethodDescriptor.cs43 private MessageDescriptor outputType; field in class:Google.Protobuf.Reflection.MethodDescriptor
58 public MessageDescriptor OutputType { get { return outputType; } }
100 outputType = (MessageDescriptor) lookup;
/external/deqp/external/vulkancts/modules/vulkan/geometry/
H A DvktGeometryTestsUtil.hpp49 vk::VkPrimitiveTopology outputType; member in struct:vkt::geometry::PrimitiveTestSpec
165 std::string outputTypeToGLString (const vk::VkPrimitiveTopology& outputType);
H A DvktGeometryTestsUtil.cpp337 std::string outputTypeToGLString (const VkPrimitiveTopology& outputType) argument
339 switch (outputType)
/external/icu/icu4c/source/tools/toolutil/
H A Ducm.h101 int8_t conversionType, outputType; member in struct:UCMStates
H A Dpkgitems.cpp455 uint8_t outputType; local
512 outputType=(uint8_t)mbcsHeaderFlags;
514 if(outputType==MBCS_OUTPUT_EXT_ONLY) {
/external/protobuf/java/core/src/test/java/com/google/protobuf/
H A DCodedOutputStreamTest.java219 for (OutputType outputType : OutputType.values()) {
220 assertVarintRoundTrip(outputType, 0L);
223 assertVarintRoundTrip(outputType, value);
224 assertVarintRoundTrip(outputType, value + 1);
225 assertVarintRoundTrip(outputType, value - 1);
226 assertVarintRoundTrip(outputType, -value);
320 for (OutputType outputType : OutputType.values()) {
321 Coder coder = outputType.newCoder(message.getSerializedSize());
325 assertEqualBytes(outputType, expectedBytes, rawBytes);
345 for (OutputType outputType
655 testEncodingOfString(OutputType outputType, char c, int length) argument
696 assertEqualBytes(OutputType outputType, byte[] a, byte[] b) argument
753 assertVarintRoundTrip(OutputType outputType, long value) argument
[all...]
/external/deqp/framework/opengl/simplereference/
H A DsglrShaderProgram.hpp132 , outputType (outputType_)
139 rr::GeometryShaderOutputType outputType; member in struct:sglr::pdec::GeometryShaderDeclaration
/external/deqp/modules/gles3/functional/
H A Des3fFboTestUtil.cpp77 FlatColorShader::FlatColorShader (glu::DataType outputType) argument
81 << sglr::pdec::FragmentOutput(mapDataTypeToGenericVecType(outputType))
94 "layout(location = 0) out highp ") + glu::getDataTypeName(outputType) + " o_color;\n"
97 " o_color = " + glu::getDataTypeName(outputType) + "(u_color);\n"
99 , m_outputType(outputType)
151 GradientShader::GradientShader (glu::DataType outputType) argument
156 << sglr::pdec::FragmentOutput(mapDataTypeToGenericVecType(outputType))
175 "layout(location = 0) out highp ") + glu::getDataTypeName(outputType) + " o_color;\n"
183 " o_color = " + glu::getDataTypeName(outputType) + "(u_gradientMin + (u_gradientMax-u_gradientMin)*fv);\n"
185 , m_outputType(outputType)
234 genTexFragmentShader(const vector<glu::DataType>& samplerTypes, glu::DataType outputType) argument
273 genTexture2DShaderDecl(const DataTypes& samplerTypes, glu::DataType outputType) argument
307 Texture2DShader(const DataTypes& samplerTypes, glu::DataType outputType, const Vec4& outScale, const Vec4& outBias) argument
422 TextureCubeShader(glu::DataType samplerType, glu::DataType outputType) argument
560 Texture2DArrayShader(glu::DataType samplerType, glu::DataType outputType) argument
668 Texture3DShader(glu::DataType samplerType, glu::DataType outputType) argument
776 DepthGradientShader(glu::DataType outputType) argument
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fFboTestUtil.cpp77 static string genTexFragmentShader (const vector<glu::DataType>& samplerTypes, glu::DataType outputType) argument
83 << "layout(location = 0) out highp " << glu::getDataTypeName(outputType) << " o_color0;\n";
109 src << " o_color0 = " << glu::getDataTypeName(outputType) << "(out0 * u_outScale0 + u_outBias0);\n";
116 static sglr::pdec::ShaderProgramDeclaration genTexture2DShaderDecl (const DataTypes& samplerTypes, glu::DataType outputType) argument
123 decl << sglr::pdec::FragmentOutput(mapDataTypeToGenericVecType(outputType));
135 decl << sglr::pdec::FragmentSource(genTexFragmentShader(samplerTypes.vec, outputType));
150 Texture2DShader::Texture2DShader (const DataTypes& samplerTypes, glu::DataType outputType, const Vec4& outScale, const Vec4& outBias) argument
151 : sglr::ShaderProgram (genTexture2DShaderDecl(samplerTypes, outputType))
154 , m_outputType (outputType)
265 TextureCubeArrayShader::TextureCubeArrayShader (glu::DataType samplerType, glu::DataType outputType) argument
[all...]
H A Des31fOpaqueTypeIndexingTests.cpp491 const DataType outputType = getSamplerOutputType(m_samplerType); local
493 const int outLookupStride = numInvocations*getDataTypeScalarSize(outputType);
593 TCU_CHECK_INTERNAL(getDataTypeScalarSize(outputType) == 1);
620 TCU_CHECK_INTERNAL(getDataTypeScalarSize(outputType) == 4);
629 if (outputType == TYPE_FLOAT_VEC4)
H A Des31fGeometryShaderTests.cpp144 std::string outputTypeToGLString (rr::GeometryShaderOutputType outputType) argument
146 switch (outputType)
200 VertexExpanderShader (const glu::ContextType& contextType, rr::GeometryShaderInputType inputType, rr::GeometryShaderOutputType outputType);
208 std::string genGeometrySource (const glu::ContextType& contextType, rr::GeometryShaderInputType inputType, rr::GeometryShaderOutputType outputType) const;
211 VertexExpanderShader::VertexExpanderShader (const glu::ContextType& contextType, rr::GeometryShaderInputType inputType, rr::GeometryShaderOutputType outputType) argument
220 << sglr::pdec::GeometryShaderDeclaration(inputType, outputType, calcOutputVertices(inputType))
221 << sglr::pdec::GeometrySource(genGeometrySource(contextType, inputType, outputType).c_str()))
282 std::string VertexExpanderShader::genGeometrySource (const glu::ContextType& contextType, rr::GeometryShaderInputType inputType, rr::GeometryShaderOutputType outputType) const
289 str << "layout(" << outputTypeToGLString(outputType) << ", max_vertices = " << calcOutputVertices(inputType) << ") out;";
299 VertexEmitterShader (const glu::ContextType& contextType, int emitCountA, int endCountA, int emitCountB, int endCountB, rr::GeometryShaderOutputType outputType);
314 VertexEmitterShader(const glu::ContextType& contextType, int emitCountA, int endCountA, int emitCountB, int endCountB, rr::GeometryShaderOutputType outputType) argument
2229 EmitTest(Context& context, const char* name, const char* desc, int emitCountA, int endCountA, int emitCountB, int endCountB, GLenum outputType) argument
[all...]
/external/icu/icu4c/source/common/
H A Ducnvmbcs.h150 * 7.. 0 outputType
174 * if(outputType==MBCS_OUTPUT_EXT_ONLY) {
203 * if(outputType==MBCS_OUTPUT_1) {
217 * if(outputType==MBCS_OUTPUT_1) {
230 * if(outputType!=MBCS_OUTPUT_1 &&
387 uint8_t outputType, unicodeMask; member in struct:UConverterMBCSTable
H A Ducnv_bld.cpp1342 uint8_t outputType; local
1457 outputType=(uint8_t)mbcsHeader.flags;
1458 if(noFromU && outputType==MBCS_OUTPUT_1) {
1465 switch(outputType) {
1478 outputType);
1493 if( outputType!=MBCS_OUTPUT_EXT_ONLY && outputType!=MBCS_OUTPUT_1 &&
1539 if(outputType==MBCS_OUTPUT_EXT_ONLY) {
1571 /* offset to the stage 1 table, independent of the outputType */
1574 if(outputType
[all...]
H A Ducnv2022.cpp1127 int outputType)
1145 if(outputType==MBCS_OUTPUT_2){
1152 } else /* outputType==MBCS_OUTPUT_3 */ {
1123 MBCS_FROM_UCHAR32_ISO2022(UConverterSharedData* sharedData, UChar32 c, uint32_t* value, UBool useFallback, int outputType) argument
H A Ducnvmbcs.cpp122 * use the special outputType MBCS_OUTPUT_EXT_ONLY.
876 if(mbcsTable->outputType==MBCS_OUTPUT_1) {
928 switch(mbcsTable->outputType) {
1067 sharedData->mbcs.outputType==MBCS_OUTPUT_DBCS_ONLY ?
1284 (mbcsTable->outputType==MBCS_OUTPUT_1 || mbcsTable->outputType==MBCS_OUTPUT_2_SISO) &&
1291 if(mbcsTable->outputType==MBCS_OUTPUT_1) {
1368 if(mbcsTable->outputType==MBCS_OUTPUT_1) {
1418 switch(mbcsTable->outputType) {
1459 switch(mbcsTable->outputType) {
1902 uint8_t outputType; local
4081 uint8_t outputType; local
[all...]
/external/deqp/modules/glshared/
H A DglsDrawTest.hpp189 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; member in struct:deqp::gls::DrawTestSpec::AttributeSpec
H A DglsShaderExecUtil.cpp537 static tcu::TextureFormat getRenderbufferFormatForOutput (const glu::VarType& outputType, bool useIntOutputs) argument
547 const glu::DataType basicType = outputType.getBasicType();
H A DglsVertexArrayTests.hpp457 ArraySpec (Array::InputType inputType, Array::OutputType outputType, Array::Storage storage, Array::Usage usage, int componetCount, int offset, int stride, bool normalize, GLValue min, GLValue max);
460 Array::OutputType outputType; member in class:deqp::gls::MultiVertexArrayTest::Spec::ArraySpec
H A DglsDrawTest.cpp305 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))
2040 DrawTestSpec::AttributeSpec DrawTestSpec::AttributeSpec::createAttributeArray (InputType inputType, OutputType outputType, Storage storage, Usage usage, int componentCount, int offset, int stride, bool normalize, int instanceDivisor) argument
2045 spec.outputType = outputType;
2059 DrawTestSpec::AttributeSpec DrawTestSpec::AttributeSpec::createDefaultAttribute (InputType inputType, OutputType outputType, in argument
[all...]
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktOpaqueTypeIndexingTests.cpp765 const glu::DataType outputType = getSamplerOutputType(m_samplerType); local
767 const int outLookupStride = numInvocations*getDataTypeScalarSize(outputType);
986 TCU_CHECK_INTERNAL(getDataTypeScalarSize(outputType) == 1);
1013 TCU_CHECK_INTERNAL(getDataTypeScalarSize(outputType) == 4);
1022 if (outputType == glu::TYPE_FLOAT_VEC4)
H A DvktShaderExecutor.cpp521 static tcu::TextureFormat getRenderbufferFormatForOutput (const glu::VarType& outputType, bool useIntOutputs) argument
531 const glu::DataType basicType = outputType.getBasicType();
/external/protobuf/java/core/src/main/java/com/google/protobuf/
H A DDescriptors.java1956 public Descriptor getOutputType() { return outputType; }
1971 private Descriptor outputType; field in class:Descriptors.MethodDescriptor
2005 outputType = (Descriptor)output;
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
H A DCharsetMBCS.java83 // depending on the outputType.
89 short outputType, unicodeMask; field in class:CharsetMBCS.UConverterMBCSTable
121 * swapLFNLFromUnicodeChars = t.swapLFNLFromUnicodeChars; fromUBytesLength = t.fromUBytesLength; outputType =
122 * t.outputType; unicodeMask = t.unicodeMask; swapLFNLName = t.swapLFNLName; baseSharedData = t.baseSharedData;
259 mbcsTable.outputType = (byte) header.flags;
263 // if(offset!=0 && mbcsTable.outputType == MBCS_OUTPUT_EXT_ONLY) {
264 if (mbcsTable.outputType == MBCS_OUTPUT_EXT_ONLY) {
292 if (mbcsTable.outputType == MBCS_OUTPUT_EXT_ONLY) {
344 * Set a special, runtime-only outputType if the extension converter is a DBCS version of a base converter
350 if (baseSharedData.mbcs.outputType
[all...]

Completed in 1496 milliseconds

12