HomeSort by relevance Sort by last modified time
    Searched full:fastcall (Results 1 - 25 of 286) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Sema/
stdcall-fastcall-x64.c 5 int __attribute__((fastcall)) var2; // expected-warning{{'fastcall' only applies to function types; type here is 'int'}}
8 void __attribute__((stdcall, fastcall)) foo3(void); // expected-warning{{calling convention 'stdcall' ignored for this target}} expected-warning {{calling convention 'fastcall' ignored for this target}}
10 void __attribute__((fastcall)) foo4(void); // expected-warning {{calling convention 'fastcall' ignored for this target}}
13 void rdar8876096foo1(int i, int j) __attribute__((fastcall, cdecl)); // expected-warning{{calling convention 'fastcall' ignored for this target}}
14 void rdar8876096foo2(int i, int j) __attribute__((fastcall, stdcall)); // expected-warning{{calling convention 'stdcall' ignored for this target}} expected-warning {{calling convention 'fastcall' ignored for this target}
    [all...]
stdcall-fastcall.c 5 int __attribute__((fastcall)) var2; // expected-warning{{'fastcall' only applies to function types; type here is 'int'}}
8 void __attribute__((stdcall, fastcall)) foo3(void); // expected-error{{fastcall and stdcall attributes are not compatible}}
10 void __attribute__((fastcall)) foo4(void); // expected-error{{function declared 'fastcall' here was previously declared 'stdcall'}}
13 void rdar8876096foo1(int i, int j) __attribute__((fastcall, cdecl)); // expected-error {{not compatible}}
14 void rdar8876096foo2(int i, int j) __attribute__((fastcall, stdcall)); // expected-error {{not compatible}}
15 void rdar8876096foo3(int i, int j) __attribute__((fastcall, regparm(2))); // expected-error {{not compatible}}
17 void rdar8876096foo5(int i, int j) __attribute__((stdcall, fastcall)); // expected-error {{not compatible}
    [all...]
