HomeSort by relevance Sort by last modified time
    Searched refs:ScalarType (Results 1 - 14 of 14) sorted by null

  /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/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/
tcuTextureUtil.hpp 179 template <typename ScalarType>
180 tcu::Vector<ScalarType, 4> sampleTextureBorder (const TextureFormat& format, const Sampler& sampler);
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.cpp     [all...]
  /external/clang/lib/Sema/
SemaTemplateVariadic.cpp     [all...]
SemaExpr.cpp     [all...]
  /external/llvm/lib/IR/
AutoUpgrade.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 562 milliseconds