Searched refs:rot (Results 26 - 50 of 71) sorted by relevance

123

/external/eigen/blas/
H A Dlevel1_real_impl.h57 int EIGEN_BLAS_FUNC(rot)(int *n, RealScalar *px, int *incx, RealScalar *py, int *incy, RealScalar *pc, RealScalar *ps) function
/external/eigen/bench/btl/libs/BLAS/
H A Dblas_interface_impl.hh33 static inline void rot(gene_vector & A, gene_vector & B, SCALAR c, SCALAR s, int N){ function in class:blas_interface
34 BLAS_FUNC(rot)(&N,A,&intone,B,&intone,&c,&s);
/external/libopus/silk/
H A DSigProc_FIX.h394 /* Rotate a32 right by 'rot' bits. Negative rot values result in rotating
398 static OPUS_INLINE opus_int32 silk_ROR32( opus_int32 a32, opus_int rot )
401 opus_uint32 r = (opus_uint32) rot;
402 opus_uint32 m = (opus_uint32) -rot;
403 if( rot == 0 ) {
405 } else if( rot < 0 ) {
/external/skia/tests/
H A DMatrix44Test.cpp261 SkMatrix44 rot(SkMatrix44::kUninitialized_Constructor);
265 rot.setRotateDegreesAbout(0, 0, -1, SkIntToScalar(common_angles[i]));
267 SkMatrix rot3x3 = rot;
836 SkMatrix44 rot(SkMatrix44::kUninitialized_Constructor);
854 rot.setRotateDegreesAbout(0, 0, -1, 90);
855 mat.postConcat(rot);
867 rot.setRotateDegreesAbout(0, 0, -1, 90);
868 mat.postConcat(rot);
880 rot.setRotateDegreesAbout(0, 0, -1, 90);
881 mat.postConcat(rot);
[all...]
H A DPathOpsBuilderConicTest.cpp79 static void setupOne(skiatest::Reporter* reporter, int col, int row, int rot, int trial) { argument
82 r.setSeed(col * 100000000 + row * 10000000 + rot * 1000000 + trial);
85 OvalSet set = {{0, 0, 0, 0}, col, row, rot, xOffset, yOffset};
105 for (int rot = 2; rot <= 9; ++rot) {
109 if (col == oneOff.fCol && row == oneOff.fRow && rot == oneOff.fRot
115 setupOne(reporter, col, row, rot, trial);
/external/skqp/tests/
H A DMatrix44Test.cpp261 SkMatrix44 rot(SkMatrix44::kUninitialized_Constructor);
265 rot.setRotateDegreesAbout(0, 0, -1, SkIntToScalar(common_angles[i]));
267 SkMatrix rot3x3 = rot;
836 SkMatrix44 rot(SkMatrix44::kUninitialized_Constructor);
854 rot.setRotateDegreesAbout(0, 0, -1, 90);
855 mat.postConcat(rot);
867 rot.setRotateDegreesAbout(0, 0, -1, 90);
868 mat.postConcat(rot);
880 rot.setRotateDegreesAbout(0, 0, -1, 90);
881 mat.postConcat(rot);
[all...]
H A DPathOpsBuilderConicTest.cpp79 static void setupOne(skiatest::Reporter* reporter, int col, int row, int rot, int trial) { argument
82 r.setSeed(col * 100000000 + row * 10000000 + rot * 1000000 + trial);
85 OvalSet set = {{0, 0, 0, 0}, col, row, rot, xOffset, yOffset};
105 for (int rot = 2; rot <= 9; ++rot) {
109 if (col == oneOff.fCol && row == oneOff.fRow && rot == oneOff.fRot
115 setupOne(reporter, col, row, rot, trial);
/external/skia/gm/
H A Dfilterfastbounds.cpp106 SkMatrix rot; local
107 rot.setRotate(-33.3f);
110 SkImageFilter::MakeMatrixFilter(rot, kLow_SkFilterQuality, source));
H A Ddashing.cpp466 SkMatrix rot; variable
467 rot.setRotate(90);
468 SkASSERT(rot.rectStaysRect());
470 canvas->concat(rot);
/external/skqp/gm/
H A Dfilterfastbounds.cpp106 SkMatrix rot; local
107 rot.setRotate(-33.3f);
110 SkImageFilter::MakeMatrixFilter(rot, kLow_SkFilterQuality, source));
H A Ddashing.cpp466 SkMatrix rot; variable
467 rot.setRotate(90);
468 SkASSERT(rot.rectStaysRect());
470 canvas->concat(rot);
/external/swiftshader/third_party/LLVM/lib/Support/
H A DAPInt.cpp681 #define rot(x,k) (((x)<<(k)) | ((x)>>(32-(k)))) macro
686 a -= c; a ^= rot(c, 4); c += b; \
687 b -= a; b ^= rot(a, 6); a += c; \
688 c -= b; c ^= rot(b, 8); b += a; \
689 a -= c; a ^= rot(c,16); c += b; \
690 b -= a; b ^= rot(a,19); a += c; \
691 c -= b; c ^= rot(b, 4); b += a; \
697 c ^= b; c -= rot(b,14); \
698 a ^= c; a -= rot(c,11); \
699 b ^= a; b -= rot(
756 #undef rot macro
[all...]
/external/eigen/Eigen/src/SVD/
H A DJacobiSVD.h372 JacobiRotation<Scalar> rot; local
400 rot.c() = conj(work_matrix.coeff(p,p)) / n;
401 rot.s() = work_matrix.coeff(q,p) / n;
402 work_matrix.applyOnTheLeft(p,q,rot);
403 if(svd.computeU()) svd.m_matrixU.applyOnTheRight(p,q,rot.adjoint());
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
H A DMatrixPower.h494 JacobiRotation<ComplexScalar> rot; local
509 rot.makeGivens(m_T.coeff(j-1,j), eigenvalue);
510 m_T.applyOnTheRight(j-1, j, rot);
511 m_T.applyOnTheLeft(j-1, j, rot.adjoint());
514 m_U.applyOnTheRight(j-1, j, rot);
/external/eigen/unsupported/test/
H A Dopenglsupport.cpp130 Matrix3f rot; local
135 glVertex(rot*v3f);
/external/python/cpython2/Lib/test/
H A Dtest_turtle.py241 (vec, rot), expected = case
243 got = vec.rotate(rot)
/external/python/cpython3/Lib/test/
H A Dtest_turtle.py245 (vec, rot), expected = case
247 got = vec.rotate(rot)
/external/mesa3d/src/gallium/drivers/vc4/
H A Dvc4_qpu.h153 uint64_t qpu_m_rot(struct qpu_reg dst, struct qpu_reg src, int rot) ATTRIBUTE_CONST;
H A Dvc4_qir.h841 /** Shifts the multiply output to the right by rot channels */
843 qir_ROT_MUL(struct vc4_compile *c, struct qreg val, uint32_t rot) argument
848 QPU_SMALL_IMM_MUL_ROT + rot)));
H A Dvc4_qpu.c238 qpu_m_rot(struct qpu_reg dst, struct qpu_reg src0, int rot) argument
244 inst = QPU_UPDATE_FIELD(inst, QPU_SMALL_IMM_MUL_ROT + rot,
/external/opencv/cxcore/src/
H A Dcxmatmul.cpp1606 CvMat rotstub, *rot = (CvMat*)transmat; local
1688 if( !CV_IS_MAT( rot ))
1689 CV_CALL( rot = cvGetMat( rot, &rotstub, &coi ));
1691 if( rot->rows != dst_cn )
1695 if( rot->cols == cn + 1 || rot->cols == cn )
1697 if( CV_MAT_TYPE( rot->type ) == CV_64FC1 )
1702 for( j = 0; j < rot->cols; j++ )
1703 buffer[i*(cn+1) + j] = ((double*)(rot
[all...]
/external/swiftshader/third_party/subzero/src/DartARM32/
H A Dassembler_arm.h187 for (int rot = 0; rot < 16; rot++) {
188 uint32_t imm8 = (immediate << 2*rot) | (immediate >> (32 - 2*rot));
191 o->encoding_ = (rot << kRotateShift) | (imm8 << kImmed8Shift);
/external/eigen/bench/btl/libs/eigen3/
H A Deigen3_interface.hh169 static EIGEN_DONT_INLINE void rot(gene_vector & A, gene_vector & B, real c, real s, int /*N*/){ function in class:eigen3_interface
/external/mesa3d/src/gallium/state_trackers/nine/
H A Dswapchain9.c1003 D3DDISPLAYROTATION rot; local
1010 hr = ID3DPresent_GetDisplayMode(This->present, &mode, &rot);
/external/valgrind/VEX/priv/
H A Dhost_arm_defs.c2951 UInt imm, rot; local
2956 rot = 0;
2957 instr = XXXXXXXX(0xE, 0x3, op, rN, rD, rot, imm >> 4, imm & 0xF);
2964 rot = 4;
2965 instr = XXXXXXXX(0xE, 0x3, op, rN, rD, rot, imm >> 4, imm & 0xF);
2972 rot = 8;
2973 instr = XXXXXXXX(0xE, 0x3, op, rN, rD, rot, imm >> 4, imm & 0xF);
2980 rot = 12;
2981 instr = XXXXXXXX(0xE, 0x3, op, rN, rD, rot, imm >> 4, imm & 0xF);

Completed in 641 milliseconds

123