callingconv.c 4 void __attribute__((fastcall)) foo(float *a) {
10 void __attribute__((fastcall(1))) baz(float *a) { // expected-error {{'fastcall' attribute takes no arguments}}
13 void __attribute__((fastcall)) test0() { // expected-error {{function with no prototype cannot use fastcall calling convention}}
16 void __attribute__((fastcall)) test1(void) {
19 void __attribute__((fastcall)) test2(int a, ...) { // expected-warning {{fastcall calling convention ignored on variadic function}}
30 void (__attribute__((fastcall)) *pfoo)(float*) = foo;
41 typedef void (__attribute__((fastcall)) *Handler) (float *)
    [all...]
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
indirect_size.h 48 # define FASTCALL __attribute__((fastcall))
50 # define FASTCALL
53 extern _X_INTERNAL PURE FASTCALL GLint __glCallLists_size(GLenum);
54 extern _X_INTERNAL PURE FASTCALL GLint __glFogfv_size(GLenum);
55 extern _X_INTERNAL PURE FASTCALL GLint __glFogiv_size(GLenum);
56 extern _X_INTERNAL PURE FASTCALL GLint __glLightfv_size(GLenum);
57 extern _X_INTERNAL PURE FASTCALL GLint __glLightiv_size(GLenum);
58 extern _X_INTERNAL PURE FASTCALL GLint __glLightModelfv_size(GLenum);
59 extern _X_INTERNAL PURE FASTCALL GLint __glLightModeliv_size(GLenum)
    [all...]
indirect_size.c 40 # define FASTCALL __attribute__((fastcall))
42 # define FASTCALL
51 _X_INTERNAL PURE FASTCALL GLint __gl ## from ## _size( GLenum e ) \
56 _X_INTERNAL PURE FASTCALL GLint __gl ## from ## _size( GLenum e ) \
61 _X_INTERNAL PURE FASTCALL GLint
84 _X_INTERNAL PURE FASTCALL GLint
102 _X_INTERNAL PURE FASTCALL GLint
123 _X_INTERNAL PURE FASTCALL GLint
138 _X_INTERNAL PURE FASTCALL GLin
    [all...]
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/asm/
linkage_32.h 16 #define FASTCALL(x) x __attribute__((regparm(3)))
17 #define fastcall __attribute__((regparm(3))) macro
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/asm/
linkage_32.h 16 #define FASTCALL(x) x __attribute__((regparm(3)))
17 #define fastcall __attribute__((regparm(3))) macro
  /prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/asm/
linkage_32.h 16 #define FASTCALL(x) x __attribute__((regparm(3)))
17 #define fastcall __attribute__((regparm(3))) macro
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/asm/
linkage_32.h 16 #define FASTCALL(x) x __attribute__((regparm(3)))
17 #define fastcall __attribute__((regparm(3))) macro
  /prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/asm/
linkage_32.h 16 #define FASTCALL(x) x __attribute__((regparm(3)))
17 #define fastcall __attribute__((regparm(3))) macro
  /external/clang/test/CodeGen/
regparm.c 3 #define FASTCALL __attribute__((regparm(2)))
14 extern void FASTCALL reduced(char b, double c, foo* d, double e, int f);
17 void FASTCALL f1(int i, int j, int k);
stdcall-fastcall.c 3 void __attribute__((fastcall)) f1(void);
6 void __attribute__((fastcall)) f4(void) {
23 void (__attribute__((fastcall)) *pf1)(void) = f1;
26 void (__attribute__((fastcall)) *pf4)(void) = f4;
52 void __attribute__((fastcall)) foo1(int y);
62 void __attribute__((fastcall)) foo2(struct S1 y);
69 void __attribute__((fastcall)) foo3(int *y);
77 void __attribute__((fastcall)) foo4(enum Enum y);
89 void __attribute__((fastcall)) foo5(struct S2 y);
96 void __attribute__((fastcall)) foo6(long long y)
    [all...]
  /external/clang/test/CodeGenCXX/
fastcall.cpp 3 void __attribute__((fastcall)) foo1(int &y);
15 void __attribute__((fastcall)) foo2(S1 a, int b);
  /external/expat/lib/
internal.h 9 FASTCALL - Used for those internal functions that have a simple
30 #define FASTCALL __attribute__((stdcall, regparm(3)))
33 #define FASTCALL __attribute__((regparm(3)))
47 #ifndef FASTCALL
48 #define FASTCALL
  /development/ndk/platforms/android-9/arch-x86/include/asm/
linkage_32.h 22 #define FASTCALL(x) x __attribute__((regparm(3)))
24 #define fastcall __attribute__((regparm(3))) macro
  /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/asm/
linkage_32.h 22 #define FASTCALL(x) x __attribute__((regparm(3)))
24 #define fastcall __attribute__((regparm(3))) macro
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/asm/
linkage_32.h 22 #define FASTCALL(x) x __attribute__((regparm(3)))
24 #define fastcall __attribute__((regparm(3))) macro
  /prebuilts/ndk/9/platforms/android-12/arch-x86/usr/include/asm/
linkage_32.h 22 #define FASTCALL(x) x __attribute__((regparm(3)))
24 #define fastcall __attribute__((regparm(3))) macro
  /prebuilts/ndk/9/platforms/android-13/arch-x86/usr/include/asm/
linkage_32.h 22 #define FASTCALL(x) x __attribute__((regparm(3)))
24 #define fastcall __attribute__((regparm(3))) macro
  /prebuilts/ndk/9/platforms/android-14/arch-x86/usr/include/asm/
linkage_32.h 22 #define FASTCALL(x) x __attribute__((regparm(3)))
24 #define fastcall __attribute__((regparm(3))) macro
  /prebuilts/ndk/9/platforms/android-15/arch-x86/usr/include/asm/
linkage_32.h 22 #define FASTCALL(x) x __attribute__((regparm(3)))
24 #define fastcall __attribute__((regparm(3))) macro
  /prebuilts/ndk/9/platforms/android-16/arch-x86/usr/include/asm/
linkage_32.h 22 #define FASTCALL(x) x __attribute__((regparm(3)))
24 #define fastcall __attribute__((regparm(3))) macro
  /prebuilts/ndk/9/platforms/android-17/arch-x86/usr/include/asm/
linkage_32.h 22 #define FASTCALL(x) x __attribute__((regparm(3)))
24 #define fastcall __attribute__((regparm(3))) macro
  /prebuilts/ndk/9/platforms/android-18/arch-x86/usr/include/asm/
linkage_32.h 22 #define FASTCALL(x) x __attribute__((regparm(3)))
24 #define fastcall __attribute__((regparm(3))) macro
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/asm/
linkage_32.h 22 #define FASTCALL(x) x __attribute__((regparm(3)))
24 #define fastcall __attribute__((regparm(3))) macro

Completed in 1200 milliseconds

1 2 3 4 5 6 7 8 91011>>