HomeSort by relevance Sort by last modified time
    Searched full:scalartype (Results 1 - 25 of 42) sorted by null

1 2

  /external/deqp/framework/referencerenderer/
rrGenericVector.hpp 69 template<typename ScalarType>
70 explicit GenericVec4 (const tcu::Vector<ScalarType, 4>& value)
84 template<typename ScalarType>
85 GenericVec4& operator= (const tcu::Vector<ScalarType, 4>& value)
87 getAccess<ScalarType>()[0] = value[0];
88 getAccess<ScalarType>()[1] = value[1];
89 getAccess<ScalarType>()[2] = value[2];
90 getAccess<ScalarType>()[3] = value[3];
94 template<typename ScalarType>
95 inline tcu::Vector<ScalarType, 4> get (void) cons
    [all...]
rrVertexAttrib.hpp 136 template<typename ScalarType>
137 explicit VertexAttrib (const tcu::Vector<ScalarType, 4>& generic_)
  /external/opencv3/modules/cudaarithm/src/cuda/
sub_scalar.cu 59 template <typename SrcType, typename ScalarType, typename DstType> struct SubScalarOp : unary_function<SrcType, DstType>
61 ScalarType val;
65 return saturate_cast<DstType>(saturate_cast<ScalarType>(a) - val);
69 template <typename SrcType, typename ScalarType, typename DstType> struct SubScalarOpInv : unary_function<SrcType, DstType>
71 ScalarType val;
75 return saturate_cast<DstType>(val - saturate_cast<ScalarType>(a));
92 typedef typename MakeVec<ScalarDepth, VecTraits<SrcType>::cn>::type ScalarType;
98 SubScalarOpInv<SrcType, ScalarType, DstType> op;
99 op.val = VecTraits<ScalarType>::make(value_.val);
108 SubScalarOp<SrcType, ScalarType, DstType> op
    [all...]
div_scalar.cu 107 template <typename SrcType, typename ScalarType, typename DstType> struct DivScalarOp : unary_function<SrcType, DstType>
109 ScalarType val;
113 return saturate_cast<DstType>(SafeDiv<ScalarType, VecTraits<ScalarType>::cn>::op(saturate_cast<ScalarType>(a), val));
117 template <typename SrcType, typename ScalarType, typename DstType> struct DivScalarOpInv : unary_function<SrcType, DstType>
119 ScalarType val;
123 return saturate_cast<DstType>(SafeDiv<ScalarType, VecTraits<ScalarType>::cn>::op(val, saturate_cast<ScalarType>(a)))
    [all...]
add_scalar.cu 59 template <typename SrcType, typename ScalarType, typename DstType> struct AddScalarOp : unary_function<SrcType, DstType>
61 ScalarType val;
65 return saturate_cast<DstType>(saturate_cast<ScalarType>(a) + val);
82 typedef typename MakeVec<ScalarDepth, VecTraits<SrcType>::cn>::type ScalarType;
86 AddScalarOp<SrcType, ScalarType, DstType> op;
87 op.val = VecTraits<ScalarType>::make(value_.val);
mul_scalar.cu 59 template <typename SrcType, typename ScalarType, typename DstType> struct MulScalarOp : unary_function<SrcType, DstType>
61 ScalarType val;
65 return saturate_cast<DstType>(saturate_cast<ScalarType>(a) * val);
82 typedef typename MakeVec<ScalarDepth, VecTraits<SrcType>::cn>::type ScalarType;
86 MulScalarOp<SrcType, ScalarType, DstType> op;
87 op.val = VecTraits<ScalarType>::make(value_.val);
  /external/llvm/test/tools/llvm-cxxdump/
eh.test 143 COFF-I386: __CT??_R0?AUA@@@84[Flags.ScalarType]: false
152 COFF-I386: __CT??_R0?AUA@@@84044[Flags.ScalarType]: false
161 COFF-I386: __CT??_R0?AUB@@@844[Flags.ScalarType]: false
170 COFF-I386: __CT??_R0?AUC@@@84048[Flags.ScalarType]: false
179 COFF-I386: __CT??_R0?AUM@@@88[Flags.ScalarType]: false
188 COFF-I386: __CT??_R0?AUS@@@8??0S@@QAE@ABU0@@Z16[Flags.ScalarType]: false
197 COFF-I386: __CT??_R0?AW4E@@@84[Flags.ScalarType]: true
206 COFF-I386: __CT??_R0PAUA@@@84044[Flags.ScalarType]: true
215 COFF-I386: __CT??_R0PAUC@@@84048[Flags.ScalarType]: true
224 COFF-I386: __CT??_R0PAUS@@@84[Flags.ScalarType]: tru
    [all...]
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
IncompleteCholesky.h 38 typedef Matrix<Scalar,Dynamic,1> ScalarType;
117 ScalarType m_scal; // The vector for scaling the matrix
148 Map<ScalarType> vals(m_L.valuePtr(), nnz); //values
153 ScalarType curCol(n); // Store a nonzero values in each column
  /external/deqp/framework/common/
tcuTexLookupVerifier.cpp 55 template<typename ScalarType>
56 inline Vector<ScalarType, 4> lookup (const ConstPixelBufferAccess& access, const Sampler& sampler, int i, int j, int k)
59 return access.getPixelT<ScalarType>(i, j, k);
61 return sampleTextureBorder<ScalarType>(access.getFormat(), sampler);
519 template<typename PrecType, typename ScalarType>
525 const Vector<ScalarType, 4>& result)
537 const Vector<ScalarType, 4> color = lookup<ScalarType>(level, sampler, x, coordY, 0);
546 template<typename PrecType, typename ScalarType>
552 const Vector<ScalarType, 4>& result
    [all...]
