HomeSort by relevance Sort by last modified time
    Searched defs:M2 (Results 26 - 50 of 61) sorted by null

12 3

  /external/apache-commons-math/src/main/java/org/apache/commons/math/random/
Well19937c.java 47 private static final int M2 = 179;
57 super(K, M1, M2, M3);
64 super(K, M1, M2, M3, seed);
72 super(K, M1, M2, M3, seed);
79 super(K, M1, M2, M3, seed);
Well44497a.java 47 private static final int M2 = 481;
57 super(K, M1, M2, M3);
64 super(K, M1, M2, M3, seed);
72 super(K, M1, M2, M3, seed);
79 super(K, M1, M2, M3, seed);
Well44497b.java 47 private static final int M2 = 481;
57 super(K, M1, M2, M3);
64 super(K, M1, M2, M3, seed);
72 super(K, M1, M2, M3, seed);
79 super(K, M1, M2, M3, seed);
Well512a.java 47 private static final int M2 = 9;
57 super(K, M1, M2, M3);
64 super(K, M1, M2, M3, seed);
72 super(K, M1, M2, M3, seed);
79 super(K, M1, M2, M3, seed);
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p4-1y.cpp 55 auto M2 = [] -> auto&& { return si; }; // expected-error{{lambda requires '()'}}
  /external/clang/test/CodeGenCXX/
copy-assign-synthesis.cpp 21 M() : M1(10), M2(11) , auM1(12) {}
23 int M2;
25 printf("M1 = %d M2 = %d auM1 = %d auM2 = %d\n", M1, M2, auM1, auM2);
copy-assign-synthesis-1.cpp 25 M() : M1(10), M2(11) , auM1(12) {}
27 int M2;
29 printf("M1 = %d M2 = %d auM1 = %d auM2 = %d\n", M1, M2, auM1, auM2);
  /external/libopus/celt/
mathops.h 222 #define M2 -21
230 return MULT16_16_P15(x, ADD32(M1, MULT16_16_P15(x, ADD32(M2, MULT16_16_P15(x, ADD32(M3, MULT16_16_P15(M4, x)))))));
234 #undef M2
  /external/llvm/unittests/Analysis/
