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

1 2

  /external/eigen/test/
stddeque.cpp 47 template<typename TransformType>
48 void check_stddeque_transform(const TransformType&)
50 typedef typename TransformType::MatrixType MatrixType;
51 TransformType x(MatrixType::Random()), y(MatrixType::Random());
52 std::deque<TransformType,Eigen::aligned_allocator<TransformType> > v(10), w(20, y);
58 typename std::deque<TransformType,Eigen::aligned_allocator<TransformType> >::iterator vi = v.begin();
59 typename std::deque<TransformType,Eigen::aligned_allocator<TransformType> >::iterator wi = w.begin()
    [all...]
stdlist.cpp 47 template<typename TransformType>
48 void check_stdlist_transform(const TransformType&)
50 typedef typename TransformType::MatrixType MatrixType;
51 TransformType x(MatrixType::Random()), y(MatrixType::Random());
52 std::list<TransformType,Eigen::aligned_allocator<TransformType> > v(10), w(20, y);
58 typename std::list<TransformType,Eigen::aligned_allocator<TransformType> >::iterator vi = v.begin();
59 typename std::list<TransformType,Eigen::aligned_allocator<TransformType> >::iterator wi = w.begin()
    [all...]
stdlist_overload.cpp 85 template<typename TransformType>
86 void check_stdlist_transform(const TransformType&)
88 typedef typename TransformType::MatrixType MatrixType;
89 TransformType x(MatrixType::Random()), y(MatrixType::Random());
90 std::list<TransformType> v(10), w(20, y);
91 typename std::list<TransformType>::iterator itv = get(v, 5);
92 typename std::list<TransformType>::iterator itw = get(w, 6);
116 TransformType* ref = &(*get(w, 0));
stdvector.cpp 50 template<typename TransformType>
51 void check_stdvector_transform(const TransformType&)
53 typedef typename TransformType::MatrixType MatrixType;
54 TransformType x(MatrixType::Random()), y(MatrixType::Random());
55 std::vector<TransformType,Eigen::aligned_allocator<TransformType> > v(10), w(20, y);
72 VERIFY((internal::UIntPtr)&(v[22]) == (internal::UIntPtr)&(v[21]) + sizeof(TransformType));
76 TransformType* ref = &w[0];
qtvector.cpp 60 template<typename TransformType>
61 void check_qtvector_transform(const TransformType&)
63 typedef typename TransformType::MatrixType MatrixType;
64 TransformType x(MatrixType::Random()), y(MatrixType::Random());
65 QVector<TransformType> v(10), w(20, y);
82 VERIFY((size_t)&(v[22]) == (size_t)&(v[21]) + sizeof(TransformType));
86 TransformType* ref = &w[0];
stdvector_overload.cpp 64 template<typename TransformType>
65 void check_stdvector_transform(const TransformType&)
67 typedef typename TransformType::MatrixType MatrixType;
68 TransformType x(MatrixType::Random()), y(MatrixType::Random());
69 std::vector<TransformType> v(10), w(20, y);
86 VERIFY((internal::UIntPtr)&(v[22]) == (internal::UIntPtr)&(v[21]) + sizeof(TransformType));
90 TransformType* ref = &w[0];
stddeque_overload.cpp 63 template<typename TransformType>
64 void check_stddeque_transform(const TransformType&)
66 typedef typename TransformType::MatrixType MatrixType;
67 TransformType x(MatrixType::Random()), y(MatrixType::Random());
68 std::deque<TransformType> v(10), w(20, y);
88 TransformType* ref = &w[0];
  /external/skia/src/gpu/ops/
