Searched refs:f5 (Results 1 - 25 of 224) sorted by relevance

123456789

/external/clang/test/Sema/
H A Ddefault.c3 void f5 (int z) { function
H A Dattr-args.c8 inline __attribute__((fastcall(a))) void *f5(); // expected-error {{'fastcall' attribute takes no arguments}}
9 inline __attribute__((malloc(a))) void *f5(); // expected-error {{'malloc' attribute takes no arguments}}
H A Dattr-noreturn.c31 extern void f5 (unsigned long) __attribute__ ((__noreturn__));
34 f5 (unsigned long size) function
H A Dfloating-point-compare.c19 int f5(float x) { function
H A Dattr-availability-android.c8 void f5(int) __attribute__((availability(ios,introduced=3.2), availability(android,unavailable))); // expected-note{{'f5' has been explicitly marked unavailable here}}
16 f5(0); // expected-error{{'f5' is unavailable: not available on Android}}
H A Dattr-availability-ios.c9 void f5(int) __attribute__((availability(ios,introduced=2.0))) __attribute__((availability(ios,deprecated=3.0))); // expected-note {{'f5' has been explicitly marked deprecated here}}
19 f5(0); // expected-warning{{'f5' is deprecated: first deprecated in iOS 3.0}}
H A Dattr-availability-macosx.c8 void f5(int) __attribute__((availability(ios,introduced=3.2), availability(macosx,unavailable))); // expected-note{{'f5' has been explicitly marked unavailable here}}
16 f5(0); // expected-error{{'f5' is unavailable: not available on OS X}}
/external/v8/test/mjsunit/compiler/
H A Dregress-shared-deopt.js40 var f5 = makeF(5);
55 f5(9);
56 f5(11);
57 %OptimizeFunctionOnNextCall(f5);
58 f5(12);
62 f5(9);
H A Dvariables.js63 function f5(x) { function
66 assertEquals(5, f5(5));
/external/clang/test/ASTMerge/Inputs/
H A Dfunction1.c6 int f5(int) __attribute__((const));
H A Dfunction2.c7 int f5(int) __attribute__((const));
/external/clang/test/CodeGen/
H A Dinline2.c24 // CHECK-GNU89-LABEL: define i32 @f5()
25 // CHECK-C99-LABEL: define i32 @f5()
26 extern inline int f5(void);
27 inline int f5(void) { return 0; } function
65 return f0() + f1() + f2() + f3() + f4() + f5() + f6() + f7() + f8() + f9()
H A Dmicrosoft-call-conv-x64.c10 void __stdcall f5(void) { function
11 // CHECK-LABEL: define void @f5()
20 void (__stdcall *pf5)(void) = f5;
23 f4(); f5();
25 // CHECK: call void @f5()
H A Dx86_64-arguments-win32.c21 // CHECK-LABEL: define void @f5(i64 %a.coerce)
22 void f5(_Complex float a) {} function
H A Dstruct-passing.c15 void __attribute__((pure)) f5(T1 a);
17 void *ps[] = { f0, f1, f2, f3, f4, f5 };
24 // CHECK: declare void @f5({{.*}} byval align 4)
H A Dmicrosoft-call-conv.c13 void __stdcall f5(void) { function
14 // CHECK-LABEL: define x86_stdcallcc void @f5()
34 void (__stdcall *pf5)(void) = f5;
39 f4(); f5(); f6(); f61();
41 // CHECK: call x86_stdcallcc void @f5()
H A D2007-09-28-PackedUnionMember.c11 struct opaque3 *f5; member in struct:H::__anon1705::__anon1706
/external/clang/test/CodeGenCXX/
H A Dreinterpret-cast.cpp17 void f5(void*& u) { function
H A Dfriend-redecl.cpp14 bool TryFoo(Foo *f5);
H A Dmangle-variadic-templates.cpp54 template<typename R, typename ...ArgTypes> identity<R(ArgTypes...)> f5() {} function
56 template identity<int(int, float, double)> f5();
/external/clang/test/Parser/
H A Dcxx-stmt.cpp57 void f5() { function
66 return f5(), // ok
/external/v8/test/mjsunit/regress/
H A Dregress-2594.js73 function f5() {
80 assertEquals(1, f5())
H A Dregress-clobbered-fp-regs.js35 var f5 = 0.5 * y;
40 var sum = (f1 + f2 + f3 + f4 + f5 + f6 + f7 + f8);
/external/mesa3d/src/mesa/sparc/
H A Dnorm.S57 * ty (f5) = (ux * m4) + (uy * m5) + (uz * m6)
62 fmuls %f0, M4, %f5 ! FGM Group
67 fmuls %f2, M2, %f10 ! FGM Group f5 available
69 fadds %f5, %f6, %f5 ! FGA
73 fadds %f5, %f0, %f5 ! FGA Group stall f0,f5 available
76 /* f3=tx, f5=ty, f7=tz */
80 fmuls %f5,
[all...]
/external/clang/test/CXX/except/except.spec/
H A Dp3.cpp28 extern void f5() throw(int); // expected-note {{previous declaration}}
29 extern void f5(); // expected-warning {{missing exception specification}}

Completed in 570 milliseconds

123456789