Home
last modified time | relevance | path

Searched defs:dataType (Results 1 – 25 of 88) sorted by relevance

1234

/external/deqp/framework/opengl/
DgluShaderUtil.cpp180 const char* getDataTypeName (DataType dataType) in getDataTypeName()
285 int getDataTypeScalarSize (DataType dataType) in getDataTypeScalarSize()
390 DataType getDataTypeScalarType (DataType dataType) in getDataTypeScalarType()
495 DataType getDataTypeFloatScalars (DataType dataType) in getDataTypeFloatScalars()
600 DataType getDataTypeDoubleScalars (DataType dataType) in getDataTypeDoubleScalars()
747 int getDataTypeMatrixNumRows (DataType dataType) in getDataTypeMatrixNumRows()
775 int getDataTypeMatrixNumColumns (DataType dataType) in getDataTypeMatrixNumColumns()
803 int getDataTypeNumLocations (DataType dataType) in getDataTypeNumLocations()
814 int getDataTypeNumComponents (DataType dataType) in getDataTypeNumComponents()
DgluShaderUtil.hpp228 inline bool isDataTypeFloatOrVec (DataType dataType) { return (dataType >= TYPE_FLOAT) && (d… in isDataTypeFloatOrVec()
229 inline bool isDataTypeDoubleOrDVec (DataType dataType) { return (dataType >= TYPE_DOUBLE) && … in isDataTypeDoubleOrDVec()
230 inline bool isDataTypeMatrix (DataType dataType) { return ((dataType >= TYPE_FLOAT_MAT2) && (dat… in isDataTypeMatrix()
231 inline bool isDataTypeIntOrIVec (DataType dataType) { return (dataType >= TYPE_INT) && (d… in isDataTypeIntOrIVec()
232 inline bool isDataTypeUintOrUVec (DataType dataType) { return (dataType >= TYPE_UINT) && (d… in isDataTypeUintOrUVec()
233 inline bool isDataTypeBoolOrBVec (DataType dataType) { return (dataType >= TYPE_BOOL) && (d… in isDataTypeBoolOrBVec()
234 inline bool isDataTypeScalar (DataType dataType) { return (dataType == TYPE_FLOAT) || (dataType … in isDataTypeScalar()
235 inline bool isDataTypeVector (DataType dataType) { return deInRange32(dataType, TYPE_FLOAT_VEC2,… in isDataTypeVector()
236 inline bool isDataTypeScalarOrVector (DataType dataType) { return deInRange32(dataType, TYPE_FLOAT… in isDataTypeScalarOrVector()
237 inline bool isDataTypeSampler (DataType dataType) { return (dataType >= TYPE_SAMPLER_1D) && (dat… in isDataTypeSampler()
[all …]
DgluTextureUtil.hpp45 deUint32 dataType; //!< Data type. member
DgluTexture.cpp52 Texture1D::Texture1D (const RenderContext& context, deUint32 format, deUint32 dataType, int width) in Texture1D()
105 Texture2D::Texture2D (const RenderContext& context, deUint32 format, deUint32 dataType, int width, … in Texture2D()
350 TextureCube::TextureCube (const RenderContext& context, deUint32 format, deUint32 dataType, int siz… in TextureCube()
475 Texture1DArray::Texture1DArray (const RenderContext& context, deUint32 format, deUint32 dataType, i… in Texture1DArray()
529 Texture2DArray::Texture2DArray (const RenderContext& context, deUint32 format, deUint32 dataType, i… in Texture2DArray()
645 Texture3D::Texture3D (const RenderContext& context, deUint32 format, deUint32 dataType, int width, … in Texture3D()
770 …y::TextureCubeArray (const RenderContext& context, deUint32 format, deUint32 dataType, int size, i… in TextureCubeArray()
DgluTextureUtil.cpp396 static tcu::TextureFormat::ChannelType mapGLChannelType (deUint32 dataType, bool normalized) in mapGLChannelType()
435 tcu::TextureFormat mapGLTransferFormat (deUint32 format, deUint32 dataType) in mapGLTransferFormat()
/external/deqp/modules/gles2/performance/
Des2pTextureFormatTests.cpp54 deUint32 dataType; in init() member
70 deUint32 dataType = texFormats[formatNdx].dataType; in init() local
Des2pTextureCountTests.cpp56 deUint32 dataType; in init() member
71 deUint32 dataType = texFormats[formatNdx].dataType; in init() local
Des2pTextureFilteringTests.cpp54 deUint32 dataType; in init() member
85 deUint32 dataType = texFormats[formatNdx].dataType; in init() local
/external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/
DOutput.java53 public DataType dataType() { in dataType() method in Output
DTensor.java303 private static <T> Tensor<T> allocateForBuffer(DataType dataType, long[] shape, int nBuffered) { in allocateForBuffer()
337 public DataType dataType() { in dataType() method in Tensor
576 private static IllegalArgumentException incompatibleBuffer(Buffer buf, DataType dataType) { in incompatibleBuffer()
597 private static int elemByteSize(DataType dataType) { in elemByteSize()
/external/deqp/modules/gles2/functional/
Des2fTextureSpecificationTests.cpp616 …text& context, const char* name, const char* desc, deUint32 format, deUint32 dataType, deUint32 fl… in BasicTexImage2DCase()
658 …text& context, const char* name, const char* desc, deUint32 format, deUint32 dataType, deUint32 fl… in BasicTexImageCubeCase()
707 …text& context, const char* name, const char* desc, deUint32 format, deUint32 dataType, deUint32 fl… in RandomOrderTexImage2DCase()
756 …text& context, const char* name, const char* desc, deUint32 format, deUint32 dataType, deUint32 fl… in RandomOrderTexImageCubeCase()
817 …text& context, const char* name, const char* desc, deUint32 format, deUint32 dataType, deUint32 fl… in TexImage2DAlignCase()
862 …text& context, const char* name, const char* desc, deUint32 format, deUint32 dataType, deUint32 fl… in TexImageCubeAlignCase()
910 …text& context, const char* name, const char* desc, deUint32 format, deUint32 dataType, deUint32 fl… in BasicTexSubImage2DCase()
974 …text& context, const char* name, const char* desc, deUint32 format, deUint32 dataType, deUint32 fl… in BasicTexSubImageCubeCase()
1047 …text& context, const char* name, const char* desc, deUint32 format, deUint32 dataType, deUint32 fl… in TexSubImage2DEmptyTexCase()
1099 …text& context, const char* name, const char* desc, deUint32 format, deUint32 dataType, deUint32 fl… in TexSubImageCubeEmptyTexCase()
[all …]
Des2fDefaultVertexAttributeTests.cpp198 …const char* desc, const char* funcName, bool normalizing, bool useNegative, glu::DataType dataType) in AttributeCase()
213 AttributeCase* AttributeCase::create (Context& ctx, glu::DataType dataType) in create()
490 glu::DataType dataType; in init() member
Des2fTextureFormatTests.cpp93 …derCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, … in Texture2DFormatCase()
237 …derCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, … in TextureCubeFormatCase()
634 deUint32 dataType; in init() member
650 deUint32 dataType = texFormats[formatNdx].dataType; in init() local
Des2fTextureSizeTests.cpp77 …derCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, … in Texture2DSizeCase()
202 …derCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, … in TextureCubeSizeCase()
375 deUint32 dataType; in init() member
Des2fTextureWrapTests.cpp90 …txInfo, const char* name, const char* description, deUint32 format, deUint32 dataType, deUint32 wr… in TextureWrapCase()
273 deUint32 dataType; in init() member
/external/deqp/modules/gles3/scripts/
Dgen-large-constant-arrays.py76 def genArray(dataType, size): argument
/external/deqp/modules/gles3/functional/
Des3fTextureSwizzleTests.cpp103 … const char* description, deUint32 internalFormat, deUint32 format, deUint32 dataType, deUint32 sw… in Texture2DSwizzleCase()
241 deUint32 dataType; in init() member
336 deUint32 dataType = formats[fmtNdx].dataType; in init() local
Des3fTextureSizeTests.cpp78 …derCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, … in Texture2DSizeCase()
203 …derCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, … in TextureCubeSizeCase()
376 deUint32 dataType; in init() member
Des3fDefaultVertexAttributeTests.cpp274 …const char* desc, const char* funcName, bool normalizing, bool useNegative, glu::DataType dataType) in AttributeCase()
289 AttributeCase* AttributeCase::create (Context& ctx, glu::DataType dataType) in create()
567 glu::DataType dataType; in init() member
Des3fShaderDerivateTests.cpp375 glu::DataType dataType, in verifyConstantDerivate()
439 glu::DataType dataType, in reverifyConstantDerivateWithFlushRelaxations()
1435 glu::DataType dataType; member
1674 … const glu::DataType dataType = vecSize > 1 ? glu::getDataTypeFloatVec(vecSize) : glu::TYPE_FLOAT; in init() local
1690 …const glu::DataType dataType = vecSize > 1 ? glu::getDataTypeFloatVec(vecSize) : glu::TYPE_FLOAT; in init() local
1720 …const glu::DataType dataType = vecSize > 1 ? glu::getDataTypeFloatVec(vecSize) : glu::TYPE_FLOAT; in init() local
1754 …const glu::DataType dataType = vecSize > 1 ? glu::getDataTypeFloatVec(vecSize) : glu::TYPE_FLOAT; in init() local
1786 …const glu::DataType dataType = vecSize > 1 ? glu::getDataTypeFloatVec(vecSize) : glu::TYPE_FLOAT; in init() local
/external/deqp/framework/opengl/simplereference/
DsglrContext.cpp45 deUint32 dataType = GL_NONE; in texImage2D() local
/external/protobuf/objectivec/
DGPBDescriptor_PackagePrivate.h100 GPBDataType dataType; member
128 GPBDataType dataType; member
/external/deqp/modules/gles31/functional/
Des31fTextureFormatTests.cpp124 …txInfo, const char* name, const char* description, deUint32 format, deUint32 dataType, int size, i… in TextureCubeArrayFormatCase()
436 deUint32 dataType; in init() member
452 deUint32 dataType = texFormats[formatNdx].dataType; in init() local
/external/aac/libSACenc/src/
Dsacenc_bitstream.cpp215 static void fine2coarse(SCHAR *const data, const DATA_TYPE dataType, in fine2coarse()
229 static void coarse2fine(SCHAR *const data, const DATA_TYPE dataType, in coarse2fine()
267 LOSSLESSDATA *const losslessData, const DATA_TYPE dataType, in ecData()
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
DvktShaderRenderDerivateTests.cpp339 glu::DataType dataType, in verifyConstantDerivate()
403 glu::DataType dataType, in reverifyConstantDerivateWithFlushRelaxations()
537 glu::DataType dataType; member
1526 glu::DataType dataType; member
1756 …const glu::DataType dataType = vecSize > 1 ? glu::getDataTypeFloatVec(vecSize) : glu::TYPE_FLOA… in init() local
1773 …const glu::DataType dataType = vecSize > 1 ? glu::getDataTypeFloatVec(vecSize) : glu::TYPE_FLOAT; in init() local
1803 …const glu::DataType dataType = vecSize > 1 ? glu::getDataTypeFloatVec(vecSize) : glu::TYPE_FLOAT; in init() local
1833 …const glu::DataType dataType = vecSize > 1 ? glu::getDataTypeFloatVec(vecSize) : glu::TYPE_FLOAT; in init() local

1234