HomeSort by relevance Sort by last modified time
    Searched refs:M1 (Results 51 - 75 of 217) sorted by null

1 23 4 5 6 7 8 9

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/Ia32/
MultU64x64.asm 35 mov ebx, [esp + 8] ; ebx <- M1[0..31]
39 imul ebx, [esp + 20] ; ebx <- M1[0..31] * M2[32..63]
40 imul edx, [esp + 12] ; edx <- M1[32..63] * M2[0..31]
42 mul ecx ; edx:eax <- M1[0..31] * M2[0..31]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/Ia32/
MultU64x64.asm 35 mov ebx, [esp + 8] ; ebx <- M1[0..31]
39 imul ebx, [esp + 20] ; ebx <- M1[0..31] * M2[32..63]
40 imul edx, [esp + 12] ; edx <- M1[32..63] * M2[0..31]
42 mul ecx ; edx:eax <- M1[0..31] * M2[0..31]
MultU64x64.S 34 movl 8(%esp), %ebx # ebx <- M1[0..31]
38 imull 20(%esp), %ebx # ebx <- M1[0..31] * M2[32..63]
39 imull 12(%esp), %edx # edx <- M1[32..63] * M2[0..31]
41 mull %ecx # edx:eax <- M1[0..31] * M2[0..31]
  /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'
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic6x/
insns16-m-unit.d 10 [0-9a-f]+[02468ace] <[^>]*> 231e[ \t]+mpy \.M1 a1,a6,a0
14 [0-9a-f]+[02468ace] <[^>]*> a71e[ \t]+mpy \.M1 a5,a6,a2
17 [0-9a-f]+[02468ace] <[^>]*> 213e[ \t]+mpyh \.M1 a1,a2,a0
21 [0-9a-f]+[02468ace] <[^>]*> a53e[ \t]+mpyh \.M1 a5,a2,a2
25 [0-9a-f]+[02468ace] <[^>]*> 225e[ \t]+mpylh \.M1 a17,a20,a16
29 [0-9a-f]+[02468ace] <[^>]*> a6de[ \t]+mpylh \.M1 a21,a21,a18
32 [0-9a-f]+[02468ace] <[^>]*> 207e[ \t]+mpyhl \.M1 a17,a16,a16
36 [0-9a-f]+[02468ace] <[^>]*> a47e[ \t]+mpyhl \.M1 a21,a16,a18
40 [0-9a-f]+[02468ace] <[^>]*> 231e[ \t]+smpy \.M1 a17,a22,a16
44 [0-9a-f]+[02468ace] <[^>]*> a71e[ \t]+smpy \.M1 a21,a22,a1
    [all...]
sploop-bad-1.s 21 spmask .M1
24 spmaskr .M1
insns-bad-1.s 49 add .M1 a0,a0,a0
114 mvk .M1 0,a1
173 addsub .M1 a2,a3,a5:a4
177 addsub2 .M1 a2,a3,a5:a4
185 add2 .M1 a1,a2,a3
201 andn .M1 a1,a2,a3
206 avg2 .M1 a1,a2
207 avg2 .M1 b1,a2,a2
210 avgu4 .M1 a1,a2
211 avgu4 .M1 b1,a2,a
    [all...]
  /external/clang/test/SemaCXX/
switch-implicit-fallthrough-macro.cpp 37 #define M1 [[clang::fallthrough]]
39 #define M1 [[fallthrough]]
42 #define M2 M1
56 case 1: // expected-warning{{unannotated fall-through between switch labels}} expected-note{{insert 'M1;' to silence this warning}} expected-note{{insert 'break;' to avoid fall-through}}
63 #undef M1
  /hardware/intel/img/psb_video/src/hwdefs/
coreflags.h 179 #define RC_MODES_POSSIBLE2(M1, M2) \
180 (RC_MODE_POSSIBLE(M1) || RC_MODE_POSSIBLE(M2))
182 #define RC_MODES_POSSIBLE3(M1, M2, M3) \
183 (RC_MODES_POSSIBLE2(M1, M2) || RC_MODE_POSSIBLE(M3))
  /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 25 M() : M1(10), M2(11) , auM1(12) {}
