Home
last modified time | relevance | path

Searched refs:TYPE_DOUBLE (Results 1 - 25 of 60) sorted by relevance

123

/third_party/vk-gl-cts/framework/opengl/
H A DgluShaderUtil.cpp484 TYPE_DOUBLE, // double in getDataTypeScalarType()
485 TYPE_DOUBLE, // dvec2 in getDataTypeScalarType()
486 TYPE_DOUBLE, // dvec3 in getDataTypeScalarType()
487 TYPE_DOUBLE, // dvec4 in getDataTypeScalarType()
488 TYPE_DOUBLE, // dmat2 in getDataTypeScalarType()
489 TYPE_DOUBLE, // dmat2x3 in getDataTypeScalarType()
490 TYPE_DOUBLE, // dmat2x4 in getDataTypeScalarType()
491 TYPE_DOUBLE, // dmat3x2 in getDataTypeScalarType()
492 TYPE_DOUBLE, // dmat3 in getDataTypeScalarType()
493 TYPE_DOUBLE, // dmat3x in getDataTypeScalarType()
[all...]
H A DgluShaderUtil.hpp128 TYPE_DOUBLE, enumerator
278 inline bool isDataTypeDoubleType (DataType dataType) { return (dataType >= TYPE_DOUBLE) && (dataType <= TYPE_DOUBLE_MAT4); } in isDataTypeDoubleType()
279 inline bool isDataTypeDoubleOrDVec (DataType dataType) { return (dataType >= TYPE_DOUBLE) && (dataType <= TYPE_DOUBLE_VEC4); } in isDataTypeDoubleOrDVec()
295 || (dataType == TYPE_DOUBLE) in isDataTypeScalar()
321 || deInRange32(dataType, TYPE_DOUBLE, TYPE_DOUBLE_VEC4) in isDataTypeScalarOrVector()
345 || deInRange32(dataType, TYPE_DOUBLE, TYPE_DOUBLE_MAT4) in isDataTypeExplicitPrecision()
362 template <> struct DataTypeTraits<double> { enum { DATATYPE = TYPE_DOUBLE }; };
401 DE_STATIC_ASSERT(TYPE_DOUBLE_VEC4 == TYPE_DOUBLE + 3);
/third_party/protobuf/src/google/protobuf/util/internal/
H A Ddatapiece.cc120 if (type_ == TYPE_DOUBLE) in ToInt32()
133 if (type_ == TYPE_DOUBLE) in ToUint32()
145 if (type_ == TYPE_DOUBLE) in ToInt64()
158 if (type_ == TYPE_DOUBLE) in ToUint64()
188 if (type_ == TYPE_DOUBLE) { in ToFloat()
240 case TYPE_DOUBLE: in ValueAsStringOrDefault()
344 case TYPE_DOUBLE: in GenericConvert()
408 case TYPE_DOUBLE: in InternalCopy()
H A Ddatapiece.h68 TYPE_DOUBLE = 5, enumerator
87 : type_(TYPE_DOUBLE), in DataPiece()
H A Dobject_writer.cc60 case DataPiece::TYPE_DOUBLE: { in RenderDataPieceTo()
/third_party/protobuf/php/src/Google/Protobuf/Internal/FieldDescriptorProto/
H A DType.php18 * Generated from protobuf enum <code>TYPE_DOUBLE = 1;</code>
20 const TYPE_DOUBLE = 1;
110 self::TYPE_DOUBLE => 'TYPE_DOUBLE',
/third_party/protobuf/php/src/Google/Protobuf/Field/
H A DKind.php25 * Generated from protobuf enum <code>TYPE_DOUBLE = 1;</code>
27 const TYPE_DOUBLE = 1;
133 self::TYPE_DOUBLE => 'TYPE_DOUBLE',
/third_party/protobuf/python/google/protobuf/internal/
H A Dtype_checkers.py319 _FieldDescriptor.TYPE_DOUBLE: wire_format.DoubleByteSize,
342 _FieldDescriptor.TYPE_DOUBLE: encoder.DoubleEncoder,
365 _FieldDescriptor.TYPE_DOUBLE: encoder.DoubleSizer,
388 _FieldDescriptor.TYPE_DOUBLE: decoder.DoubleDecoder,
410 _FieldDescriptor.TYPE_DOUBLE: wire_format.WIRETYPE_FIXED64,
/third_party/protobuf/src/google/protobuf/compiler/csharp/
H A Dcsharp_field_base.cc230 case FieldDescriptor::TYPE_DOUBLE: in type_name()
272 case FieldDescriptor::TYPE_DOUBLE: in has_default_value()
350 case FieldDescriptor::TYPE_DOUBLE: { in default_value()
420 case FieldDescriptor::TYPE_DOUBLE: in capitalized_type_name()
H A Dcsharp_primitive_field.cc229 } else if (descriptor_->type() == FieldDescriptor::TYPE_DOUBLE) { in WriteHash()
238 } else if (descriptor_->type() == FieldDescriptor::TYPE_DOUBLE) { in WriteEquals()
H A Dcsharp_wrapper_field.cc163 else if (descriptor_->message_type()->field(0)->type() == FieldDescriptor::TYPE_DOUBLE) { in WriteHash()
174 else if (descriptor_->message_type()->field(0)->type() == FieldDescriptor::TYPE_DOUBLE) { in WriteEquals()
H A Dcsharp_helpers.cc87 case FieldDescriptor::TYPE_DOUBLE: in GetCSharpType()
445 case FieldDescriptor::TYPE_DOUBLE : return internal::WireFormatLite::kDoubleSize; in GetFixedSize()
561 case FieldDescriptor::TYPE_DOUBLE: in IsNullable()
/third_party/protobuf/src/google/protobuf/compiler/java/
H A Djava_helpers.cc338 case FieldDescriptor::TYPE_DOUBLE: in GetJavaType()
468 case FieldDescriptor::TYPE_DOUBLE: in FieldTypeName()
749 case FieldDescriptor::TYPE_DOUBLE: in GetCapitalizedType()
799 case FieldDescriptor::TYPE_DOUBLE: in FixedSize()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/transform_feedback/
H A DvktTransformFeedbackFuzzLayoutCase.cpp399 if (getDataTypeScalarType(type) == glu::TYPE_DOUBLE) in getDataTypeByteSize()
440 case glu::TYPE_DOUBLE: return sizeof(deUint64); in computeInterfaceBlockMemberAlignment()
489 case glu::TYPE_DOUBLE: in createMask()
932 case glu::TYPE_DOUBLE: *((double*)compPtr) = (double) (sign * value); break; in generateValue()
1221 DE_ASSERT(scalarType == glu::TYPE_FLOAT || scalarType == glu::TYPE_DOUBLE); in generateValueSrc()
1230 : (scalarType == glu::TYPE_DOUBLE) ? (float)*((const double*)compPtr) in generateValueSrc()
1251 case glu::TYPE_DOUBLE: src << de::floatToString((float)(*((const double*)compPtr)), 1); break; in generateValueSrc()
1293 : (scalarType == glu::TYPE_DOUBLE) ? (float)*((const double*)compPtr) in writeMatrixTypeSrc()
1326 : (scalarType == glu::TYPE_DOUBLE) ? (float)*((const double*)compPtr) in writeMatrixTypeSrc()
1824 case glu::TYPE_DOUBLE in validateValue()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/transform_feedback/
H A DvktTransformFeedbackFuzzLayoutCase.cpp399 if (getDataTypeScalarType(type) == glu::TYPE_DOUBLE) in getDataTypeByteSize()
440 case glu::TYPE_DOUBLE: return sizeof(deUint64); in computeInterfaceBlockMemberAlignment()
489 case glu::TYPE_DOUBLE: in createMask()
932 case glu::TYPE_DOUBLE: *((double*)compPtr) = (double) (sign * value); break; in generateValue()
1221 DE_ASSERT(scalarType == glu::TYPE_FLOAT || scalarType == glu::TYPE_DOUBLE); in generateValueSrc()
1230 : (scalarType == glu::TYPE_DOUBLE) ? (float)*((const double*)compPtr) in generateValueSrc()
1251 case glu::TYPE_DOUBLE: src << de::floatToString((float)(*((const double*)compPtr)), 1); break; in generateValueSrc()
1293 : (scalarType == glu::TYPE_DOUBLE) ? (float)*((const double*)compPtr) in writeMatrixTypeSrc()
1326 : (scalarType == glu::TYPE_DOUBLE) ? (float)*((const double*)compPtr) in writeMatrixTypeSrc()
1824 case glu::TYPE_DOUBLE in validateValue()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineSpecConstantTests.cpp1925 if (type == glu::TYPE_DOUBLE) in makeValue()
1943 case glu::TYPE_DOUBLE: in getDataTypeScalarSizeBytes()
2048 const bool isConst = (scalarType != glu::TYPE_FLOAT) && (scalarType != glu::TYPE_DOUBLE); in makeMatrixVectorCompositeCaseDefinition()
2074 (scalarType == glu::TYPE_DOUBLE ? (FeatureFlags)FEATURE_SHADER_FLOAT_64 : (FeatureFlags)0), in makeMatrixVectorCompositeCaseDefinition()
2118 (scalarType == glu::TYPE_DOUBLE ? (FeatureFlags)FEATURE_SHADER_FLOAT_64 : (FeatureFlags)0), in makeArrayCompositeCaseDefinition()
2174 (scalarType == glu::TYPE_DOUBLE ? (FeatureFlags)FEATURE_SHADER_FLOAT_64 : (FeatureFlags)0), in makeStructCompositeCaseDefinition()
2265 glu::TYPE_DOUBLE, in createCompositeTests()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/
H A DvktPipelineSpecConstantTests.cpp1912 if (type == glu::TYPE_DOUBLE) in makeValue()
1930 case glu::TYPE_DOUBLE: in getDataTypeScalarSizeBytes()
2035 const bool isConst = (scalarType != glu::TYPE_FLOAT) && (scalarType != glu::TYPE_DOUBLE); in makeMatrixVectorCompositeCaseDefinition()
2061 (scalarType == glu::TYPE_DOUBLE ? (FeatureFlags)FEATURE_SHADER_FLOAT_64 : (FeatureFlags)0), in makeMatrixVectorCompositeCaseDefinition()
2105 (scalarType == glu::TYPE_DOUBLE ? (FeatureFlags)FEATURE_SHADER_FLOAT_64 : (FeatureFlags)0), in makeArrayCompositeCaseDefinition()
2161 (scalarType == glu::TYPE_DOUBLE ? (FeatureFlags)FEATURE_SHADER_FLOAT_64 : (FeatureFlags)0), in makeStructCompositeCaseDefinition()
2252 glu::TYPE_DOUBLE, in createCompositeTests()
/third_party/protobuf/php/tests/
H A DWellKnownTest.php212 $m->setKind(Kind::TYPE_DOUBLE);
213 $this->assertSame(Kind::TYPE_DOUBLE, $m->getKind());
/third_party/protobuf/src/google/protobuf/util/
H A Dtype_resolver_util_test.cc203 EXPECT_TRUE(HasField(type, Field::CARDINALITY_OPTIONAL, Field::TYPE_DOUBLE, in TEST_F()
264 EXPECT_TRUE(HasField(type, Field::CARDINALITY_REPEATED, Field::TYPE_DOUBLE, in TEST_F()
/third_party/protobuf/src/google/protobuf/
H A Dgenerated_message_util.cc225 struct PrimitiveTypeHelper<WireFormatLite::TYPE_DOUBLE>
627 SERIALIZERS_FOR_TYPE(WireFormatLite::TYPE_DOUBLE); in SerializeInternal()
672 SERIALIZERS_FOR_TYPE(WireFormatLite::TYPE_DOUBLE); in SerializeInternalToArray()
H A Dwire_format_lite.h113 TYPE_DOUBLE = 1, enumerator
975 inline bool WireFormatLite::ReadPrimitive<double, WireFormatLite::TYPE_DOUBLE>( in ReadPrimitive()
1040 WireFormatLite::ReadPrimitiveFromArray<double, WireFormatLite::TYPE_DOUBLE>( in ReadPrimitiveFromArray()
1127 READ_REPEATED_FIXED_SIZE_PRIMITIVE(double, TYPE_DOUBLE)
1231 READ_REPEATED_PACKED_FIXED_SIZE_PRIMITIVE(double, TYPE_DOUBLE)
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktShaderCommonFunctionTests.cpp164 scalarType == glu::TYPE_DOUBLE || in getComponentByteSize()
187 case glu::TYPE_DOUBLE: in getComponentByteSize()
320 case glu::TYPE_DOUBLE: str << HexDouble(((const double*)varValue.value)[compNdx]); break; in operator <<()
1029 static const std::vector<glu::DataType> kFloatAndDouble {glu::TYPE_FLOAT, glu::TYPE_DOUBLE}; in init()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderexecutor/
H A DvktShaderCommonFunctionTests.cpp164 scalarType == glu::TYPE_DOUBLE || in getComponentByteSize()
187 case glu::TYPE_DOUBLE: in getComponentByteSize()
320 case glu::TYPE_DOUBLE: str << HexDouble(((const double*)varValue.value)[compNdx]); break; in operator <<()
1025 static const std::vector<glu::DataType> kFloatAndDouble {glu::TYPE_FLOAT, glu::TYPE_DOUBLE}; in init()
/third_party/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_primitive_field.cc76 case FieldDescriptor::TYPE_DOUBLE: in FixedSize()
/third_party/protobuf/conformance/
H A Dbinary_json_conformance_suite.cc173 case FieldDescriptor::TYPE_DOUBLE:
206 case FieldDescriptor::TYPE_DOUBLE:
321 case FieldDescriptor::TYPE_DOUBLE: in IsProto3Default()
1330 FieldDescriptor::TYPE_DOUBLE, in RunSuiteImpl()
1499 FieldDescriptor::TYPE_DOUBLE); in RunSuiteImpl()
1517 TestValidDataForOneofType(FieldDescriptor::TYPE_DOUBLE); in RunSuiteImpl()

Completed in 37 milliseconds

123