Home
last modified time | relevance | path

Searched refs:M3 (Results 1 – 25 of 59) sorted by relevance

123

/external/llvm/unittests/Support/
DMemoryTest.cpp76 MemoryBlock M3 = Memory::allocateMappedMemory(32, nullptr, Flags, EC); in TEST_P() local
83 EXPECT_NE((void*)nullptr, M3.base()); in TEST_P()
84 EXPECT_LE(32U, M3.size()); in TEST_P()
87 EXPECT_FALSE(doesOverlap(M2, M3)); in TEST_P()
88 EXPECT_FALSE(doesOverlap(M1, M3)); in TEST_P()
91 EXPECT_FALSE(Memory::releaseMappedMemory(M3)); in TEST_P()
132 MemoryBlock M3 = Memory::allocateMappedMemory(4 * sizeof(int), nullptr, Flags, in TEST_P() local
137 EXPECT_FALSE(doesOverlap(M2, M3)); in TEST_P()
138 EXPECT_FALSE(doesOverlap(M1, M3)); in TEST_P()
144 EXPECT_NE((void*)nullptr, M3.base()); in TEST_P()
[all …]
DCommandLineTest.cpp63 StackOption(const M0t &M0, const M1t &M1, const M2t &M2, const M3t &M3) in StackOption() argument
64 : Base(M0, M1, M2, M3) {} in StackOption()
/external/llvm/test/CodeGen/ARM/
Dmulhi.ll3 ; RUN: llc -mtriple=thumb-eabi -mcpu=cortex-m3 %s -o - | FileCheck %s -check-prefix=M3
12 ; M3-LABEL: smulhi:
13 ; M3: smull
29 ; M3-LABEL: umulhi:
30 ; M3: umull
47 ; M3-LABEL: t3:
48 ; M3-NOT: smmla
49 ; M3: smull
Ddarwin-eabi.ll1 …RUN: llc -mtriple=thumbv7m-apple-darwin -mcpu=cortex-m3 < %s | FileCheck %s --check-prefix=CHECK-M3
3 ; RUN: llc -mtriple=thumbv7-apple-darwin -mcpu=cortex-m3 < %s | FileCheck %s --check-prefix=CHECK-M3
9 ; CHECK-M3-LABEL: float_op:
10 ; CHECK-M3: blx ___addsf3
19 ; CHECK-M3-LABEL: double_op:
20 ; CHECK-M3: blx ___adddf3
Dbuild-attributes.ll26 …N: llc < %s -mtriple=thumbv7m-linux-gnueabi -mcpu=cortex-m3 | FileCheck %s --check-prefix=CORTEX-M3
358 ; CORTEX-M3: .cpu cortex-m3
359 ; CORTEX-M3: .eabi_attribute 6, 10
360 ; CORTEX-M3: .eabi_attribute 7, 77
361 ; CORTEX-M3: .eabi_attribute 8, 0
362 ; CORTEX-M3: .eabi_attribute 9, 2
363 ; CORTEX-M3: .eabi_attribute 20, 1
364 ; CORTEX-M3: .eabi_attribute 21, 1
365 ; CORTEX-M3: .eabi_attribute 23, 3
366 ; CORTEX-M3: .eabi_attribute 24, 1
[all …]
Dldrd.ll2 …u=cortex-m3 -regalloc=fast -optimize-regalloc=0 | FileCheck %s -check-prefix=M3 -check-prefix=CHECK
9 ; Cortex-M3 errata 602117: LDRD with base in list may result in incorrect base
19 ; M3-LABEL: t:
20 ; M3-NOT: ldrd
/external/llvm/test/CodeGen/Thumb2/
Dthumb2-uxt_rot.ll2 ; RUN: llc -mtriple=thumb-eabi -mcpu=cortex-m3 %s -o - | FileCheck %s --check-prefix=M3
16 ; M3: test2
17 ; M3: uxtb r1, r1
18 ; M3-NOT: uxtab
19 ; M3: add r0, r1
/external/llvm/include/llvm/Support/
DCommandLine.h1232 const M3t &M3) : Option(Optional, NotHidden) {
1233 apply(M0, this); apply(M1, this); apply(M2, this); apply(M3, this);
1238 opt(const M0t &M0, const M1t &M1, const M2t &M2, const M3t &M3,
1240 apply(M0, this); apply(M1, this); apply(M2, this); apply(M3, this);
1247 opt(const M0t &M0, const M1t &M1, const M2t &M2, const M3t &M3,
1249 apply(M0, this); apply(M1, this); apply(M2, this); apply(M3, this);
1256 opt(const M0t &M0, const M1t &M1, const M2t &M2, const M3t &M3,
1259 apply(M0, this); apply(M1, this); apply(M2, this); apply(M3, this);
1266 opt(const M0t &M0, const M1t &M1, const M2t &M2, const M3t &M3,
1269 apply(M0, this); apply(M1, this); apply(M2, this); apply(M3, this);
[all …]
/external/clang/include/clang/ASTMatchers/
DASTMatchersInternal.h1210 template <typename M1, typename M2, typename M3>
1211 typename EnableIfValidArity<3, VariadicOperatorMatcher<M1, M2, M3> >::type
1212 operator()(const M1 &P1, const M2 &P2, const M3 &P3) const {
1213 return VariadicOperatorMatcher<M1, M2, M3>(Func, P1, P2, P3);
1215 template <typename M1, typename M2, typename M3, typename M4>
1216 typename EnableIfValidArity<4, VariadicOperatorMatcher<M1, M2, M3, M4> >::type
1217 operator()(const M1 &P1, const M2 &P2, const M3 &P3, const M4 &P4) const {
1218 return VariadicOperatorMatcher<M1, M2, M3, M4>(Func, P1, P2, P3, P4);
1220 template <typename M1, typename M2, typename M3, typename M4, typename M5>
1222 5, VariadicOperatorMatcher<M1, M2, M3, M4, M5> >::type
[all …]
/external/clang/test/Preprocessor/
Dpp-record.c32 #define M3 int x2 macro
34 M3;
/external/clang/lib/Driver/
DMultilib.cpp161 const Multilib &M3) { in Either() argument
165 Ms.push_back(M3); in Either()
170 const Multilib &M3, const Multilib &M4) { in Either() argument
174 Ms.push_back(M3); in Either()
180 const Multilib &M3, const Multilib &M4, in Either() argument
185 Ms.push_back(M3); in Either()
/external/openssl/crypto/md5/asm/
Dmd5-ia64.S134 #define M3 in19 macro
548 G(B, C, D, A, M3) \
549 LOOP(B, C, 20, M3, RotateM3, label)
558 H(B, C, D, A, M3) \
559 LOOP(B, C, 23, M3, RotateM3, label)
568 I(B, C, D, A, M3) \
569 LOOP(B, C, 21, M3, RotateM3, label)
690 mov U = M3
701 mov M3 = Z
724 mov X = M3
[all …]
/external/clang/test/Sema/
Dunused-expr.c132 #define M3(a) (t3(a), fn2()) macro
142 M3(i); // no warning in t11()
154 #undef M3
/external/clang/test/Misc/
Dmacro-backtrace.c6 #define M3(A, B) M2(A, B) macro
7 #define M4(A, B) M3(A, B)
/external/valgrind/main/none/tests/s390x/
Dcu24_1.c8 #ifndef M3
9 #define M3 0 macro
67 CU24(M3,2,4) in do_cu24()
Dcu24.c8 #ifndef M3
9 #define M3 0 macro
67 CU24(M3,2,4) in do_cu24()
Dcu21.c8 #ifndef M3
9 #define M3 0 macro
80 CU21(M3,2,4) in do_cu21()
Dcu21_1.c8 #ifndef M3
9 #define M3 0 macro
80 CU21(M3,2,4) in do_cu21()
Dcu14.c8 #ifndef M3
9 #define M3 0 macro
89 CU14(M3,2,4) in do_cu14()
/external/clang/include/clang/Driver/
DMultilib.h118 const Multilib &M3);
120 const Multilib &M3, const Multilib &M4);
122 const Multilib &M3, const Multilib &M4,
/external/chromium_org/third_party/opus/src/celt/
Dmathops.h223 #define M3 -11943 macro
230 …return MULT16_16_P15(x, ADD32(M1, MULT16_16_P15(x, ADD32(M2, MULT16_16_P15(x, ADD32(M3, MULT16_16_… in celt_atan01()
235 #undef M3
/external/libopus/celt/
Dmathops.h223 #define M3 -11943 macro
230 …return MULT16_16_P15(x, ADD32(M1, MULT16_16_P15(x, ADD32(M2, MULT16_16_P15(x, ADD32(M3, MULT16_16_… in celt_atan01()
235 #undef M3
/external/speex/libspeex/
Dmath_approx.h276 #define M3 -11943 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()
286 #undef M3
/external/chromium_org/third_party/speex/libspeex/
Dmath_approx.h276 #define M3 -11943 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()
286 #undef M3
/external/chromium_org/third_party/boringssl/src/crypto/poly1305/
Dpoly1305_vec.c289 xmmi M0, M1, M2, M3, M4; in poly1305_blocks() local
356 M3 = _mm_and_si128(MMASK, _mm_srli_epi64(T5, 26)); in poly1305_blocks()
372 T5 = _mm_mul_epu32(M3, p->S22.v); in poly1305_blocks()
373 T6 = _mm_mul_epu32(M3, p->S23.v); in poly1305_blocks()
392 T5 = _mm_mul_epu32(M3, p->S24.v); in poly1305_blocks()
393 T6 = _mm_mul_epu32(M3, p->R20.v); in poly1305_blocks()
406 T5 = _mm_mul_epu32(M3, p->R21.v); in poly1305_blocks()
420 M3 = _mm_and_si128(MMASK, _mm_srli_epi64(T5, 26)); in poly1305_blocks()
426 T3 = _mm_add_epi64(T3, M3); in poly1305_blocks()
478 xmmi M0, M1, M2, M3, M4; in poly1305_combine() local
[all …]

123