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

1 2 3 4 5 6 7 8 9

  /external/clang/test/Sema/
stdcall-fastcall.c 6 int __attribute__((fastcall)) var2; // expected-warning{{'fastcall' only applies to function types; type here is 'int'}}
9 void __attribute__((stdcall, fastcall)) foo3(void); // expected-error{{fastcall and stdcall attributes are not compatible}}
11 void __attribute__((fastcall)) foo4(void); // expected-error{{function declared 'fastcall' here was previously declared 'stdcall'}}
14 void rdar8876096foo1(int i, int j) __attribute__((fastcall, cdecl)); // expected-error {{not compatible}}
15 void rdar8876096foo2(int i, int j) __attribute__((fastcall, stdcall)); // expected-error {{not compatible}}
16 void rdar8876096foo3(int i, int j) __attribute__((fastcall, regparm(2))); // expected-error {{not compatible}}
18 void rdar8876096foo5(int i, int j) __attribute__((stdcall, fastcall)); // expected-error {{not compatible}
    [all...]
callingconv.c 3 void __attribute__((fastcall)) foo(float *a) {
9 void __attribute__((fastcall(1))) baz(float *a) { // expected-error {{attribute takes no arguments}}
12 void __attribute__((fastcall)) test0() { // expected-error {{function with no prototype cannot use fastcall calling convention}}
15 void __attribute__((fastcall)) test1(void) {
18 void __attribute__((fastcall)) test2(int a, ...) { // expected-error {{variadic function cannot use fastcall calling convention}}
25 void (__attribute__((fastcall)) *pfoo)(float*) = foo;
36 typedef void (__attribute__((fastcall)) *Handler) (float *);
  /external/kernel-headers/original/asm-x86/
hw_irq_32.h 32 fastcall void reschedule_interrupt(void);
33 fastcall void invalidate_interrupt(void);
34 fastcall void call_function_interrupt(void);
38 fastcall void apic_timer_interrupt(void);
39 fastcall void error_interrupt(void);
40 fastcall void spurious_interrupt(void);
41 fastcall void thermal_interrupt(void);
50 void FASTCALL(send_IPI_self(int vector));
linkage_32.h 5 #define FASTCALL(x) x __attribute__((regparm(3)))
6 #define fastcall __attribute__((regparm(3))) macro
  /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/kernel-headers/original/linux/
completion.h 45 extern void FASTCALL(wait_for_completion(struct completion *));
46 extern int FASTCALL(wait_for_completion_interruptible(struct completion *x));
47 extern unsigned long FASTCALL(wait_for_completion_timeout(struct completion *x,
49 extern unsigned long FASTCALL(wait_for_completion_interruptible_timeout(
52 extern void FASTCALL(complete(struct completion *));
53 extern void FASTCALL(complete_all(struct completion *));
linkage.h 58 #ifndef FASTCALL
59 #define FASTCALL(x) x
60 #define fastcall macro
file.h 67 extern void FASTCALL(__fput(struct file *));
68 extern void FASTCALL(fput(struct file *));
76 extern struct file * FASTCALL(fget(unsigned int fd));
77 extern struct file * FASTCALL(fget_light(unsigned int fd, int *fput_needed));
78 extern void FASTCALL(set_close_on_exec(unsigned int fd, int flag));
81 extern void FASTCALL(put_unused_fd(unsigned int fd));
109 extern void FASTCALL(fd_install(unsigned int fd, struct file * file));
114 void FASTCALL(put_files_struct(struct files_struct *fs));
mutex-debug.h 21 extern void FASTCALL(mutex_destroy(struct mutex *lock));
preempt.h 13 extern void fastcall add_preempt_count(int val);
14 extern void fastcall sub_preempt_count(int val);
  /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;
  /external/llvm/test/CodeGen/X86/
fastcall-correct-mangling.ll 3 ; Check that a fastcall function gets correct mangling
  /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
  /bionic/libc/kernel/arch-x86/asm/
linkage_32.h 22 #define FASTCALL(x) x __attribute__((regparm(3)))
24 #define fastcall __attribute__((regparm(3))) macro
  /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
  /development/ndk/platforms/android-3/include/linux/
linkage.h 61 #ifndef FASTCALL
62 #define FASTCALL(x) x
63 #define fastcall macro
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
linkage.h 61 #ifndef FASTCALL
62 #define FASTCALL(x) x
63 #define fastcall macro
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
linkage.h 61 #ifndef FASTCALL
62 #define FASTCALL(x) x
63 #define fastcall macro

Completed in 687 milliseconds

1 2 3 4 5 6 7 8 9