ScalarEvolutionTest.cpp 75 const SCEVMulExpr *M2 = cast<SCEVMulExpr>(P2);
81 EXPECT_EQ(cast<SCEVConstant>(M2->getOperand(0))->getValue()->getZExtValue(),
87 EXPECT_EQ(cast<SCEVUnknown>(M2->getOperand(1))->getValue(), V2);
96 EXPECT_EQ(cast<SCEVUnknown>(M2->getOperand(1))->getValue(), V0);
  /external/llvm/utils/TableGen/
DAGISelMatcherOpt.cpp 338 Matcher *M2 = FindNodeWithKind(ScanMatcher, Optn->getKind());
339 if (M2 && M2 != ScanMatcher &&
340 M2->canMoveBefore(ScanMatcher) &&
341 (M2->isEqual(Optn) || M2->isContradictory(Optn))) {
342 Matcher *MatcherWithoutM2 = ScanMatcher->unlinkNode(M2);
343 M2->setNext(MatcherWithoutM2);
344 OptionsToMatch[Scan] = M2;
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/bfin/
move.s 7 M2 = i2;
move2.s 80 R6 = M2;
98 SP = M2;
118 A1.X = M2;
143 M2 = SP;
147 M2 = A1.X;
178 M2 = B1;
  /external/clang/test/Misc/
caret-diags-macros.c 4 #define M2 1;
7 M2);
9 // CHECK: {{.*}}:4:{{[0-9]+}}: note: expanded from macro 'M2'
58 M2,
61 // CHECK: {{.*}}:4:12: note: expanded from macro 'M2'
  /external/llvm/unittests/Linker/
LinkModulesTest.cpp 196 std::unique_ptr<Module> M2 = parseAssemblyString(M2Str, Err, C);
199 Linker::linkModules(*M1, std::move(M2));
292 MDNode *M2 = RI->getMetadata("attach");
299 EXPECT_TRUE(M2->isDistinct());
320 EXPECT_EQ(M2, RI->getMetadata("attach"));
327 EXPECT_TRUE(M2->isDistinct());
  /external/mesa3d/src/mesa/sparc/
sparc_matrix.h 37 #define M2 %f18
54 ldd [BASE + ( 2 * 0x4)], M2; \
68 ld [BASE + ( 2 * 0x4)], M2; \
83 ldd [BASE + ( 2 * 0x4)], M2; \
96 ldd [BASE + ( 2 * 0x4)], M2; \
115 ldd [BASE + ( 2 * 0x4)], M2; \
135 ld [BASE + ( 2 * 0x4)], M2; \
143 ld [BASE + ( 2 * 0x4)], M2; \
  /external/opencv/cvaux/src/
cvbgfg_codebook.cpp 238 uchar m0, m1, m2, M0, M1, M2; local
258 m2 = model->modMin[2]; M2 = model->modMax[2];
271 int l0 = p0 + m0, l1 = p1 + m1, l2 = p2 + m2;
272 int h0 = p0 - M0, h1 = p1 - M1, h2 = p2 - M2;
  /external/opencv3/modules/videostab/src/
motion_stabilizing.cpp 423 Mat_<float> M0 = at(t,M), M1 = at(t+1,M), M2 = at(t+2,M);
450 set(r, c, M2(0,0)); set(r, c+1, M2(1,0));
451 set(r+1, c, M2(0,1)); set(r+1, c+1, M2(1,1));
452 set(r+2, c, M2(0,2)); set(r+2, c+1, M2(1,2)); set(r+2, c+2, 1);
453 set(r+3, c, M2(1,0)); set(r+3, c+1, -M2(0,0));
454 set(r+4, c, M2(1,1)); set(r+4, c+1, -M2(0,1))
    [all...]
  /external/opencv3/samples/cpp/
stereo_match.cpp 198 Mat M1, D1, M2, D2;
201 fs["M2"] >> M2;
205 M2 *= scale;
218 stereoRectify( M1, D1, M2, D2, img_size, R, T, R1, R2, P1, P2, Q, CALIB_ZERO_DISPARITY, -1, img_size, &roi1, &roi2 );
222 initUndistortRectifyMap(M2, D2, R2, P2, img_size, CV_16SC2, map21, map22);
  /external/speex/libspeex/
math_approx.h 275 #define M2 -21
281 return MULT16_16_P15(x, ADD32(M1, MULT16_16_P15(x, ADD32(M2, MULT16_16_P15(x, ADD32(M3, MULT16_16_P15(M4, x)))))));
285 #undef M2
filters.c 443 int i,j,k,M2;
451 M2=M>>1;
463 for (j=0;j<M2;j++)
483 int M2, N2;
487 M2 = M>>1;
489 ALLOC(xx1, M2+N2, spx_word16_t);
490 ALLOC(xx2, M2+N2, spx_word16_t);
494 for (i = 0; i < M2; i++)
498 for (i = 0; i < M2; i++)
509 for (j = 0; j < M2; j += 2)
    [all...]
  /toolchain/binutils/binutils-2.25/include/opcode/
i960.h 52 #define M2 0x1000
66 * set m2=1, if src2 will not be used
74 #define R_0(opc) ( REG_OPC(opc) | M1 | M2 | M3 ) /* No operands */
75 #define R_1(opc) ( REG_OPC(opc) | M2 | M3 ) /* 1 operand: src1 */
76 #define R_1D(opc) ( REG_OPC(opc) | M1 | M2 ) /* 1 operand: dst */
78 #define R_2D(opc) ( REG_OPC(opc) | M2 ) /* 2 ops: src1/dst */
  /external/clang/test/Sema/
warn-duplicate-enum.c 82 M2,
  /external/opencv3/modules/calib3d/src/
dls.cpp 248 cv::Mat M2 = cayley_LS_M(f1coeff, f2coeff, f3coeff, u);
250 cv::Mat M2_1 = M2(cv::Range(0,27), cv::Range(0,27));
251 cv::Mat M2_2 = M2(cv::Range(0,27), cv::Range(27,120));
252 cv::Mat M2_3 = M2(cv::Range(27,120), cv::Range(27,120));
253 cv::Mat M2_4 = M2(cv::Range(27,120), cv::Range(0,27));
254 M2.release();
    [all...]
  /toolchain/binutils/binutils-2.25/opcodes/
ia64-opc-m.c 26 #define M2 IA64_TYPE_M, 2
208 {"ld16", M2, OpMXX6aHint (4, 0, 1, 0x28, 0), {R1, AR_CSD, MR3}, EMPTY},
210 {"ld16.nt1", M2, OpMXX6aHint (4, 0, 1, 0x28, 1), {R1, AR_CSD, MR3}, EMPTY},
212 {"ld16.nta", M2, OpMXX6aHint (4, 0, 1, 0x28, 3), {R1, AR_CSD, MR3}, EMPTY},
274 {"ld16.acq", M2, OpMXX6aHint (4, 0, 1, 0x2c, 0), {R1, AR_CSD, MR3}, EMPTY},
276 {"ld16.acq.nt1", M2, OpMXX6aHint (4, 0, 1, 0x2c, 1), {R1, AR_CSD, MR3}, EMPTY},
278 {"ld16.acq.nta", M2, OpMXX6aHint (4, 0, 1, 0x2c, 3), {R1, AR_CSD, MR3}, EMPTY},
    [all...]
  /external/boringssl/src/crypto/poly1305/
poly1305_vec.c 289 xmmi M0, M1, M2, M3, M4;
355 M2 = _mm_and_si128(MMASK, T5);
368 T5 = _mm_mul_epu32(M2, p->S23.v);
369 T6 = _mm_mul_epu32(M2, p->S24.v);
388 T5 = _mm_mul_epu32(M2, p->R20.v);
389 T6 = _mm_mul_epu32(M2, p->R21.v);
404 T5 = _mm_mul_epu32(M2, p->R22.v);
419 M2 = _mm_and_si128(MMASK, T5);
425 T2 = _mm_add_epi64(T2, M2);
478 xmmi M0, M1, M2, M3, M4
    [all...]

Completed in 1073 milliseconds

12 3