/external/clang/test/CodeGen/ |
inline2.c | 29 // CHECK-GNU89: define i32 @f6() 30 // CHECK-C99: define i32 @f6() 31 inline int f6(void); 32 extern inline int f6(void) { return 0; } function 60 return f0() + f1() + f2() + f3() + f4() + f5() + f6() + f7() + f8() + f9()
|
microsoft-call-conv.c | 16 void __thiscall f6(void) { function 17 // CHECK: define x86_thiscallcc void @f6() 28 void (__thiscall *pf6)(void) = f6; 31 f4(); f5(); f6(); 34 // CHECK: call x86_thiscallcc void @f6()
|
functions.c | 43 static void f6(const float f, const float g) { function 46 f6(f, g); 48 // CHECK: call void @f6(float{{.*}}, float{{.*}})
|
2007-09-28-PackedUnionMember.c | 12 unsigned short f6; member in struct:H::__anon19114::__anon19115
|
le32-arguments.c | 43 // CHECK: define void @f6(i32 %a) 44 void f6(enum my_enum a) {} function
|
/external/oprofile/libutil++/tests/ |
path_filter_tests.cpp | 59 path_filter f6(" foo,bar", "bar "); 60 check(f6, "foo", false); 61 check(f6, "foo ", false); 62 check(f6, " foo", true); 63 check(f6, "bar", true); 64 check(f6, "bar ", false); 65 check(f6, " bar", false); 66 check(f6, "foo ", false); 67 check(f6, "foo/ bar", false);
|
string_filter_tests.cpp | 54 string_filter f6(v1, v2); 55 check(f6, "", true); 56 check(f6, "ok", true);
|
/external/valgrind/main/none/tests/mips32/ |
MoveIns.c | 260 TESTINSNMOVE("mfc1 $t7, $f6", 24, f6, t7); 289 TESTINSNMOVEt("mtc1 $t7, $f6", 24, f6, t7); 318 TESTINSNMOVE1s("mov.s $f5, $f6", 24, f5, f6); 319 TESTINSNMOVE1s("mov.s $f6, $f7", 28, f6, f7); 346 TESTINSNMOVE1d("mov.d $f4, $f6", 40, f4, f6); [all...] |
MoveIns.stdout.exp | 8 mfc1 $t7, $f6 :: fs 0.000000, rt 0x252a2e2b 36 mtc1 $t7, $f6 :: fs 0.000000, rt 0x252a2e2b 64 mov.s $f5, $f6 :: fs 1000000000.000000, rt 0x4e6e6b28 65 mov.s $f6, $f7 :: fs -5786.470215, rt 0xc5b4d3c3 91 mov.d $f4, $f6 ::fs -102014360350703794652958156923702465265664.000000, rt 0x322bcc77 92 mov.d $f4, $f6 ::fs 11600980417357008896.000000, rt 0xc732da7a 93 mov.d $f6, $f8 ::fs 97892595018733988536880335157198848.000000, rt 0x42080079 94 mov.d $f6, $f8 ::fs 96757042599808.125000, rt 0x49d5e008 131 movf.s $f4, $f6, $fcc0 :: out: -45786.476562, cc: 1 132 movf.s $f4, $f6, $fcc0 :: out: -45786.476562, cc: [all...] |
/external/clang/test/Parser/ |
cxx-stmt.cpp | 62 int f6() { function 63 int k, // expected-note {{change this ',' to a ';' to call 'f6'}} 64 f6(), // expected-error {{expected ';'}} expected-warning {{interpreted as a function declaration}} expected-note {{replace paren}}
|
/external/llvm/test/MC/Mips/ |
mips-fpu-instructions.s | 9 # CHECK: abs.s $f6, $f7 # encoding: [0x85,0x39,0x00,0x46] 11 # CHECK: add.s $f9, $f6, $f7 # encoding: [0x40,0x32,0x07,0x46] 13 # CHECK: floor.w.s $f6, $f7 # encoding: [0x8f,0x39,0x00,0x46] 15 # CHECK: ceil.w.s $f6, $f7 # encoding: [0x8e,0x39,0x00,0x46] 17 # CHECK: mul.s $f9, $f6, $f7 # encoding: [0x42,0x32,0x07,0x46] 19 # CHECK: neg.s $f6, $f7 # encoding: [0x87,0x39,0x00,0x46] 21 # CHECK: round.w.s $f6, $f7 # encoding: [0x8c,0x39,0x00,0x46] 23 # CHECK: sqrt.s $f6, $f7 # encoding: [0x84,0x39,0x00,0x46] 25 # CHECK: sub.s $f9, $f6, $f7 # encoding: [0x41,0x32,0x07,0x46] 27 # CHECK: trunc.w.s $f6, $f7 # encoding: [0x8d,0x39,0x00,0x46 [all...] |
mips_directives.s | 41 .set f6,$f6 42 # CHECK: abs.s $f6, $f7 # encoding: [0x46,0x00,0x39,0x85] 44 abs.s f6,FPU_MASK
|
/external/clang/test/Sema/ |
attr-availability-ios.c | 10 void f6(int) __attribute__((availability(ios,deprecated=3.0))); 11 void f6(int) __attribute__((availability(ios,introduced=2.0))); // expected-note {{'f6' declared here}} 20 f6(0); // expected-warning{{'f6' is deprecated: first deprecated in iOS 3.0}}
|
warn-unused-function.c | 21 static void f6(); 22 static void __attribute__((used)) f6(); 23 static void f6() {}; function
|
MicrosoftCompatibility.c | 14 __declspec(noreturn) void f6( void ) { 15 return; // expected-warning {{function 'f6' declared 'noreturn' should not return}}
|
sentinel-attribute.c | 15 void f6() __attribute__((__sentinel__)); // expected-warning {{'sentinel' attribute requires named arguments}}
|
/external/clang/test/CodeGenCXX/ |
mangle-variadic-templates.cpp | 59 template<int ...Values> int_tuple<Values...> f6() {} function 61 template int_tuple<1, 2, 3> f6();
|
visibility-inlines-hidden.cpp | 12 virtual void f6() { } function in struct:X0 24 virtual void f6() { } function in struct:X1 49 x0->X0::f6(); 61 x1->X1::f6();
|
vtable-available-externally.cpp | 157 virtual void f6 (); 160 void f6 (); 169 ptr->f6 ();
|
/dalvik/dx/tests/079-dex-local-variable-renumbering/ |
Blort.java | 26 float f6 = 0.0f; local
|
/external/libffi/testsuite/libffi.call/ |
many.c | 17 float f6, 29 (double) f6, (double) f7, (double) f8, (double) f9, (double) f10, 33 return ((f1/f2+f3/f4+f5/f6+f7/f8+f9/f10+f11/f12) * f13);
|
/external/chromium_org/third_party/mesa/src/src/mesa/sparc/ |
norm.S | 63 fmuls %f1, M5, %f6 ! FGM Group 68 fmuls %f2, M6, %f0 ! FGM Group f6 available 69 fadds %f5, %f6, %f5 ! FGA 78 /* len (f6) = (tx * tx) + (ty * ty) + (tz * tz) */ 79 fmuls %f3, %f3, %f6 ! FGM Group f3 available 82 fadds %f6, %f8, %f6 ! FGA Group 2cyc stall f6,f8 available 83 fadds %f6, %f10, %f6 ! FGA Group 4cyc stall f6,f10 availabl [all...] |
/external/mesa3d/src/mesa/sparc/ |
norm.S | 63 fmuls %f1, M5, %f6 ! FGM Group 68 fmuls %f2, M6, %f0 ! FGM Group f6 available 69 fadds %f5, %f6, %f5 ! FGA 78 /* len (f6) = (tx * tx) + (ty * ty) + (tz * tz) */ 79 fmuls %f3, %f3, %f6 ! FGM Group f3 available 82 fadds %f6, %f8, %f6 ! FGA Group 2cyc stall f6,f8 available 83 fadds %f6, %f10, %f6 ! FGA Group 4cyc stall f6,f10 availabl [all...] |
/external/llvm/test/MC/MachO/ |
darwin-x86_64-reloc.s | 72 f6: label 79 movl f6(%rip), %eax 84 .quad f6 361 // CHECK: ('_string', 'f6')
|
/external/clang/test/CXX/temp/temp.decls/temp.friend/ |
p4.cpp | 5 friend void f6(int) { } // expected-error{{redefinition of}} \ function in struct:X1
|