Searched defs:outputType (Results 1 - 25 of 36) 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/libgdx/gdx/src/com/badlogic/gdx/utils/
H A DJsonWriter.java32 private OutputType outputType = OutputType.json; field in class:JsonWriter
44 public void setOutputType (OutputType outputType) { argument
45 this.outputType = outputType;
60 writer.write(outputType.quoteName(name));
88 writer.write(outputType.quoteValue(value));
H A DJson.java52 private OutputType outputType; field in class:Json
65 outputType = OutputType.minimal;
68 public Json (OutputType outputType) { argument
69 this.outputType = outputType;
79 public void setOutputType (OutputType outputType) { argument
80 this.outputType = outputType;
247 this.writer.setOutputType(outputType);
1063 return new JsonReader().parse(json).prettyPrint(outputType, singleLineColumn
[all...]
H A DJsonValue.java913 public String toJson (OutputType outputType) { argument
916 json(this, buffer, outputType);
920 private void json (JsonValue object, StringBuilder buffer, OutputType outputType) { argument
930 buffer.append(outputType.quoteName(child.name));
932 json(child, buffer, outputType);
947 json(child, buffer, outputType);
955 buffer.append(outputType.quoteValue(object.asString()));
975 public String prettyPrint (OutputType outputType, int singleLineColumns) { argument
977 settings.outputType = outputType;
1141 public OutputType outputType; field in class:JsonValue.PrettyPrintSettings
[all...]
/external/icu/icu4c/source/tools/toolutil/
H A Ducm.h99 int8_t conversionType, outputType; member in struct:UCMStates
H A Dpkgitems.cpp453 uint8_t outputType; local
510 outputType=(uint8_t)mbcsHeaderFlags;
512 if(outputType==MBCS_OUTPUT_EXT_ONLY) {
/external/opencv3/modules/videoio/src/
H A Dcap_intelperc.cpp607 bool VideoCapture_IntelPerC::retrieveFrame(int outputType, cv::OutputArray frame) argument
609 switch (outputType)
/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.h148 * 7.. 0 outputType
172 * if(outputType==MBCS_OUTPUT_EXT_ONLY) {
201 * if(outputType==MBCS_OUTPUT_1) {
215 * if(outputType==MBCS_OUTPUT_1) {
228 * if(outputType!=MBCS_OUTPUT_1 &&
385 uint8_t outputType, unicodeMask; member in struct:UConverterMBCSTable
H A Ducnv_bld.cpp1340 uint8_t outputType; local
1455 outputType=(uint8_t)mbcsHeader.flags;
1456 if(noFromU && outputType==MBCS_OUTPUT_1) {
1463 switch(outputType) {
1476 outputType);
1491 if( outputType!=MBCS_OUTPUT_EXT_ONLY && outputType!=MBCS_OUTPUT_1 &&
1537 if(outputType==MBCS_OUTPUT_EXT_ONLY) {
1569 /* offset to the stage 1 table, independent of the outputType */
1572 if(outputType
[all...]
H A Ducnv2022.cpp1138 int outputType)
1156 if(outputType==MBCS_OUTPUT_2){
1163 } else /* outputType==MBCS_OUTPUT_3 */ {
1134 MBCS_FROM_UCHAR32_ISO2022(UConverterSharedData* sharedData, UChar32 c, uint32_t* value, UBool useFallback, int outputType) argument
H A Ducnvmbcs.cpp120 * use the special outputType MBCS_OUTPUT_EXT_ONLY.
873 if(mbcsTable->outputType==MBCS_OUTPUT_1) {
925 switch(mbcsTable->outputType) {
1061 sharedData->mbcs.outputType==MBCS_OUTPUT_DBCS_ONLY ?
1278 (mbcsTable->outputType==MBCS_OUTPUT_1 || mbcsTable->outputType==MBCS_OUTPUT_2_SISO) &&
1285 if(mbcsTable->outputType==MBCS_OUTPUT_1) {
1362 if(mbcsTable->outputType==MBCS_OUTPUT_1) {
1412 switch(mbcsTable->outputType) {
1453 switch(mbcsTable->outputType) {
1896 uint8_t outputType; local
4071 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))
2124 DrawTestSpec::AttributeSpec DrawTestSpec::AttributeSpec::createAttributeArray (InputType inputType, OutputType outputType, Storage storage, Usage usage, int componentCount, int offset, int stride, bool normalize, int instanceDivisor) argument
2129 spec.outputType = outputType;
2143 DrawTestSpec::AttributeSpec DrawTestSpec::AttributeSpec::createDefaultAttribute (InputType inputType, OutputType outputType, in argument
[all...]
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktOpaqueTypeIndexingTests.cpp473 const glu::DataType outputType = getSamplerOutputType(m_samplerType); local
475 const int outLookupStride = numInvocations*getDataTypeScalarSize(outputType);
572 TCU_CHECK_INTERNAL(getDataTypeScalarSize(outputType) == 1);
599 TCU_CHECK_INTERNAL(getDataTypeScalarSize(outputType) == 4);
608 if (outputType == glu::TYPE_FLOAT_VEC4)
H A DvktShaderExecutor.cpp531 static tcu::TextureFormat getRenderbufferFormatForOutput (const glu::VarType& outputType, bool useIntOutputs) argument
541 const glu::DataType basicType = outputType.getBasicType();
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DDescriptors.java1663 public Descriptor getOutputType() { return outputType; }
1678 private Descriptor outputType; field in class:Descriptors.MethodDescriptor
1712 outputType = (Descriptor)output;
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
H A DCharsetMBCS.java84 // depending on the outputType.
90 short outputType, unicodeMask; field in class:CharsetMBCS.UConverterMBCSTable
122 * swapLFNLFromUnicodeChars = t.swapLFNLFromUnicodeChars; fromUBytesLength = t.fromUBytesLength; outputType =
123 * t.outputType; unicodeMask = t.unicodeMask; swapLFNLName = t.swapLFNLName; baseSharedData = t.baseSharedData;
264 mbcsTable.outputType = (byte) header.flags;
268 // if(offset!=0 && mbcsTable.outputType == MBCS_OUTPUT_EXT_ONLY) {
269 if (mbcsTable.outputType == MBCS_OUTPUT_EXT_ONLY) {
297 if (mbcsTable.outputType == MBCS_OUTPUT_EXT_ONLY) {
349 * Set a special, runtime-only outputType if the extension converter is a DBCS version of a base converter
355 if (baseSharedData.mbcs.outputType
[all...]
/external/google-tv-pairing-protocol/java/jar/
H A Dprotobuf-java-2.2.0-lite.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/protobuf/ com/google/protobuf/UninitializedMessageException ...

Completed in 2567 milliseconds

12