Home
last modified time | relevance | path

Searched refs:foo1 (Results 1 – 25 of 367) sorted by relevance

12345678910>>...15

/external/llvm/test/MC/Mips/
Delf-relsym.s31 .globl foo1 symbol
33 .type foo1,@function
35 .ent foo1
36 foo1: # @foo1 label
71 .end foo1
73 .size foo1, ($tmp0)-foo1
/external/llvm/test/Transforms/SimplifyCFG/
Dswitch_thread.ll5 declare void @foo1()
19 call void @foo1( )
33 call void @foo1( )
54 ; CHECK-NEXT: call void @foo1()
58 ; CHECK-NEXT: call void @foo1()
72 call void @foo1( )
84 call void @foo1( )
85 call void @foo1( )
88 call void @foo1( )
100 ; CHECK-NEXT: call void @foo1()
[all …]
/external/llvm/test/Transforms/Reassociate/
Dprev_insts_canonicalized.ll21 ; CHECK-LABEL: @foo1
22 define void @foo1(float %in, i1 %cmp) {
24 br label %foo1
28 br label %foo1
30 foo1:
47 ; foo1 is processed, the invariant of reassociate are not preserved
48 %unused = phi float [%in1, %foo1], [undef, %wrapper_entry]
49 br label %foo1
51 foo1:
/external/deqp/data/gles2/shaders/
Dqualification_order.test383 void foo1 ( out mediump float x)
397 foo1(result);
417 void foo1 ( out float x)
431 foo1(result);
451 void foo1 ( mediump float x)
465 foo1(result);
485 void foo1 (out mediump float x)
499 foo1(result);
523 void foo1 ( mediump out float x)
537 foo1(result);
[all …]
/external/clang/test/Sema/
Dattr-sentinel.c7 void foo1 (int x, ...) ATTR; // expected-note 3 {{function has been explicitly marked sentinel here…
14 #define FOOMACRO(...) foo1(__VA_ARGS__)
17 foo1(1, NULL); // OK in test1()
18 foo1(1, 0) ; // expected-warning {{missing sentinel in function call}} in test1()
33 foo1(3, &a, &b, &c); // expected-warning {{missing sentinel in function call}} in test1()
34 foo1(3, &a, &b, &c, (struct A*) 0); in test1()
/external/guava/guava-tests/test/com/google/common/collect/
DAbstractMapEntryTest.java62 Entry<String, Integer> foo1 = entry("foo", 1);
63 assertEquals(foo1, foo1);
64 assertEquals(control("foo", 1), foo1);
67 assertFalse(foo1.equals(control("bar", 1)));
68 assertFalse(foo1.equals(new Object()));
69 assertFalse(foo1.equals(null));
/external/clang/test/SemaObjCXX/
Dconst-cast.mm6 const Foo *foo1 = 0;
7 Foo *foo2 = foo1; // expected-error {{cannot initialize}}
11 const Foo *foo1 = 0;
12 Foo *foo2 = const_cast<Foo*>(foo1);
/external/swiftshader/third_party/LLVM/test/Transforms/SimplifyCFG/
Dswitch_thread.ll6 declare void @foo1()
20 call void @foo1( )
34 call void @foo1( )
58 call void @foo1( )
70 call void @foo1( )
71 call void @foo1( )
74 call void @foo1( )
/external/llvm/test/CodeGen/Mips/
Dfp16mix.ll8 define void @foo1() {
11 ; fmask1: .ent foo1
18 ; fmask1: .end foo1
19 ; fmask2: .ent foo1
21 ; fmask2: .end foo1
22 ; fmask1nr: .ent foo1
29 ; fmask1nr: .end foo1
/external/llvm/test/Object/Inputs/
Delfver.S17 .symver foo1, foo@VER1
18 .globl foo1 symbol
19 .type foo1, @function
20 foo1: label
/external/clang/test/CodeGen/
Dattr-func-def.c6 int foo1(int);
9 return foo1(a + 2); in foo2()
13 int foo1(int a) { in foo1() function
/external/llvm/test/CodeGen/ARM/
Daliases.ll8 ; CHECK: .globl foo1
9 ; CHECK: foo1 = bar
10 ; CHECK-NOT: .size foo1
36 @foo1 = alias i32, i32* @bar
56 %tmp = load i32, i32* @foo1
/external/llvm/test/Assembler/
Ddicompositetype-members.ll19 ; CHECK-NEXT: !6 = !DISubprogram(name: "foo", linkageName: "foo1", scope: !3, file: !1
24 !6 = !DISubprogram(name: "foo", linkageName: "foo1", scope: !3, file: !1, isDefinition: false)
31 ; CHECK-NEXT: !11 = !DISubprogram(name: "foo", linkageName: "foo1", scope: !8, file: !1
36 !11 = !DISubprogram(name: "foo", linkageName: "foo1", scope: !8, file: !1, isDefinition: false)
42 ; CHECK-NEXT: !14 = !DISubprogram(name: "foo", linkageName: "foo1", scope: !8, file: !2,
44 !14 = !DISubprogram(name: "foo", linkageName: "foo1", scope: !8, file: !2, isDefinition: false)
49 !16 = !DISubprogram(name: "foo", linkageName: "foo1", scope: !3, file: !2, isDefinition: false)
/external/compiler-rt/test/asan/TestCases/Windows/
Dnull_deref_multiple_dlls.cc15 __declspec(dllimport) void foo1();
19 foo1(); in main()
23 __declspec(dllexport) void foo1() {}
/external/compiler-rt/test/asan/TestCases/Linux/
Dcoverage-missing.cc51 void foo1();
58 void foo1() { fprintf(stderr, "foo1\n"); } in foo1() function
72 foo1(); in main()
/external/autotest/client/deps/fakegudev/src/
Dtest-fakesyscalls.sh13 FILE_REDIRECTIONS_PRELOAD=${FILE_REDIRECTIONS_PRELOAD}:/tmp/foo1=/tmp/foo2
19 rm -f /tmp/foo1 /tmp/foo2 /tmp/foo3 /tmp/foo4 /tmp/foo5 /tmp/foo6 /tmp/foo99
23 echo LD_PRELOAD=${FAKE_SYSCALLS_LIB} ${TEST_EXE} /tmp/foo1 /tmp/foo2
24 LD_PRELOAD=${FAKE_SYSCALLS_LIB} ${TEST_EXE} /tmp/foo1 /tmp/foo2
/external/swiftshader/third_party/LLVM/test/Linker/
D2008-06-26-AddressSpace.ll3 ; RUN: llvm-as %s -o %t.foo1.bc
5 ; RUN: llvm-link %t.foo2.bc %t.foo1.bc -S | grep {addrspace(2)}
6 ; RUN: llvm-link %t.foo1.bc %t.foo2.bc -S | grep {addrspace(2)}
D2008-06-13-LinkOnceRedefinition.ll3 ; RUN: llvm-as %s -o %t.foo1.bc
6 ; RUN: llvm-link %t.foo1.bc %t.foo2.bc -S
7 ; RUN: llvm-link %t.foo1.bc %t.foo3.bc -S
/external/swiftshader/third_party/LLVM/test/Transforms/GlobalOpt/
Dalias-resolve.ll2 ; RUN: cat %t | grep foo1 | count 1
7 @foo1 = alias void ()* @foo2
15 call void @foo1()
/external/llvm/test/Linker/
D2008-06-26-AddressSpace.ll3 ; RUN: llvm-as %s -o %t.foo1.bc
5 ; RUN: llvm-link %t.foo2.bc %t.foo1.bc -S | FileCheck %s
6 ; RUN: llvm-link %t.foo1.bc %t.foo2.bc -S | FileCheck %s
D2008-06-13-LinkOnceRedefinition.ll3 ; RUN: llvm-as %s -o %t.foo1.bc
6 ; RUN: llvm-link %t.foo1.bc %t.foo2.bc -S
7 ; RUN: llvm-link %t.foo1.bc %t.foo3.bc -S
/external/swiftshader/third_party/LLVM/test/Integer/
Dpacked_bt.ll5 @foo1 = external global <4 x float>
11 store <4 x float> <float 1.0, float 2.0, float 3.0, float 4.0>, <4 x float>* @foo1
13 %l1 = load <4 x float>* @foo1
/external/llvm/test/Integer/
Dpacked_bt.ll5 @foo1 = external global <4 x float>
11 store <4 x float> <float 1.0, float 2.0, float 3.0, float 4.0>, <4 x float>* @foo1
13 %l1 = load <4 x float>, <4 x float>* @foo1
/external/llvm/test/LTO/X86/
Dlinkonce_odr_func.ll2 ; RUN: llvm-lto -o %t2 -dso-symbol=foo1 -dso-symbol=foo2 -dso-symbol=foo3 \
10 ; CHECK: W foo1
11 define linkonce_odr void @foo1() noinline {
44 call void @foo1()
/external/swiftshader/third_party/LLVM/test/Feature/
Dpacked.ll5 @foo1 = external global <4 x float> ; <<4 x float>*> [#uses=2]
9 …loat 1.000000e+00, float 2.000000e+00, float 3.000000e+00, float 4.000000e+00 >, <4 x float>* @foo1
11 %l1 = load <4 x float>* @foo1 ; <<4 x float>> [#uses=0]

12345678910>>...15