/external/clang/test/CodeGen/ |
address-space.c | 35 // CHECK-LABEL: define void @test4( 38 void test4(MyStruct __attribute__((address_space(2))) *pPtr) { function
|
visibility.c | 22 // CHECK-DEFAULT: @test4 = hidden global i32 10 23 // CHECK-PROTECTED: @test4 = hidden global i32 10 24 // CHECK-HIDDEN: @test4 = hidden global i32 10 68 extern int test4; 69 __private_extern__ int test4 = 10; variable
|
ppc64-align-struct.c | 8 struct test4 { int x; int y; int z; }; struct 28 // CHECK: define void @test4(i32 signext %x, [2 x i64] %y.coerce) 29 void test4 (int x, struct test4 y) function 104 // CHECK: define void @test4va(%struct.test4* noalias sret %agg.result, i32 signext %x, ...) 108 // CHECK: bitcast i8* %[[CUR]] to %struct.test4* 109 struct test4 test4va (int x, ...) 111 struct test4 y; 114 y = va_arg (ap, struct test4);
|
/external/clang/test/Sema/ |
warn-shadow.c | 39 struct test4 { struct 44 void test4(int i) { // expected-warning {{declaration shadows a variable in the global scope}} function
|
/external/clang/test/SemaCXX/ |
undefined-inline.cpp | 20 namespace test4 { namespace 21 inline void error_on_zero(int); // expected-warning{{inline function 'test4::error_on_zero' is not defined}}
|
/external/llvm/test/Assembler/ |
alignstack.ll | 30 define void @test4() nounwind { 31 ; CHECK: test4
|
/external/llvm/test/CodeGen/AArch64/ |
compare-branch.ll | 23 br i1 %tst3, label %end, label %test4 26 test4:
|
/external/llvm/test/CodeGen/X86/ |
fast-isel-ret-ext.ll | 25 define signext i16 @test4(i32 %y) nounwind { 28 ; CHECK-LABEL: test4:
|
fp-stack-ret.ll | 33 ; CHECK: test4 37 define void @test4(double *%P) {
|
rem.ll | 24 ; CHECK-LABEL: test4: 26 define i32 @test4(i32 %X) {
|
vec_zero_cse.ll | 34 define void @test4() { 35 ;CHECK-LABEL: @test4
|
movbe.ll | 38 define i32 @test4(i32* %x) nounwind { 42 ; CHECK-LABEL: test4: 44 ; SLM-LABEL: test4:
|
sincos.ll | 52 ; SIN-LABEL: test4: 54 define float @test4(float %X) { 60 ; SAFE: test4
|
/external/llvm/test/MC/Mips/ |
mips-noat.s | 25 # CHECK-LABEL: test4: 31 test4: label
|
/external/llvm/test/Transforms/ConstantHoisting/X86/ |
large-immediate.ll | 30 define i96 @test4(i96 %a) nounwind { 31 ; CHECK-LABEL: test4
|
/external/llvm/test/Transforms/DeadStoreElimination/ |
const-pointers.ll | 31 define void @test4(i32* %p) { 36 ; CHECK-LABEL: define void @test4(
|
/ndk/sources/cxx-stl/gabi++/tests/ |
catch_ptr_02.cpp | 64 void test4 () function 85 test4();
|
/ndk/tests/device/issue61659-neon-assignment/jni/ |
issue61659-neon-assignment.c | 39 void test4() function 55 test4();
|
/external/libcxx/test/std/numerics/rand/rand.eng/rand.eng.lcong/ |
ctor_result_type.pass.cpp | 107 test4() function 150 test4<unsigned short>(); 151 test4<unsigned int>(); 152 test4<unsigned long>(); 153 test4<unsigned long long>();
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.eng/rand.eng.lcong/ |
ctor_result_type.pass.cpp | 107 test4() function 150 test4<unsigned short>(); 151 test4<unsigned int>(); 152 test4<unsigned long>(); 153 test4<unsigned long long>();
|
/external/icu/icu4c/source/test/testdata/ |
ra.txt | 41 * Tag name: test4 43 * @note This resource is for test4 45 test4{"asdfasdf"}
|
/external/llvm/test/CodeGen/R600/ |
udiv.ll | 36 ;EG-LABEL: {{^}}test4: 38 ;SI-LABEL: {{^}}test4: 41 define void @test4(<4 x i32> addrspace(1)* %out, <4 x i32> addrspace(1)* %in) {
|
/external/llvm/test/MC/AsmParser/ |
macros-darwin.s | 41 .macro test4 46 test4 (a b)(,)),(cd) label 49 test4 (a b)(,)),(cd) label
|
/external/llvm/test/Transforms/DeadArgElim/ |
returned.ll | 31 ; CHECK-LABEL: define internal %Ty* @test4(%Ty* returned %this) 33 define internal %Ty* @test4(%Ty* returned %this) { 50 %4 = call %Ty* @test4(%Ty* %this)
|
/external/icu/icu4c/source/test/intltest/ |
strcase.cpp | 74 UnicodeString test4(test3); 75 test4.toLower(Locale("")); 77 if (test4 != expectedResult) 78 errln("1. toLower failed: expected \"" + expectedResult + "\", got \"" + test4 + "\"."); 80 test4 = test3; 81 test4.toLower(Locale("tr", "TR")); 83 if (test4 != expectedResult) 84 errln("2. toLower failed: expected \"" + expectedResult + "\", got \"" + test4 + "\"."); 89 test4 = test3; 91 test4.toUpper(Locale("")) [all...] |