HomeSort by relevance Sort by last modified time
    Searched refs:M1 (Results 1 - 23 of 23) sorted by null

  /external/clang/test/Preprocessor/
macro_rescan.c 2 // RUN: %clang_cc1 -E %s | grep 'ei_2 = (M1)(17);'
4 #define M1(a) (a+1)
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); */
macro_paste_simple.c 9 #define M1(A) A
11 B: M1(M2(##))
  /external/llvm/unittests/ExecutionEngine/JIT/
MultiJITTest.cpp 34 void createModule1(LLVMContext &Context1, Module *&M1, Function *&FooF1) {
35 M1 = new Module("test1", Context1);
36 LoadAssemblyInto(M1,
48 FooF1 = M1->getFunction("foo1");
73 Module *M1 = 0;
75 createModule1(Context1, M1, FooF1);
83 OwningPtr<ExecutionEngine> EE1(EngineBuilder(M1).create());
103 Module *M1 = 0;
105 createModule1(Context1, M1, FooF1);
113 OwningPtr<ExecutionEngine> EE1(EngineBuilder(M1).create())
    [all...]
  /external/clang/test/Misc/
macro-backtrace.c 4 #define M1(A, B) ((A) < (B))
5 #define M2(A, B) M1(A, B)
31 // CHECK-LIMIT: #define M2(A, B) M1(A, B)
32 // CHECK-LIMIT: macro-backtrace.c:4:23: note: expanded from macro: M1
33 // CHECK-LIMIT: #define M1(A, B) ((A) < (B))
44 // CHECK-NO-CARETS-NEXT: macro-backtrace.c:4:23: note: expanded from macro: M1
caret-diags-macros.c 3 #define M1(x) x
6 M1(
10 // CHECK: :3:{{[0-9]+}}: note: expanded from macro: M1
  /external/clang/test/CodeGenCXX/
copy-assign-synthesis.cpp 21 M() : M1(10), M2(11) , auM1(12) {}
22 int M1;
25 printf("M1 = %d M2 = %d auM1 = %d auM2 = %d\n", M1, M2, auM1, auM2);
copy-assign-synthesis-1.cpp 26 M() : M1(10), M2(11) , auM1(12) {}
27 int M1;
30 printf("M1 = %d M2 = %d auM1 = %d auM2 = %d\n", M1, M2, auM1, auM2);
  /external/llvm/include/llvm/Support/
CommandLine.h     [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
3d-cube.js 96 function MMulti(M1, M2) {
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[i][3] * M2[3][j];
123 function MAdd(M1, M2) {
129 for (; j < 4; j++) M[i][j] = M1[i][j] + M2[i][j];
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
3d-cube.js 96 function MMulti(M1, M2) {
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[i][3] * M2[3][j];
123 function MAdd(M1, M2) {
129 for (; j < 4; j++) M[i][j] = M1[i][j] + M2[i][j];
  /external/openssl/crypto/md5/asm/
md5-ia64.S 40 // {in,out}9 Block Value 1 M1
126 #define M1 in9
310 // loading into M12 here produces the M0 value, M13 -> M1, etc.
544 G(D, A, B, C, M1) \
545 COMPUTE(D, A, 9, M1, RotateM1) \
554 H(D, A, B, C, M1) \
555 COMPUTE(D, A, 11, M1, RotateM1) \
564 I(D, A, B, C, M1) \
565 COMPUTE(D, A, 10, M1, RotateM1) \
677 mov M0 = M1
    [all...]
  /external/speex/libspeex/
math_approx.h 274 #define M1 32767
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)))))));
284 #undef M1
  /external/llvm/lib/Analysis/
TypeBasedAliasAnalysis.cpp 292 if (const MDNode *M1 =
296 if (!Aliases(M1, M2))
  /libcore/luni/src/test/java/libcore/java/lang/
ClassCastExceptionTest.java 158 A1, B1, C1, D1, E1, F1, G1, H1, I1, J1, K1, L1, M1, N1, O1, P1, Q1, R1, S1, T1, U1, V1, W1, X1, Y1, Z1,
163 A1, B1, C1, D1, E1, F1, G1, H1, I1, J1, K1, L1, M1, N1, O1, P1, Q1, R1, S1, T1, U1, V1, W1, X1, Y1, Z1,
  /external/llvm/tools/bugpoint/
Miscompilation.cpp 216 static Module *TestMergedProgram(const BugDriver &BD, Module *M1, Module *M2,
222 M1 = CloneModule(M1);
225 if (Linker::LinkModules(M1, M2, Linker::DestroySource, &ErrorMsg)) {
233 Broken = BD.diffProgram(M1, "", "", false, &Error);
236 delete M1;
239 return M1;
    [all...]
ExtractFunction.cpp 192 /// SplitStaticCtorDtor - A module was recently split into two parts, M1/M2, and
193 /// M1 has all of the global variables. If M2 contains any functions that are
196 static void SplitStaticCtorDtor(const char *GlobalName, Module *M1, Module *M2,
198 GlobalVariable *GV = M1->getNamedGlobal(GlobalName);
235 new GlobalVariable(*M1, M1Init->getType(), false,
241 assert(GV && "Not a clone of M1?");
  /external/opencv/cvaux/src/
cvbgfg_codebook.cpp 238 uchar m0, m1, m2, M0, M1, M2; local
257 m1 = model->modMin[1]; M1 = model->modMax[1];
271 int l0 = p0 + m0, l1 = p1 + m1, l2 = p2 + m2;
272 int h0 = p0 - M0, h1 = p1 - M1, h2 = p2 - M2;
cvepilines.cpp 177 CvPoint3D64d* M1,
190 icvAddVector_64d(tmpVect,transVect,(double*)M1,3);
    [all...]
  /external/llvm/unittests/Analysis/
ScalarEvolutionTest.cpp 65 const SCEVMulExpr *M1 = cast<SCEVMulExpr>(P1);
70 EXPECT_EQ(cast<SCEVConstant>(M1->getOperand(0))->getValue()->getZExtValue(),
77 EXPECT_EQ(cast<SCEVUnknown>(M1->getOperand(1))->getValue(), V1);
86 EXPECT_EQ(cast<SCEVUnknown>(M1->getOperand(1))->getValue(), V0);
  /external/skia/bench/
MatrixBench.cpp 51 SkMatrix m0, m1, m2; local
54 m1.reset();
56 always_do(m0 == m1);
57 always_do(m1 == m2);
60 always_do(m1.getType());
302 static SkBenchmark* M1(void* p) { return new ScaleMatrixBench(p); }
308 static BenchRegistry gReg1(M1);
  /external/clang/lib/StaticAnalyzer/Core/
ProgramState.cpp 493 ProgramState::GenericDataMap M1 = St->getGDM();
494 ProgramState::GenericDataMap M2 = GDMFactory.add(M1, Key, Data);
496 if (M1 == M2)
  /external/opencv/ml/src/
mlann_mlp.cpp 612 double m = min_val, M = max_val, m1 = min_val1, M1 = max_val1; local
659 if( t < m1 || t > M1 )
    [all...]
  /external/opencv/cvaux/include/
cvaux.h 577 CvPoint3D64f* M1,
    [all...]

Completed in 382 milliseconds