Home
last modified time | relevance | path

Searched refs:inputType (Results 1 - 25 of 74) sorted by relevance

123

/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
H A DCodedInputStreamTest.java191 for (InputType inputType : InputType.values()) { in assertReadVarint()
194 CodedInputStream input = inputType.newDecoder(data, blockSize); in assertReadVarint()
195 assertEquals(inputType.name(), (int) value, input.readRawVarint32()); in assertReadVarint()
196 assertDataConsumed(inputType.name(), data, input); in assertReadVarint()
198 input = inputType.newDecoder(data, blockSize); in assertReadVarint()
199 assertEquals(inputType.name(), value, input.readRawVarint64()); in assertReadVarint()
200 assertDataConsumed(inputType.name(), data, input); in assertReadVarint()
202 input = inputType.newDecoder(data, blockSize); in assertReadVarint()
203 assertEquals(inputType.name(), value, input.readRawVarint64SlowPath()); in assertReadVarint()
204 assertDataConsumed(inputType in assertReadVarint()
[all...]
/third_party/skia/modules/svg/src/
H A DSkSVGFilterContext.cpp68 const SkSVGRenderContext& ctx, const SkSVGFeInputType& inputType) const { in getInput()
71 switch (inputType.type()) { in getInput()
102 const Result* res = findResultById(inputType.id()); in getInput()
115 SkDebugf("unhandled filter input type %d\n", (int)inputType.type()); in getInput()
123 const SkSVGRenderContext& ctx, const SkSVGFeInputType& inputType) const { in resolveInputColorspace()
124 return std::get<1>(this->getInput(ctx, inputType)); in resolveInputColorspace()
128 const SkSVGFeInputType& inputType) const { in resolveInput()
129 return std::get<0>(this->getInput(ctx, inputType)); in resolveInput()
133 const SkSVGFeInputType& inputType, in resolveInput()
135 auto [result, inputCS] = this->getInput(ctx, inputType); in resolveInput()
132 resolveInput(const SkSVGRenderContext& ctx, const SkSVGFeInputType& inputType, SkSVGColorspace colorspace) const resolveInput() argument
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/compute/
H A DvktComputeCooperativeMatrixTests.cpp98 VkComponentTypeNV inputType; member
176 (m_data.inputType == VK_COMPONENT_TYPE_FLOAT16_NV || m_data.outputType == VK_COMPONENT_TYPE_FLOAT16_NV)) in checkSupport()
205 if (p->AType == m_data.inputType && in checkSupport()
206 p->BType == m_data.inputType && in checkSupport()
216 VkComponentTypeNV types[2] = { m_data.inputType, m_data.outputType }; in checkSupport()
337 const char *typeStrA = componentTypeInfo[m_data.inputType].typeName; in initPrograms()
338 const char *typeStrB = componentTypeInfo[m_data.inputType].typeName; in initPrograms()
371 matAType << componentTypeInfo[m_data.inputType].coopmatTypeName << "<" << componentTypeInfo[m_data.inputType].bits << ", gl_ScopeSubgroup, " << dims[0].rows << ", " << dims[0].cols << ">"; in initPrograms()
372 matBType << componentTypeInfo[m_data.inputType] in initPrograms()
1322 VkComponentTypeNV inputType = (VkComponentTypeNV)dtCases[dtNdx].value[0]; createCooperativeMatrixTests() local
[all...]
/third_party/node/benchmark/url/
H A Durl-searchparams-creation.js62 inputType: ['string', 'iterable', 'object'],
66 function main({ n, type, inputType }) {
67 const inputs = paramGenerator(inputType);
H A Durl-searchparams-toString.js63 inputType: ['string', 'iterable', 'object'],
67 function main({ n, type, inputType }) {
68 const inputs = paramGenerator(inputType);
/third_party/vk-gl-cts/modules/glshared/
H A DglsDrawTest.cpp1015 void AttributeArray::setupArray (bool bound, int offset, int size, DrawTestSpec::InputType inputType, DrawTestSpec::OutputType outType, bool normalized, int stride, int instanceDivisor, const rr::GenericVec4& defaultAttrib, bool isPositionAttr, bool bgraComponentOrder) in setupArray() argument
1019 m_inputType = inputType; in setupArray()
2061 DrawTestSpec::AttributeSpec DrawTestSpec::AttributeSpec::createAttributeArray (InputType inputType, OutputType outputType, Storage storage, Usage usage, int componentCount, int offset, int stride, bool normalize, int instanceDivisor) in createAttributeArray() argument
2065 spec.inputType = inputType; in createAttributeArray()
2080 DrawTestSpec::AttributeSpec DrawTestSpec::AttributeSpec::createDefaultAttribute (InputType inputType, OutputType outputType, int componentCount) in createDefaultAttribute() argument
2082 DE_ASSERT(inputType == INPUTTYPE_INT || inputType == INPUTTYPE_UNSIGNED_INT || inputType == INPUTTYPE_FLOAT); in createDefaultAttribute()
2083 DE_ASSERT(inputType in createDefaultAttribute()
[all...]
H A DglsDrawTest.hpp194 static AttributeSpec createAttributeArray (InputType inputType, OutputType outputType, Storage storage, Usage usage, int componentCount, int offset, int stride, bool normalize, int instanceDivisor);
195 static AttributeSpec createDefaultAttribute (InputType inputType, OutputType outputType, int componentCount); //!< allowed inputType values: INPUTTYPE_INT, INPUTTYPE_UNSIGNED_INT, INPUTTYPE_FLOAT
197 InputType inputType; member
H A DglsVertexArrayTests.cpp469 void ContextArray::bind (int attribNdx, int offset, int size, InputType inputType, OutputType outType, bool normalized, int stride) in bind() argument
474 m_inputType = inputType; in bind()
1837 : inputType (inputType_) in ArraySpec()
1865 << Array::inputTypeToString((Array::InputType)array.inputType); in getName()
1866 if (array.inputType != Array::INPUTTYPE_UNSIGNED_INT_2_10_10_10 && array.inputType != Array::INPUTTYPE_INT_2_10_10_10) in getName()
1909 << "input datatype " << Array::inputTypeToString((Array::InputType)array.inputType) << ", " in getDesc()
1966 if (arraySpec.inputType == Array::INPUTTYPE_UNSIGNED_INT_2_10_10_10) in iterate()
1973 else if (arraySpec.inputType == Array::INPUTTYPE_INT_2_10_10_10) in iterate()
1981 coordScale = (arraySpec.normalize && !inputTypeIsFloatType(arraySpec.inputType) in iterate()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/compute/
H A DvktComputeCooperativeMatrixTests.cpp138 VkComponentTypeKHR inputType; member
344 (m_data.inputType == VK_COMPONENT_TYPE_FLOAT16_KHR || m_data.outputType == VK_COMPONENT_TYPE_FLOAT16_KHR)) in checkSupport()
366 if (p->AType == m_data.inputType && in checkSupport()
367 p->BType == m_data.inputType && in checkSupport()
376 const VkComponentTypeKHR types[2] = { m_data.inputType, m_data.outputType }; in checkSupport()
528 const char *typeStrA = componentTypeInfo[m_data.inputType].typeName; in initPrograms()
529 const char *typeStrB = componentTypeInfo[m_data.inputType].typeName; in initPrograms()
574 matAType << "coopmat<" << componentTypeInfo[m_data.inputType].typeName << ", gl_ScopeSubgroup, " << dims[0].rows << ", " << dims[0].cols << ", " << atype << ">"; in initPrograms()
575 matBType << "coopmat<" << componentTypeInfo[m_data.inputType].typeName << ", gl_ScopeSubgroup, " << dims[1].rows << ", " << dims[1].cols << ", " << btype << ">"; in initPrograms()
581 matAType << componentTypeInfo[m_data.inputType] in initPrograms()
1864 const VkComponentTypeKHR inputType = (VkComponentTypeKHR)dtCases[dtNdx].value[0]; createCooperativeMatrixTestsInternal() local
1934 const VkComponentTypeKHR inputType = (VkComponentTypeKHR)allTypes[dtNdx1]; createCooperativeMatrixTestsInternal() local
[all...]
/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/
H A DMethodDescriptor.cs45 private MessageDescriptor inputType; field in Google.Protobuf.Reflection.MethodDescriptor
56 public MessageDescriptor InputType { get { return inputType; } }
129 inputType = (MessageDescriptor) lookup; in CrossLink()
/third_party/vk-gl-cts/framework/referencerenderer/
H A DrrShaders.cpp30 GeometryShader::GeometryShader (size_t numVaryingInputs, size_t numVaryingOutputs, GeometryShaderInputType inputType, GeometryShaderOutputType outputType, size_t verticesOut, size_t numInvocations) in GeometryShader() argument
31 : m_inputType (inputType) in GeometryShader()
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl4cSparseTexture2Tests.cpp859 s.inputType = prefix + inputBase + "2D"; in createShaderTokens()
870 s.inputType = prefix + inputBase + "1D"; in createShaderTokens()
876 s.inputType = prefix + inputBase + "1DArray"; in createShaderTokens()
882 s.inputType = prefix + inputBase + "2DArray"; in createShaderTokens()
889 s.inputType = prefix + inputBase + "3D"; in createShaderTokens()
895 s.inputType = prefix + inputBase + "Cube"; in createShaderTokens()
901 s.inputType = prefix + inputBase + "CubeArray"; in createShaderTokens()
907 s.inputType = prefix + inputBase + "2DRect"; in createShaderTokens()
911 s.inputType = prefix + inputBase + "2DMS"; in createShaderTokens()
916 s.inputType in createShaderTokens()
2494 std::string inputType; createLookupShaderTokens() local
[all...]
/third_party/vk-gl-cts/external/openglcts/modules/common/
H A DglcGLSLVectorConstructorTests.cpp181 const auto& inputType = inputTypes[i]; in generateTestParams() local
182 testNameVs << "_" << inputType; in generateTestParams() local
183 testNameFs << "_" << inputType; in generateTestParams() local
188 testDescriptionVs << inputType; in generateTestParams() local
353 const auto& inputType = inputTypes[i]; in generateTestCode() local
354 const auto inputTypeInfo = dataTypeInfos.find(inputType); in generateTestCode()
/third_party/vk-gl-cts/modules/gles2/functional/
H A Des2fDrawTests.cpp87 spec.attribs[0].inputType = gls::DrawTestSpec::INPUTTYPE_FLOAT; in genBasicSpec()
98 spec.attribs[1].inputType = gls::DrawTestSpec::INPUTTYPE_FLOAT; in genBasicSpec()
160 spec.attribs[0].inputType = gls::DrawTestSpec::INPUTTYPE_FLOAT; in init()
195 spec.attribs[0].inputType = gls::DrawTestSpec::INPUTTYPE_FLOAT; in init()
206 spec.attribs[1].inputType = gls::DrawTestSpec::INPUTTYPE_FLOAT; in init()
241 spec.attribs[0].inputType = gls::DrawTestSpec::INPUTTYPE_FLOAT; in init()
267 spec.attribs[1].inputType = iopairs[ioNdx].input; in init()
618 attribSpec.inputType = random.chooseWeighted<gls::DrawTestSpec::InputType> (DE_ARRAY_BEGIN(inputTypes), DE_ARRAY_END(inputTypes), inputTypeWeights.weights); in init()
633 if (attribSpec.stride && attribSpec.componentCount * gls::DrawTestSpec::inputTypeSize(attribSpec.inputType) > attribSpec.stride) in init()
H A Des2fShaderMatrixTests.cpp113 : inputType (inputType_) in ShaderInput()
119 InputType inputType; member
651 InputType in0Type = in0.inputType == INPUTTYPE_DYNAMIC ? INPUTTYPE_DYNAMIC : INPUTTYPE_CONST; in getEvalFunc()
652 InputType in1Type = in1.inputType == INPUTTYPE_DYNAMIC ? INPUTTYPE_DYNAMIC : INPUTTYPE_CONST; in getEvalFunc()
775 bool isInDynMat0 = isDataTypeMatrix(m_in0.dataType) && m_in0.inputType == INPUTTYPE_DYNAMIC; in init()
776 bool isInDynMat1 = isDataTypeMatrix(m_in1.dataType) && m_in1.inputType == INPUTTYPE_DYNAMIC; in init()
831 if (in.inputType == INPUTTYPE_DYNAMIC) in init()
862 else if (in.inputType == INPUTTYPE_UNIFORM) in init()
867 else if (in.inputType == INPUTTYPE_CONST) in init()
1055 if (in.inputType in setupUniforms()
1156 const InputType inputType = inTypeList[inTypeNdx].type; init() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/geometry/
H A DvktGeometryTestsUtil.cpp306 std::string inputTypeToGLString (const VkPrimitiveTopology& inputType) in inputTypeToGLString() argument
308 switch (inputType) in inputTypeToGLString()
349 size_t calcOutputVertices (const VkPrimitiveTopology& inputType) in calcOutputVertices() argument
351 switch (inputType) in calcOutputVertices()
H A DvktGeometryTestsUtil.hpp110 std::string inputTypeToGLString (const vk::VkPrimitiveTopology& inputType);
112 std::size_t calcOutputVertices (const vk::VkPrimitiveTopology& inputType);
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/geometry/
H A DvktGeometryTestsUtil.cpp306 std::string inputTypeToGLString (const VkPrimitiveTopology& inputType) in inputTypeToGLString() argument
308 switch (inputType) in inputTypeToGLString()
349 size_t calcOutputVertices (const VkPrimitiveTopology& inputType) in calcOutputVertices() argument
351 switch (inputType) in calcOutputVertices()
H A DvktGeometryTestsUtil.hpp110 std::string inputTypeToGLString (const vk::VkPrimitiveTopology& inputType);
112 std::size_t calcOutputVertices (const vk::VkPrimitiveTopology& inputType);
/third_party/vk-gl-cts/framework/opengl/simplereference/
H A DsglrShaderProgram.cpp115 if (m_geometryDecl.inputType == rr::GEOMETRYSHADERINPUTTYPE_LAST || in valid()
121 if (m_geometryDecl.inputType != rr::GEOMETRYSHADERINPUTTYPE_LAST || in valid()
137 decl.m_geometryDecl.inputType, in ShaderProgram()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderrender/
H A DvktShaderRenderMatrixTests.cpp213 : inputType (inputType_) in ShaderInput()
219 InputType inputType; member
1472 if (in.inputType == INPUTTYPE_DYNAMIC && isDataTypeMatrix(in.dataType)) in ShaderMatrixInstance()
1580 if (in.inputType == INPUTTYPE_UNIFORM) in setupUniforms()
1640 new MatrixShaderEvaluator(getEvalFunc(in0, in1, op), in0.inputType, in1.inputType), in ShaderMatrixCase()
1665 bool isInDynMat0 = isDataTypeMatrix(m_in0.dataType) && m_in0.inputType == INPUTTYPE_DYNAMIC; in setupShader()
1666 bool isInDynMat1 = isDataTypeMatrix(m_in1.dataType) && m_in1.inputType == INPUTTYPE_DYNAMIC; in setupShader()
1754 if (in.inputType == INPUTTYPE_DYNAMIC) in setupShader()
1785 else if (in.inputType in setupShader()
2063 const InputType inputType = inTypeList[inTypeNdx].type; init() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderrender/
H A DvktShaderRenderMatrixTests.cpp213 : inputType (inputType_) in ShaderInput()
219 InputType inputType; member
1472 if (in.inputType == INPUTTYPE_DYNAMIC && isDataTypeMatrix(in.dataType)) in ShaderMatrixInstance()
1580 if (in.inputType == INPUTTYPE_UNIFORM) in setupUniforms()
1643 new MatrixShaderEvaluator(getEvalFunc(in0, in1, op), in0.inputType, in1.inputType), in ShaderMatrixCase()
1668 bool isInDynMat0 = isDataTypeMatrix(m_in0.dataType) && m_in0.inputType == INPUTTYPE_DYNAMIC; in setupShader()
1669 bool isInDynMat1 = isDataTypeMatrix(m_in1.dataType) && m_in1.inputType == INPUTTYPE_DYNAMIC; in setupShader()
1757 if (in.inputType == INPUTTYPE_DYNAMIC) in setupShader()
1788 else if (in.inputType in setupShader()
2045 const InputType inputType = inTypeList[inTypeNdx].type; init() local
[all...]
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fShaderMatrixTests.cpp219 : inputType (inputType_) in ShaderInput()
225 InputType inputType; member
1394 , m_matEvaluator (getEvalFunc(in0, in1, op), in0.inputType, in1.inputType) in ShaderMatrixCase()
1408 bool isInDynMat0 = isDataTypeMatrix(m_in0.dataType) && m_in0.inputType == INPUTTYPE_DYNAMIC; in init()
1409 bool isInDynMat1 = isDataTypeMatrix(m_in1.dataType) && m_in1.inputType == INPUTTYPE_DYNAMIC; in init()
1492 if (in.inputType == INPUTTYPE_DYNAMIC) in init()
1523 else if (in.inputType == INPUTTYPE_UNIFORM) in init()
1528 else if (in.inputType == INPUTTYPE_CONST) in init()
1754 if (in.inputType in setupUniforms()
1873 const InputType inputType = inTypeList[inTypeNdx].type; init() local
[all...]
/third_party/skia/gm/verifiers/
H A Dgmverifier.cpp44 GMVerifier::GMVerifier(InputType inputType) : fInputType(inputType) {} in GMVerifier() argument
/third_party/vk-gl-cts/modules/gles31/functional/
H A Des31fDrawElementsBaseVertexTests.cpp145 spec.attribs[0].inputType = gls::DrawTestSpec::INPUTTYPE_FLOAT; in genBasicSpec()
156 spec.attribs[1].inputType = gls::DrawTestSpec::INPUTTYPE_FLOAT; in genBasicSpec()
665 spec.attribs[0].inputType = gls::DrawTestSpec::INPUTTYPE_FLOAT; in init()
702 spec.attribs[0].inputType = gls::DrawTestSpec::INPUTTYPE_FLOAT; in init()
713 spec.attribs[1].inputType = gls::DrawTestSpec::INPUTTYPE_FLOAT; in init()
750 spec.attribs[0].inputType = gls::DrawTestSpec::INPUTTYPE_FLOAT; in init()
762 spec.attribs[1].inputType = gls::DrawTestSpec::INPUTTYPE_FLOAT; in init()
775 spec.attribs[2].inputType = gls::DrawTestSpec::INPUTTYPE_FLOAT; in init()
812 spec.attribs[0].inputType = gls::DrawTestSpec::INPUTTYPE_FLOAT; in init()
840 spec.attribs[1].inputType in init()
[all...]

Completed in 56 milliseconds

123