/external/llvm/unittests/ExecutionEngine/JIT/ |
D | MultiJITTest.cpp | 51 void createModule2(LLVMContext &Context2, Module *&M2, Function *&FooF2) { in createModule2() argument 52 M2 = new Module("test2", Context2); in createModule2() 53 LoadAssemblyInto(M2, in createModule2() 65 FooF2 = M2->getFunction("foo2"); in createModule2() 75 Module *M2 = 0; in TEST() local 77 createModule2(Context2, M2, FooF2); in TEST() 82 OwningPtr<ExecutionEngine> EE2(EngineBuilder(M2).create()); in TEST() 105 Module *M2 = 0; in TEST() local 107 createModule2(Context2, M2, FooF2); in TEST() 112 OwningPtr<ExecutionEngine> EE2(EngineBuilder(M2).create()); in TEST() [all …]
|
/external/llvm/include/llvm/Support/ |
D | CommandLine.h | 1158 const M2t &M2) : Option(Optional | NotHidden) { 1159 apply(M0, this); apply(M1, this); apply(M2, this); 1164 opt(const M0t &M0, const M1t &M1, const M2t &M2, 1166 apply(M0, this); apply(M1, this); apply(M2, this); apply(M3, this); 1171 opt(const M0t &M0, const M1t &M1, const M2t &M2, const M3t &M3, 1173 apply(M0, this); apply(M1, this); apply(M2, this); apply(M3, this); 1180 opt(const M0t &M0, const M1t &M1, const M2t &M2, const M3t &M3, 1182 apply(M0, this); apply(M1, this); apply(M2, this); apply(M3, this); 1189 opt(const M0t &M0, const M1t &M1, const M2t &M2, const M3t &M3, 1192 apply(M0, this); apply(M1, this); apply(M2, this); apply(M3, this); [all …]
|
/external/clang/test/Preprocessor/ |
D | macro_rescan.c | 5 #define M2(b) b macro 7 int ei_1 = M2(M1)(17); /* becomes int ei_1 = (17+1); */ 8 int ei_2 = (M2(M1))(17); /* becomes int ei_2 = (M1)(17); */
|
D | macro_paste_simple.c | 10 #define M2(X) X macro 11 B: M1(M2(##))
|
/external/llvm/lib/AsmParser/ |
D | Parser.cpp | 37 OwningPtr<Module> M2(new Module(F->getBufferIdentifier(), Context)); in ParseAssembly() local 38 if (LLParser(F, SM, Err, M2.get()).Run()) in ParseAssembly() 40 return M2.take(); in ParseAssembly()
|
/external/llvm/unittests/Analysis/ |
D | ScalarEvolutionTest.cpp | 53 const SCEVMulExpr *M2 = cast<SCEVMulExpr>(P2); in TEST() local 59 EXPECT_EQ(cast<SCEVConstant>(M2->getOperand(0))->getValue()->getZExtValue(), in TEST() 65 EXPECT_EQ(cast<SCEVUnknown>(M2->getOperand(1))->getValue(), V2); in TEST() 74 EXPECT_EQ(cast<SCEVUnknown>(M2->getOperand(1))->getValue(), V0); in TEST()
|
/external/clang/test/CodeGenCXX/ |
D | copy-assign-synthesis.cpp | 21 M() : M1(10), M2(11) , auM1(12) {} in M() 23 int M2; member 25 printf("M1 = %d M2 = %d auM1 = %d auM2 = %d\n", M1, M2, auM1, auM2); in pr()
|
D | copy-assign-synthesis-1.cpp | 26 M() : M1(10), M2(11) , auM1(12) {} in M() 28 int M2; member 30 printf("M1 = %d M2 = %d auM1 = %d auM2 = %d\n", M1, M2, auM1, auM2); in pr()
|
/external/clang/test/Misc/ |
D | caret-diags-macros.c | 4 #define M2 1; macro 7 M2); in foo() 64 M2, in test()
|
D | macro-backtrace-limit.c | 5 #define M2(A, B) M1(A, B) macro 6 #define M3(A, B) M2(A, B)
|
/external/llvm/utils/TableGen/ |
D | DAGISelMatcherOpt.cpp | 330 Matcher *M2 = FindNodeWithKind(ScanMatcher, Optn->getKind()); in FactorNodes() local 331 if (M2 != 0 && M2 != ScanMatcher && in FactorNodes() 332 M2->canMoveBefore(ScanMatcher) && in FactorNodes() 333 (M2->isEqual(Optn) || M2->isContradictory(Optn))) { in FactorNodes() 334 Matcher *MatcherWithoutM2 = ScanMatcher->unlinkNode(M2); in FactorNodes() 335 M2->setNext(MatcherWithoutM2); in FactorNodes() 336 OptionsToMatch[Scan] = M2; in FactorNodes()
|
/external/llvm/test/CodeGen/X86/ |
D | vec_zero_cse.ll | 6 @M2 = external global <2 x i32> 13 store <2 x i32> zeroinitializer, <2 x i32>* @M2 19 store <2 x i32> < i32 -1, i32 -1 >, <2 x i32>* @M2
|
/external/clang/test/Sema/ |
D | ms-fuzzy-asm.c | 4 #define M2 int macro 8 void t3(void) { __asm M2 0x2c } in t3()
|
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/ |
D | 3d-cube.js | 96 function MMulti(M1, M2) { argument 102 …for (; j < 4; j++) M[i][j] = M1[i][0] * M2[0][j] + M1[i][1] * M2[1][j] + M1[i][2] * M2[2][j] + M1[… 123 function MAdd(M1, M2) { argument 129 for (; j < 4; j++) M[i][j] = M1[i][j] + M2[i][j];
|
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/ |
D | 3d-cube.js | 96 function MMulti(M1, M2) { argument 102 …for (; j < 4; j++) M[i][j] = M1[i][0] * M2[0][j] + M1[i][1] * M2[1][j] + M1[i][2] * M2[2][j] + M1[… 123 function MAdd(M1, M2) { argument 129 for (; j < 4; j++) M[i][j] = M1[i][j] + M2[i][j];
|
/external/openssl/crypto/md5/asm/ |
D | md5-ia64.S | 133 #define M2 in14 macro 546 G(C, D, A, B, M2) \ 547 COMPUTE(C, D, 14, M2, RotateM2) \ 556 H(C, D, A, B, M2) \ 557 COMPUTE(C, D, 16, M2, RotateM2) \ 566 I(C, D, A, B, M2) \ 567 COMPUTE(C, D, 15, M2, RotateM2) \ 671 mov X = M2 682 mov M2 = M11 801 mov M13 = M2 [all …]
|
/external/speex/libspeex/ |
D | filters.c | 443 int i,j,k,M2; in qmf_decomp() local 451 M2=M>>1; in qmf_decomp() 463 for (j=0;j<M2;j++) in qmf_decomp() 483 int M2, N2; in qmf_synth() local 487 M2 = M>>1; in qmf_synth() 489 ALLOC(xx1, M2+N2, spx_word16_t); in qmf_synth() 490 ALLOC(xx2, M2+N2, spx_word16_t); in qmf_synth() 494 for (i = 0; i < M2; i++) in qmf_synth() 498 for (i = 0; i < M2; i++) in qmf_synth() 509 for (j = 0; j < M2; j += 2) { in qmf_synth() [all …]
|
D | math_approx.h | 275 #define M2 -21 macro 281 …return MULT16_16_P15(x, ADD32(M1, MULT16_16_P15(x, ADD32(M2, MULT16_16_P15(x, ADD32(M3, MULT16_16_… in spx_atan01() 285 #undef M2
|
/external/llvm/lib/Analysis/ |
D | TypeBasedAliasAnalysis.cpp | 294 if (const MDNode *M2 = in getModRefInfo() local 296 if (!Aliases(M1, M2)) in getModRefInfo()
|
/external/llvm/tools/bugpoint/ |
D | ExtractFunction.cpp | 196 static void SplitStaticCtorDtor(const char *GlobalName, Module *M1, Module *M2, in SplitStaticCtorDtor() argument 240 GV = M2->getNamedGlobal(GlobalName); in SplitStaticCtorDtor() 247 new GlobalVariable(*M2, M2Init->getType(), false, in SplitStaticCtorDtor()
|
D | Miscompilation.cpp | 216 static Module *TestMergedProgram(const BugDriver &BD, Module *M1, Module *M2, in TestMergedProgram() argument 223 M2 = CloneModule(M2); in TestMergedProgram() 225 if (Linker::LinkModules(M1, M2, &ErrorMsg)) { in TestMergedProgram() 230 delete M2; // We are done with this module. in TestMergedProgram()
|
/external/opencv/cvaux/src/ |
D | cvbgfg_codebook.cpp | 238 uchar m0, m1, m2, M0, M1, M2; in cvBGCodeBookDiff() local 258 m2 = model->modMin[2]; M2 = model->modMax[2]; in cvBGCodeBookDiff() 272 int h0 = p0 - M0, h1 = p1 - M1, h2 = p2 - M2; in cvBGCodeBookDiff()
|
/external/skia/bench/ |
D | MatrixBench.cpp | 303 static SkBenchmark* M2(void* p) { return new FloatConcatMatrixBench(p); } in M2() function 309 static BenchRegistry gReg2(M2);
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | GRState.cpp | 494 GRState::GenericDataMap M2 = GDMFactory.add(M1, Key, Data); in addGDM() local 496 if (M1 == M2) in addGDM() 500 NewSt.GDM = M2; in addGDM()
|
/external/llvm/lib/Target/Blackfin/ |
D | BlackfinRegisterInfo.td | 138 defm M2 : Rss<2, 6, "m2">; 139 def M2 : Rii<2, 6, "m2", [M2H, M2L]>, DwarfRegNum<[22]>; 238 def M : RegisterClass<"BF", [i32], 32, (add M0, M1, M2, M3)>;
|