/external/llvm-project/llvm/test/CodeGen/SPARC/ |
D | 2011-01-22-SRet.ll | 3 %struct.foo_t = type { i32, i32, i32 } 5 define weak void @make_foo(%struct.foo_t* noalias sret(%struct.foo_t) %agg.result, i32 %a, i32 %b, … 10 %0 = getelementptr inbounds %struct.foo_t, %struct.foo_t* %agg.result, i32 0, i32 0 12 %1 = getelementptr inbounds %struct.foo_t, %struct.foo_t* %agg.result, i32 0, i32 1 14 %2 = getelementptr inbounds %struct.foo_t, %struct.foo_t* %agg.result, i32 0, i32 2 25 %f = alloca %struct.foo_t, align 8 26 …call void @make_foo(%struct.foo_t* noalias sret(%struct.foo_t) %f, i32 10, i32 20, i32 30) nounwind 27 %0 = getelementptr inbounds %struct.foo_t, %struct.foo_t* %f, i32 0, i32 0 29 %2 = getelementptr inbounds %struct.foo_t, %struct.foo_t* %f, i32 0, i32 1 31 %4 = getelementptr inbounds %struct.foo_t, %struct.foo_t* %f, i32 0, i32 2
|
D | 2011-01-21-ByValArgs.ll | 3 %struct.foo_t = type { i32, i32, i32 } 5 @s = internal unnamed_addr global %struct.foo_t { i32 10, i32 20, i32 30 } 14 %0 = tail call i32 @bar(%struct.foo_t* byval(%struct.foo_t) @s) nounwind 18 declare i32 @bar(%struct.foo_t* byval(%struct.foo_t))
|
/external/llvm/test/CodeGen/SPARC/ |
D | 2011-01-22-SRet.ll | 3 %struct.foo_t = type { i32, i32, i32 } 5 define weak void @make_foo(%struct.foo_t* noalias sret %agg.result, i32 %a, i32 %b, i32 %c) nounwin… 10 %0 = getelementptr inbounds %struct.foo_t, %struct.foo_t* %agg.result, i32 0, i32 0 12 %1 = getelementptr inbounds %struct.foo_t, %struct.foo_t* %agg.result, i32 0, i32 1 14 %2 = getelementptr inbounds %struct.foo_t, %struct.foo_t* %agg.result, i32 0, i32 2 25 %f = alloca %struct.foo_t, align 8 26 call void @make_foo(%struct.foo_t* noalias sret %f, i32 10, i32 20, i32 30) nounwind 27 %0 = getelementptr inbounds %struct.foo_t, %struct.foo_t* %f, i32 0, i32 0 29 %2 = getelementptr inbounds %struct.foo_t, %struct.foo_t* %f, i32 0, i32 1 31 %4 = getelementptr inbounds %struct.foo_t, %struct.foo_t* %f, i32 0, i32 2
|
D | 2011-01-21-ByValArgs.ll | 3 %struct.foo_t = type { i32, i32, i32 } 5 @s = internal unnamed_addr global %struct.foo_t { i32 10, i32 20, i32 30 } 14 %0 = tail call i32 @bar(%struct.foo_t* byval @s) nounwind 18 declare i32 @bar(%struct.foo_t* byval)
|
/external/selinux/libsepol/cil/test/integration_testing/ |
D | mls_policy.cil | 22 (type foo_t) 37 (sidcontext test_sid (foo_u foo_r foo_t (s0 (c0)) (s0 (c0)))) 39 (sidcontext test_sid_anon_l (foo_u foo_r foo_t low high)) 41 (context con (foo_u foo_r foo_t low high)) 42 (context con_anon_l (foo_u foo_r foo_t (s0 (c0)) high)) 77 (roletransition foo_r foo_t testing rolea_r) 88 (nametypetransition string typea_t typeb_t fooclass foo_t) 90 (typepermissive foo_t) 99 (attributetypes attrs (foo_t)) 101 (roletype foo_r foo_t)
|
D | nonmls.cil | 4 (type foo_t) 16 ;(sidcontext test_sid (foo_u foo_r foo_t (s0 (c0)) (s0 (c0)))) 53 (roletransition foo_r foo_t testing rolea_r) 59 (nametypetransition string typea_t typeb_t fooclass foo_t) 61 (typepermissive foo_t) 70 (attributetypes attrs (foo_t)) 72 (roletype foo_r foo_t)
|
D | nonmls.conf | 36 type foo_t, attrs; 48 role foo_r types foo_t; 76 sid test_sid foo_u:foo_r:foo_t
|
/external/clang/test/Misc/ |
D | diag-aka-types.cpp | 4 typedef X foo_t; typedef 6 foo_t *ptr; 9 const foo_t &ref = foo_t();
|
/external/llvm-project/clang/test/Misc/ |
D | diag-aka-types.cpp | 4 typedef X foo_t; typedef 6 foo_t *ptr; 9 const foo_t &ref = foo_t();
|
/external/llvm-project/clang/test/SemaCXX/ |
D | warn-unused-filescoped.cpp | 134 template <typename T> static void foo_t() {} // expected-warning {{unused function template 'foo_t'… in foo_t() function 135 template <> void foo_t<int>() {} // expected-warning {{function 'foo_t<int>' is not nee… in foo_t() function 140 foo_t<int>(); in bar() 141 foo_t<void>(); in bar()
|
D | illegal-member-initialization.cpp | 30 foo_t a; // expected-error {{unknown type name 'foo_t'}}
|
/external/llvm-project/clang/test/CXX/basic/basic.start/basic.start.init/ |
D | p2.cpp | 5 struct foo_t { struct 13 static const foo_t x = {{0}}; argument
|
/external/llvm-project/clang/test/Modules/Inputs/merge-typedefs/ |
D | a1.h | 9 typedef struct {} foo_t; typedef 10 typedef foo_t foo2_t;
|
D | b1.h | 3 typedef struct {} foo_t; typedef 4 typedef foo_t foo2_t;
|
/external/clang/test/Modules/Inputs/merge-typedefs/ |
D | b1.h | 3 typedef struct {} foo_t; typedef 4 typedef foo_t foo2_t;
|
D | a1.h | 9 typedef struct {} foo_t; typedef 10 typedef foo_t foo2_t;
|
/external/clang/test/CodeGen/ |
D | ifunc.c | 14 typedef int (*foo_t)(int); typedef 18 static foo_t foo_ifunc() { in foo_ifunc()
|
/external/llvm-project/clang/test/CodeGen/ |
D | ifunc.c | 14 typedef int (*foo_t)(int); typedef 18 static foo_t foo_ifunc() { in foo_ifunc()
|
/external/deqp-deps/glslang/Test/ |
D | hlsl.struct.split.array.geom | 9 typedef PSInput foo_t[2][3]; 14 foo_t Verts;
|
D | hlsl.type.identifier.frag | 2 struct foo_t { 19 foo_t float;
|
/external/llvm-project/clang/test/Parser/ |
D | declarators.c | 44 foo_t *d; // expected-error {{unknown type name 'foo_t'}} 45 foo_t a; // expected-error {{unknown type name 'foo_t'}}
|
/external/clang/test/Parser/ |
D | declarators.c | 44 foo_t *d; // expected-error {{unknown type name 'foo_t'}} 45 foo_t a; // expected-error {{unknown type name 'foo_t'}}
|
/external/llvm/test/Linker/ |
D | type-unique-simple2-a.ll | 8 ; typedef int foo_t; 12 ; virtual const foo_t getFoo(); 17 ; foo_t bar() { 106 !23 = !DIDerivedType(tag: DW_TAG_typedef, name: "foo_t", line: 1, file: !24, baseType: !13)
|
/external/llvm-project/llvm/test/Linker/ |
D | type-unique-simple2-a.ll | 8 ; typedef int foo_t; 12 ; virtual const foo_t getFoo(); 17 ; foo_t bar() { 106 !23 = !DIDerivedType(tag: DW_TAG_typedef, name: "foo_t", line: 1, file: !24, baseType: !13)
|
/external/clang/test/SemaCXX/ |
D | illegal-member-initialization.cpp | 30 foo_t a; // expected-error {{unknown type name 'foo_t'}}
|