GrDrawPathOp.h 104 typedef GrPathRendering::PathTransformType TransformType;
110 static InstanceData* Alloc(TransformType transformType, int reserveCnt) {
111 int transformSize = GrPathRendering::PathTransformSize(transformType);
119 instanceData->fTransformType = transformType;
136 TransformType transformType() const { return fTransformType; }
161 TransformType fTransformType;
186 TransformType transformType() const { return fDraws.head()->fInstanceData->transformType();
    [all...]
GrDrawPathOp.cpp 112 this->transformType() != that->transformType() || this->fScale != that->fScale ||
122 switch (fDraws.head()->fInstanceData->transformType()) {
196 instances.transformType(),
199 int floatsPerTransform = GrPathRendering::PathTransformSize(this->transformType());
207 pre_translate_transform_values(instances.transformValues(), this->transformType(),
213 SkASSERT(instances.transformType() == this->transformType());
224 this->transformType(),
  /external/eigen/Eigen/src/Geometry/
Transform.h 31 template< typename TransformType,
33 int Case = transform_traits<TransformType>::IsProjective ? 0
34 : int(MatrixType::RowsAtCompileTime) == int(transform_traits<TransformType>::HDim) ? 1
64 template<typename TransformType> struct transform_take_affine_part;
    [all...]
Homogeneous.h 225 typedef Transform<Scalar, Dim, Mode, Options> TransformType;
226 typedef typename internal::add_const<typename TransformType::ConstAffinePart>::type type;
227 EIGEN_DEVICE_FUNC static type run (const TransformType& x) { return x.affine(); }
233 typedef Transform<Scalar, Dim, Projective, Options> TransformType;
234 typedef typename TransformType::MatrixType type;
235 EIGEN_DEVICE_FUNC static const type& run (const TransformType& x) { return x.matrix(); }
480 typedef Transform<Scalar,Dim,Mode,Options> TransformType;
482 EIGEN_DEVICE_FUNC static void evalTo(Dest& dst, const TransformType& lhs, const Homogeneous<RhsArg,Vertical>& rhs)
484 homogeneous_left_product_impl<Homogeneous<RhsArg,Vertical>, TransformType>(lhs, rhs.nestedExpression()).evalTo(dst);
  /external/skia/src/gpu/
GrPathRendering.cpp 134 PathTransformType transformType,
144 transformValues, transformType, count);
  /frameworks/layoutlib/bridge/src/android/view/
ViewGroup_Delegate.java 120 final int transformType = t.getTransformationType();
121 transformToApply = transformType != Transformation.TYPE_IDENTITY ? t : null;
122 concatMatrix = (transformType & Transformation.TYPE_MATRIX) != 0;
  /external/skia/src/gpu/gl/
GrGLPathRendering.cpp 180 PathTransformType transformType, int count) {
181 SkDEBUGCODE(verify_floats(transformValues, gXformType2ComponentCount[transformType] * count));
200 fillMode, writeMask, gXformType2GLType[transformType],
206 gXformType2GLType[transformType], transformValues));
211 gXformType2GLType[transformType], transformValues));
GrGLTestInterface.h 196 virtual GrGLvoid stencilFillPathInstanced(GrGLsizei numPaths, GrGLenum pathNameType, const GrGLvoid *paths, GrGLuint pathBase, GrGLenum fillMode, GrGLuint mask, GrGLenum transformType, const GrGLfloat *transformValues) {}
197 virtual GrGLvoid stencilStrokePathInstanced(GrGLsizei numPaths, GrGLenum pathNameType, const GrGLvoid *paths, GrGLuint pathBase, GrGLint reference, GrGLuint mask, GrGLenum transformType, const GrGLfloat *transformValues) {}
200 virtual GrGLvoid coverFillPathInstanced(GrGLsizei numPaths, GrGLenum pathNameType, const GrGLvoid *paths, GrGLuint pathBase, GrGLenum coverMode, GrGLenum transformType, const GrGLfloat *transformValues) {}
201 virtual GrGLvoid coverStrokePathInstanced(GrGLsizei numPaths, GrGLenum pathNameType, const GrGLvoid *paths, GrGLuint pathBase, GrGLenum coverMode, GrGLenum transformType, const GrGLfloat* transformValues) {}
204 virtual GrGLvoid stencilThenCoverFillPathInstanced(GrGLsizei numPaths, GrGLenum pathNameType, const GrGLvoid *paths, GrGLuint pathBase, GrGLenum fillMode, GrGLuint mask, GrGLenum coverMode, GrGLenum transformType, const GrGLfloat *transformValues) {}
205 virtual GrGLvoid stencilThenCoverStrokePathInstanced(GrGLsizei numPaths, GrGLenum pathNameType, const GrGLvoid *paths, GrGLuint pathBase, GrGLint reference, GrGLuint mask, GrGLenum coverMode, GrGLenum transformType, const GrGLfloat *transformValues) {}
    [all...]
  /frameworks/native/opengl/libs/GLES2/
