HomeSort by relevance Sort by last modified time
    Searched refs:M2 (Results 76 - 100 of 116) sorted by null

1 2 34 5

  /external/llvm/tools/bugpoint/
ExtractFunction.cpp 245 /// SplitStaticCtorDtor - A module was recently split into two parts, M1/M2, and
246 /// M1 has all of the global variables. If M2 contains any functions that are
247 /// static ctors/dtors, we need to add an llvm.global_[cd]tors global to M2, and
249 static void SplitStaticCtorDtor(const char *GlobalName, Module *M1, Module *M2,
277 // Map to M2's version of the function.
293 GV = M2->getNamedGlobal(GlobalName);
300 new GlobalVariable(*M2, M2Init->getType(), false,
Miscompilation.cpp 221 std::unique_ptr<Module> M2,
224 if (Linker::linkModules(*M1, std::move(M2)))
    [all...]
  /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;
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/bfin/
move2.d 66 74: b6 30 R6 = M2;
82 94: b6 32 SP = M2;
98 b4: 96 38 A1.X = M2;
118 dc: 76 34 M2 = SP;
122 e4: 32 35 M2 = A1.X;
146 114: f1 34 M2 = B1;
move.s 7 M2 = i2;
move.d 11 6: b2 34 M2 = I2;
pseudo.d 29 2c: 16 f8 DBG M2;
load.d 31 54: 36 e1 ff 7f M2 = 0x7fff \(X\);.*
allinsn16.d 286 [^:]+: 16 01 + M2 = \[SP\+\+\];
350 [^:]+: 56 01 + \[--SP\] = M2;
    [all...]
arithmetic.s 96 i2 += M2;
arithmetic.d 78 9c: 6a 9e I2 \+= 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/v8/src/compiler/x64/
instruction-codes-x64.h 163 V(M2) /* [ %r2*2 ] */ \
  /external/llvm/tools/llc/
llc.cpp 399 std::unique_ptr<Module> M2(llvm::CloneModule(M.get()));
400 PM.run(*M2);
  /external/mesa3d/src/mesa/sparc/
norm.S 56 /* tx (f3) = (ux * m0) + (uy * m1) + (uz * m2)
67 fmuls %f2, M2, %f10 ! FGM Group f5 available
106 fmuls M2, %f15, M2
121 /* tx (f3) = (ux * m0) + (uy * m1) + (uz * m2)
132 fmuls %f2, M2, %f10 ! FGM Group f5 available
344 fmuls M2, %f15, M2
365 fmuls %f2, M2, %f10 ! FGM Group f5 available
457 fmuls %f2, M2, %f10 ! FGM Group f5 availabl
    [all...]
xform.S 84 fmuls %f0, M2, %f3 ! FGM Group
92 fmuls %f8, M2, %f11 ! FGM Group f3 available
117 fmuls %f0, M2, %f3 ! FGM Group
301 fmuls %f0, M2, %f3 ! FGM Group
308 fmuls %f4, M2, %f7 ! FGM
328 fmuls %f0, M2, %f3
462 fmuls %f0, M2, %f4 ! FGM Group
669 fmuls %f0, M2, %f4 ! FGM Group
679 fmuls %f9, M2, %f13 ! FGM Group f2, f7 available
711 fmuls %f0, M2, %f4 ! FGM Grou
    [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/opencv3/modules/calib3d/src/
upnp.cpp 292 double * M2 = M1 + 12;
299 M2[3 * i ] = 0.0;
300 M2[3 * i + 1] = as[i] * fv;
301 M2[3 * i + 2] = as[i] * (vc - v);
438 Mat upnp::compute_constraint_distance_3param_6eq_6unk_f_unk(const Mat& M1, const Mat& M2)
446 m[2][i] = *M2.ptr<double>(i-1);
epnp.cpp 113 double * M2 = M1 + 12;
120 M2[3 * i ] = 0.0;
121 M2[3 * i + 1] = as[i] * fv;
122 M2[3 * i + 2] = as[i] * (vc - v);
  /external/llvm/lib/Analysis/
TypeBasedAliasAnalysis.cpp 365 if (const MDNode *M2 =
367 if (!Aliases(M1, M2))
  /external/llvm/tools/opt/
opt.cpp 620 std::unique_ptr<Module> M2(CloneModule(M.get()));
621 Passes.run(*M2);
  /external/clang/lib/StaticAnalyzer/Core/
ProgramState.cpp 486 ProgramState::GenericDataMap M2 = GDMFactory.add(M1, Key, Data);
488 if (M1 == M2)
492 NewSt.GDM = M2;
  /external/opencv3/modules/calib3d/test/
test_cameracalibration.cpp     [all...]
  /external/opencv3/modules/core/test/
test_mat.cpp 814 Ptr<CvSparseMat> M2(cvCreateSparseMat(M));
863 val2 = getValue(M2, idx);
889 eraseValue(M2, idx);
891 val2 = getValue(M2, idx);
    [all...]
  /external/llvm/lib/Transforms/IPO/
LowerBitSets.cpp     [all...]

Completed in 1048 milliseconds

1 2 34 5