tcuTextureUtil.hpp 179 template <typename ScalarType>
180 tcu::Vector<ScalarType, 4> sampleTextureBorder (const TextureFormat& format, const Sampler& sampler);
  /external/deqp/modules/glshared/
glsRandomShaderCase.cpp 410 const char* scalarType = DE_NULL;
415 case rsg::VariableType::TYPE_FLOAT: scalarType = "float"; vecType = "vec"; break;
416 case rsg::VariableType::TYPE_INT: scalarType = "int"; vecType = "ivec"; break;
417 case rsg::VariableType::TYPE_BOOL: scalarType = "bool"; vecType = "bvec"; break;
418 case rsg::VariableType::TYPE_SAMPLER_2D: scalarType = "sampler2D"; break;
419 case rsg::VariableType::TYPE_SAMPLER_CUBE: scalarType = "samplerCube"; break;
426 message << scalarType << "(";
glsRandomShaderProgram.cpp 51 const glu::DataType scalarType = varType.isFloatOrVec() ? glu::TYPE_FLOAT :
57 return glu::DataType(scalarType + numComps - 1);
  /external/deqp/modules/gles31/functional/
es31fUniformLocationTests.cpp 328 const glu::DataType scalarType = glu::getDataTypeScalarType(subType.getBasicType());
329 const char* const typeName = glu::getDataTypeName(scalarType);
330 const string expectValue = de::floatToString(getExpectedValue(scalarType, location >= 0 ? location+subTypeIndex : -1, typeName), 3);
332 if (glu::isDataTypeSampler(scalarType))
565 const glu::DataType scalarType = glu::getDataTypeScalarType(type.getBasicType());
566 const char* const typeName = glu::getDataTypeName(scalarType);
567 const float expectedValue = getExpectedValue(scalarType, expectedLocation, typeName);
569 if (glu::isDataTypeSampler(scalarType))
573 texList.push_back(createTexture(scalarType, expectedValue, binding).release());
    [all...]
es31fShaderIntegerFunctionTests.cpp 82 const glu::DataType scalarType = glu::getDataTypeScalarType(basicType);
93 switch (scalarType)
    [all...]
es31fSSBOLayoutCase.cpp 733 const glu::DataType scalarType = glu::getDataTypeScalarType(entry.type);
764 switch (scalarType)
    [all...]
  /hardware/intel/common/utils/ISV/include/
isv_worker.h 79 filter_t scalarType;
  /external/llvm/lib/Target/SystemZ/
SystemZOperators.td 563 class z_replicate_load<ValueType scalartype, SDPatternOperator load>
565 (z_replicate (scalartype (load node:$addr)))>;
574 class z_vle<ValueType scalartype, SDPatternOperator load>
576 (z_vector_insert node:$vec, (scalartype (load node:$addr)),
587 class z_vllez<ValueType scalartype, SDPatternOperator load, int index>
590 (scalartype (load node:$addr)), (i32 index))>;
    [all...]
  /external/opencv3/modules/hal/include/opencv2/hal/
intrin_neon.hpp 562 #define OPENCV_HAL_IMPL_NEON_REDUCE_OP_4(_Tpvec, scalartype, func, scalar_func) \
563 inline scalartype v_reduce_##func(const _Tpvec& a) \
565 scalartype CV_DECL_ALIGNED(16) buf[4]; \
567 scalartype s0 = scalar_func(buf[0], buf[1]); \
568 scalartype s1 = scalar_func(buf[2], buf[3]); \
  /external/deqp/framework/opengl/
gluShaderUtil.cpp 529 DataType getDataTypeVector (DataType scalarType, int size)
532 switch (scalarType)
538 return (DataType)((int)scalarType + size - 1);
gluShaderUtil.hpp 200 DataType getDataTypeVector (DataType scalarType, int size);
gluShaderLibrary.cpp 953 DataType scalarType = getDataTypeScalarType(expectedDataType);
968 if (scalarType == TYPE_FLOAT)
981 else if (scalarType == TYPE_INT || scalarType == TYPE_UINT)
996 DE_ASSERT(scalarType == TYPE_BOOL);
    [all...]
  /external/clang/lib/Sema/
SemaTemplateVariadic.cpp     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderIntegerFunctionTests.cpp 84 const glu::DataType scalarType = glu::getDataTypeScalarType(basicType);
95 switch (scalarType)
290 const glu::DataType scalarType = scalarTypes[scalarTypeNdx];
292 if ((!intTypes && scalarType == glu::TYPE_INT) || (!uintTypes && scalarType == glu::TYPE_UINT))
305 group->addChild(new TestClass(parent->getTestContext(), glu::DataType(scalarType + vecSize - 1), glu::Precision(prec), glu::ShaderType(shaderTypeNdx)));
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/ssbo/
vktSSBOLayoutCase.cpp 648 const glu::DataType scalarType = glu::getDataTypeScalarType(entry.type);
679 switch (scalarType)
929 const glu::DataType scalarType = glu::getDataTypeScalarType(basicType);
943 switch (scalarType)
    [all...]
  /external/llvm/lib/IR/
AutoUpgrade.cpp     [all...]

Completed in 480 milliseconds

1 2