Searched refs:fastcall (Results 1 - 22 of 22) sorted by relevance

/external/clang/test/Sema/
H A Dstdcall-fastcall.c6 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)); // expecte
[all...]
H A Dcallingconv.c3 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/
H A Dhw_irq_32.h32 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);
H A Dlinkage_32.h6 #define fastcall __attribute__((regparm(3))) macro
H A Dsemaphore_32.h86 fastcall void __down_failed(void /* special register calling convention */);
87 fastcall int __down_failed_interruptible(void /* params in registers */);
88 fastcall int __down_failed_trylock(void /* params in registers */);
89 fastcall void __up_wakeup(void /* special register calling convention */);
H A Dapic_32.h51 static __inline fastcall void native_apic_write(unsigned long reg,
57 static __inline fastcall void native_apic_write_atomic(unsigned long reg,
63 static __inline fastcall unsigned long native_apic_read(unsigned long reg)
/external/clang/test/CodeGen/
H A Dstdcall-fastcall.c3 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;
H A Dattributes.c78 void (__attribute__((fastcall)) *fptr)(int);
H A Dpragma-weak.c150 __attribute((pure,noinline,const,fastcall)) void __xxx(void) { }
/external/kernel-headers/original/linux/
H A Dmutex.h114 static inline int fastcall mutex_is_locked(struct mutex *lock)
123 extern void fastcall mutex_lock(struct mutex *lock);
124 extern int fastcall mutex_lock_interruptible(struct mutex *lock);
136 extern int fastcall mutex_trylock(struct mutex *lock);
137 extern void fastcall mutex_unlock(struct mutex *lock);
H A Dpreempt.h13 extern void fastcall add_preempt_count(int val);
14 extern void fastcall sub_preempt_count(int val);
H A Dirq.h142 void fastcall (*handle_irq)(unsigned int irq,
295 extern void fastcall
297 extern void fastcall
300 extern void fastcall
302 extern void fastcall
305 extern void fastcall
308 extern void fastcall
316 handle_irq_name(void fastcall (*handle)(unsigned int, struct irq_desc *,
321 * (is an explicit fastcall, because i386 4KSTACKS calls it from assembly)
323 extern fastcall unsigne
[all...]
H A Dlinkage.h60 #define fastcall macro
H A Dtimer.h33 void fastcall init_timer(struct timer_list * timer);
H A Dkernel.h102 fastcall NORET_TYPE void do_exit(long error_code)
H A Dspinlock.h73 #define __lockfunc fastcall __attribute__((section(".spinlock.text")))
/external/kernel-headers/original/asm-generic/
H A Dmutex-xchg.h26 __mutex_fastpath_lock(atomic_t *count, fastcall void (*fail_fn)(atomic_t *))
45 __mutex_fastpath_lock_retval(atomic_t *count, fastcall int (*fail_fn)(atomic_t *))
68 __mutex_fastpath_unlock(atomic_t *count, fastcall void (*fail_fn)(atomic_t *))
/external/zlib/contrib/delphi/
H A Dzlibd32.mak7 # This project uses the Delphi (fastcall/register) calling convention:
/external/zlib/contrib/pascal/
H A Dzlibd32.mak7 # This project uses the Delphi (fastcall/register) calling convention:
/external/webkit/Source/JavaScriptCore/jit/
H A DJITStubs.h266 #define JIT_STUB __attribute__ ((fastcall))
268 #error "JIT_STUB function calls require fastcall conventions on x86, add appropriate directive/attribute here for your compiler!"
/external/webkit/Source/JavaScriptCore/wtf/
H A DPlatform.h1173 #define JSC_HOST_CALL __attribute__ ((fastcall))
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.mli113 val x86_fastcall : int (** [x86_fastcall] is the familiar fastcall calling

Completed in 451 milliseconds