26 int M1;
29 printf("M1 = %d M2 = %d auM1 = %d auM2 = %d\n", M1, M2, auM1, auM2);
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
CommandLine.h     [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/bug404.dir/
one.go 14 func (p *T1) M1() T3 {
  /prebuilts/go/darwin-x86/test/uintptrescapes.dir/
main.go 30 func M1() int {
32 t.M1(uintptr(unsafe.Pointer(&buf[0])))
68 b := M1()
70 fmt.Printf("M1: got %d, expected 42\n", b)
  /prebuilts/go/linux-x86/test/fixedbugs/bug404.dir/
one.go 14 func (p *T1) M1() T3 {
  /prebuilts/go/linux-x86/test/uintptrescapes.dir/
main.go 30 func M1() int {
32 t.M1(uintptr(unsafe.Pointer(&buf[0])))
68 b := M1()
70 fmt.Printf("M1: got %d, expected 42\n", b)
  /external/google-breakpad/src/testing/include/gmock/
gmock-generated-matchers.h 665 // AllOf(m1, ..., mN) returns
666 // AllOfResultN<decltype(m1), ..., decltype(mN)>::type.
670 template <typename M1>
672 typedef M1 type;
675 template <typename M1, typename M2>
678 typename AllOfResult1<M1>::type,
683 template <typename M1, typename M2, typename M3>
686 typename AllOfResult1<M1>::type,
691 template <typename M1, typename M2, typename M3, typename M4>
694 typename AllOfResult2<M1, M2>::type
    [all...]
  /external/googletest/googlemock/include/gmock/
gmock-generated-matchers.h 299 // AllOf(m1, ..., mN) returns
300 // AllOfResultN<decltype(m1), ..., decltype(mN)>::type.
304 template <typename M1>
306 typedef M1 type;
309 template <typename M1, typename M2>
312 typename AllOfResult1<M1>::type,
317 template <typename M1, typename M2, typename M3>
320 typename AllOfResult1<M1>::type,
325 template <typename M1, typename M2, typename M3, typename M4>
328 typename AllOfResult2<M1, M2>::type
    [all...]
  /external/v8/testing/gmock/include/gmock/
gmock-generated-matchers.h 299 // AllOf(m1, ..., mN) returns
300 // AllOfResultN<decltype(m1), ..., decltype(mN)>::type.
304 template <typename M1>
306 typedef M1 type;
309 template <typename M1, typename M2>
312 typename AllOfResult1<M1>::type,
317 template <typename M1, typename M2, typename M3>
320 typename AllOfResult1<M1>::type,
325 template <typename M1, typename M2, typename M3, typename M4>
328 typename AllOfResult2<M1, M2>::type
    [all...]
  /external/clang/test/Sema/
unused-expr.c 130 #define M1(a, b) (long)foo((a), (b))
138 M1(i, j); // no warning
152 #undef M1
warn-duplicate-enum.c 81 M1,
  /external/clang/include/clang/Driver/
Multilib.h 119 MultilibSet &Either(const Multilib &M1, const Multilib &M2);
120 MultilibSet &Either(const Multilib &M1, const Multilib &M2,
122 MultilibSet &Either(const Multilib &M1, const Multilib &M2,
124 MultilibSet &Either(const Multilib &M1, const Multilib &M2,
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Driver/
Multilib.h 118 MultilibSet &Either(const Multilib &M1, const Multilib &M2);
119 MultilibSet &Either(const Multilib &M1, const Multilib &M2,
121 MultilibSet &Either(const Multilib &M1, const Multilib &M2,
123 MultilibSet &Either(const Multilib &M1, const Multilib &M2,
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Driver/
Multilib.h 118 MultilibSet &Either(const Multilib &M1, const Multilib &M2);
119 MultilibSet &Either(const Multilib &M1, const Multilib &M2,
121 MultilibSet &Either(const Multilib &M1, const Multilib &M2,
123 MultilibSet &Either(const Multilib &M1, const Multilib &M2,
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Driver/
Multilib.h 118 MultilibSet &Either(const Multilib &M1, const Multilib &M2);
119 MultilibSet &Either(const Multilib &M1, const Multilib &M2,
121 MultilibSet &Either(const Multilib &M1, const Multilib &M2,
123 MultilibSet &Either(const Multilib &M1, const Multilib &M2,

Completed in 657 milliseconds

1 23 4 5 6 7 8 9