gl2ext_api.in     [all...]
  /frameworks/base/libs/hwui/
DamageAccumulator.cpp 27 enum TransformType {
35 TransformType type;
  /external/icu/icu4c/source/tools/gendict/
gendict.cpp 123 int32_t transformType;
130 transformConstant(0), transformType(DictionaryData::TRANSFORM_NONE) {
145 if (transformType == DictionaryData::TRANSFORM_TYPE_OFFSET) {
184 transformType = DictionaryData::TRANSFORM_TYPE_OFFSET;
214 return (int32_t)(transformType | transformConstant);
  /external/libmojo/mojo/gpu/
mojo_gles2_impl_autogen.cc     [all...]
mojo_gles2_impl_autogen.h     [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/IpSecDxe/Ikev2/
Ikev2.h 134 UINT8 TransformType;
Utility.c     [all...]
  /external/libvorbis/lib/
codec_internal.h 50 int transformtype; member in struct:__anon24522
  /external/skia/include/gpu/gl/
GrGLFunctions.h 205 typedef GrGLvoid (GR_GL_FUNCTION_TYPE* GrGLStencilFillPathInstancedProc)(GrGLsizei numPaths, GrGLenum pathNameType, const GrGLvoid *paths, GrGLuint pathBase, GrGLenum fillMode, GrGLuint mask, GrGLenum transformType, const GrGLfloat *transformValues);
206 typedef GrGLvoid (GR_GL_FUNCTION_TYPE* GrGLStencilStrokePathInstancedProc)(GrGLsizei numPaths, GrGLenum pathNameType, const GrGLvoid *paths, GrGLuint pathBase, GrGLint reference, GrGLuint mask, GrGLenum transformType, const GrGLfloat *transformValues);
209 typedef GrGLvoid (GR_GL_FUNCTION_TYPE* GrGLCoverFillPathInstancedProc)(GrGLsizei numPaths, GrGLenum pathNameType, const GrGLvoid *paths, GrGLuint pathBase, GrGLenum coverMode, GrGLenum transformType, const GrGLfloat *transformValues);
210 typedef GrGLvoid (GR_GL_FUNCTION_TYPE* GrGLCoverStrokePathInstancedProc)(GrGLsizei numPaths, GrGLenum pathNameType, const GrGLvoid *paths, GrGLuint pathBase, GrGLenum coverMode, GrGLenum transformType, const GrGLfloat* transformValues);
214 typedef GrGLvoid (GR_GL_FUNCTION_TYPE* GrGLStencilThenCoverFillPathInstancedProc)(GrGLsizei numPaths, GrGLenum pathNameType, const GrGLvoid *paths, GrGLuint pathBase, GrGLenum fillMode, GrGLuint mask, GrGLenum coverMode, GrGLenum transformType, const GrGLfloat *transformValues);
215 typedef GrGLvoid (GR_GL_FUNCTION_TYPE* GrGLStencilThenCoverStrokePathInstancedProc)(GrGLsizei numPaths, GrGLenum pathNameType, const GrGLvoid *paths, GrGLuint pathBase, GrGLint reference, GrGLuint mask, GrGLenum coverMode, GrGLenum transformType, const GrGLfloat *transformValues);
    [all...]
  /external/clang/lib/Sema/
TreeTransform.h 72 /// most coarse-grained transformations involve replacing TransformType(),
292 QualType TransformType(QualType T);
302 TypeSourceInfo *TransformType(TypeSourceInfo *DI);
308 QualType TransformType(TypeLocBuilder &TLB, TypeLoc TL);
    [all...]

Completed in 640 milliseconds

1 2