HomeSort by relevance Sort by last modified time
    Searched defs:affine (Results 1 - 19 of 19) sorted by null

  /external/libchrome/crypto/
p224_unittest.cc 29 // |scalar| is a big-endian scalar and |affine| is the external representation
33 uint8_t affine[28 * 2]; member in struct:crypto::TestVector
792 EXPECT_TRUE(memcmp(external.data(), kNISTTestVectors[i].affine,
801 reinterpret_cast<const char *>(kNISTTestVectors[10].affine), 56)));
803 reinterpret_cast<const char *>(kNISTTestVectors[11].affine), 56)));
    [all...]
  /external/libweave/third_party/chromium/crypto/
p224_unittest.cc 29 // |scalar| is a big-endian scalar and |affine| is the external representation
33 uint8_t affine[28 * 2]; member in struct:crypto::TestVector
792 EXPECT_TRUE(memcmp(external.data(), kNISTTestVectors[i].affine,
801 reinterpret_cast<const char *>(kNISTTestVectors[10].affine), 56)));
803 reinterpret_cast<const char *>(kNISTTestVectors[11].affine), 56)));
    [all...]
  /external/opencv3/modules/shape/src/
aff_trans.cpp 219 Mat affine; local
220 estimateRigidTransform(shape1, shape2, fullAffine).convertTo(affine, CV_32F);
222 if (affine.empty())
223 affine=_localAffineEstimate(shape1, shape2, fullAffine); //In case there is not good solution, just give a LLS based one
225 affineMat = affine;
tps_trans.cpp 124 float affine=a1+ax*point.x+ay*point.y; local
134 out.x=affine+nonrigid;
138 out.y=affine+nonrigid;
  /external/skia/tests/
GradientTest.cpp 30 const SkScalar affine[] = { local
34 matrix.setAffine(affine);
MatrixTest.cpp 906 SkScalar affine[6]; local
    [all...]
  /external/opencv3/modules/viz/src/
vizcore.cpp 280 Affine3d affine; local
281 bool ok = readPose(cv::format(files_format.c_str(), i), affine, tag);
285 traj.push_back(affine);
303 Affine3d affine; local
306 pose.copyTo(affine.matrix);
307 writePose(cv::format(files_format.c_str(), index), affine, tag); local
  /external/ImageMagick/Magick++/lib/
Options.cpp 787 affine, local
788 current=_drawInfo->affine;
790 affine.sx=1.0;
791 affine.rx=0.0;
792 affine.ry=0.0;
793 affine.sy=1.0;
794 affine.tx=0.0;
795 affine.ty=0.0;
797 affine.tx=tx_;
798 affine.ty=ty_
821 affine, local
847 affine, local
871 affine, local
896 affine, local
    [all...]
Image.cpp 1893 affine, local
    [all...]
  /external/ImageMagick/coders/
fpx.c 411 Read FPX image tile (with or without viewing affine)..
986 affine; local
    [all...]
svg.c 142 affine;
273 GetAffineMatrix(&svg_info->affine);
274 svg_info->scale[0]=ExpandAffine(&svg_info->affine);
140 affine; member in struct:_SVGInfo
1314 affine, local
1932 affine, local
3623 affine; local
    [all...]
msl.c 612 affine,
781 current=draw_info->affine;
782 GetAffineMatrix(&affine);
796 if (LocaleCompare(keyword,"affine") == 0)
802 draw_info->affine.sx=StringToDouble(p,&p);
805 draw_info->affine.rx=StringToDouble(p,&p);
808 draw_info->affine.ry=StringToDouble(p,&p);
811 draw_info->affine.sy=StringToDouble(p,&p);
814 draw_info->affine.tx=StringToDouble(p,&p);
817 draw_info->affine.ty=StringToDouble(p,&p)
606 affine, local
    [all...]
  /external/ImageMagick/MagickCore/
annotate.c 351 annotate_info->affine.tx=geometry_info.xi-image->page.x;
352 annotate_info->affine.ty=geometry_info.psi-image->page.y;
362 offset.x=annotate_info->affine.tx+i*annotate_info->affine.ry*height;
363 offset.y=annotate_info->affine.ty+i*annotate_info->affine.sy*height;
368 offset.x=(geometry.width == 0 ? -1.0 : 1.0)*annotate_info->affine.tx+i*
369 annotate_info->affine.ry*height+annotate_info->affine.ry*
371 offset.y=(geometry.height == 0 ? -1.0 : 1.0)*annotate_info->affine.ty+i
1162 affine; local
1178 affine; local
1193 affine; local
1209 affine; local
1270 affine; local
    [all...]
draw.h 210 affine; member in struct:_DrawInfo
draw.c 270 clone_info->affine=draw_info->affine;
1677 affine, local
4573 affine; local
    [all...]
  /external/eigen/Eigen/src/Geometry/
Transform.h 78 * - #Affine: the transformation is stored as a (Dim+1)^2 matrix,
93 * Therefore, an affine transformation matrix M is shaped like this:
134 * \b Affine \b Matrix A (Dim)x(Dim+1):
156 * transformation of non homogeneous vectors by an affine transformation. In
202 /** type of read/write reference to the affine part of the transformation */
206 /** type of read reference to the affine part of the transformation */
220 enum { TransformTimeDiagonalMode = ((Mode==int(Isometry))?Affine:int(Mode)) };
231 * If Mode==Affine, then the last row is set to [0 ... 0 1] */
235 internal::transform_make_affine<(int(Mode)==Affine) ? Affine : AffineCompact>::run(m_matrix)
378 inline ConstAffinePart affine() const { return take_affine_part::run(m_matrix); } function in class:Eigen::Transform
380 inline AffinePart affine() { return take_affine_part::run(m_matrix); } function in class:Eigen::Transform
    [all...]
  /external/ImageMagick/MagickWand/
drawing-wand.c 327 static void AdjustAffine(DrawingWand *wand,const AffineMatrix *affine)
333 if ((affine->sx != 1.0) || (affine->rx != 0.0) || (affine->ry != 0.0) ||
334 (affine->sy != 1.0) || (affine->tx != 0.0) || (affine->ty != 0.0))
339 current=CurrentContext->affine;
340 CurrentContext->affine.sx=affine->sx*current.sx+affine->ry*current.rx
4631 affine; local
    [all...]
  /external/skia/src/device/xps/
SkXPSDevice.cpp 537 SkScalar affine[6]; local
538 if (!matrix.asAffine(affine)) {
543 SkScalarToFLOAT(affine[SkMatrix::kAScaleX]),
544 SkScalarToFLOAT(affine[SkMatrix::kASkewY]),
545 SkScalarToFLOAT(affine[SkMatrix::kASkewX]),
546 SkScalarToFLOAT(affine[SkMatrix::kAScaleY]),
547 SkScalarToFLOAT(affine[SkMatrix::kATransX]),
548 SkScalarToFLOAT(affine[SkMatrix::kATransY]),
    [all...]
  /prebuilts/tools/common/m2/repository/itext/itext/2.0.8/
itext-2.0.8.jar 

Completed in 1424 milliseconds