HomeSort by relevance Sort by last modified time
    Searched refs:cdecl (Results 1 - 25 of 90) sorted by null

1 2 3 4

  /external/syslinux/gpxe/src/arch/i386/include/bits/
compiler.h 9 #define __asmcall __attribute__ (( cdecl, regparm(0) ))
15 * be cdecl, even if -mrtd is specified. This is somewhat
23 #define __libgcc __attribute__ (( cdecl ))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/pulse/
error.h 26 #include <pulse/cdecl.h>
rtclock.h 25 #include <pulse/cdecl.h>
glib-mainloop.h 29 #include <pulse/cdecl.h>
operation.h 25 #include <pulse/cdecl.h>
utf8.h 26 #include <pulse/cdecl.h>
version.h 28 #include <pulse/cdecl.h>
subscribe.h 30 #include <pulse/cdecl.h>
util.h 28 #include <pulse/cdecl.h>
mainloop-signal.h 27 #include <pulse/cdecl.h>
  /external/clang/test/Sema/
ms_abi-sysv_abi.c 8 // FIXME: Should say 'sysv_abi' instead of 'cdecl'
9 void __attribute__((ms_abi, sysv_abi)) foo3(void); // expected-error{{cdecl and ms_abi attributes are not compatible}}
11 void __attribute__((sysv_abi)) foo4(void); // expected-error{{function declared 'cdecl' here was previously declared 'ms_abi'}}
13 void bar(int i, int j) __attribute__((ms_abi, cdecl)); // expected-error{{cdecl and ms_abi attributes are not compatible}}
14 void bar2(int i, int j) __attribute__((sysv_abi, cdecl)); // no-error
stdcall-fastcall-x64.c 13 void rdar8876096foo1(int i, int j) __attribute__((fastcall, cdecl)); // expected-warning{{calling convention 'fastcall' ignored for this target}}
16 void rdar8876096foo4(int i, int j) __attribute__((stdcall, cdecl)); // expected-warning{{calling convention 'stdcall' ignored for this target}}
18 void rdar8876096foo6(int i, int j) __attribute__((cdecl, fastcall)); // expected-warning {{calling convention 'fastcall' ignored for this target}}
19 void rdar8876096foo7(int i, int j) __attribute__((cdecl, stdcall)); // expected-warning{{calling convention 'stdcall' ignored for this target}}
stdcall-fastcall.c 13 void rdar8876096foo1(int i, int j) __attribute__((fastcall, cdecl)); // expected-error {{not compatible}}
16 void rdar8876096foo4(int i, int j) __attribute__((stdcall, cdecl)); // expected-error {{not compatible}}
18 void rdar8876096foo6(int i, int j) __attribute__((cdecl, fastcall)); // expected-error {{not compatible}}
19 void rdar8876096foo7(int i, int j) __attribute__((cdecl, stdcall)); // expected-error {{not compatible}}
callingconv.c 26 void __attribute__((cdecl)) ctest0() {}
28 void __attribute__((cdecl(1))) ctest1(float x) {} // expected-error {{'cdecl' attribute takes no arguments}}
34 void (__attribute__((cdecl)) *ptest1)(void) = test1; // expected-warning {{incompatible pointer types}}
39 void (__attribute__((cdecl)) *pctest2)() = ctest2;
56 void __attribute__((cdecl)) ctest3() {}
60 PROC __attribute__((cdecl)) ctest4(const char *x) {}
callingconv-iamcu.c 19 void __attribute__((cdecl)) ctest0() {}
21 void __attribute__((cdecl(1))) ctest1(float x) {} // expected-error {{'cdecl' attribute takes no arguments}}
30 void (__attribute__((cdecl)) *pctest2)() = ctest2;
46 void __attribute__((cdecl)) ctest3() {}
49 PROC __attribute__((cdecl)) ctest4(const char *x) {}
mrtd.c 21 // expected-error@+3 {{redeclaration of 'a' with a different type: 'void ((*))(int, int) __attribute__((cdecl))' vs 'void (*)(int, int) __attribute__((stdcall))'}}
24 __attribute__((cdecl)) extern void (*a)(int, int);
27 __attribute__((cdecl)) extern void (*b)(int, ...);
preserve-call-conv.c 13 void (__attribute__((cdecl)) *pfoo2)(void *) = foo; // expected-warning {{incompatible pointer types initializing 'void (*)(void *) __attribute__((cdecl))' with an expression of type 'void (void *) __attribute__((preserve_most))'}}
29 void (__attribute__((cdecl)) *pboo2)(void *) = boo; // expected-warning {{incompatible pointer types initializing 'void (*)(void *) __attribute__((cdecl))' with an expression of type 'void (void *) __attribute__((preserve_all))'}}
attr-args.c 6 inline __attribute__((cdecl(a))) void *f3(); // expected-error {{'cdecl' attribute takes no arguments}}
  /external/clang/test/CodeGenCXX/
default_calling_conv.cpp 1 // RUN: %clang_cc1 -triple i386-unknown-linux-gnu -fdefault-calling-conv=cdecl -emit-llvm -o - %s | FileCheck %s --check-prefix=CDECL --check-prefix=ALL
7 // CDECL: define void @_Z5test1v
14 void __attribute__((cdecl)) test2() {}
microsoft-abi-default-cc.cpp 7 # define METHOD_CC __attribute__ ((cdecl))
2007-01-06-PtrMethodInit.cpp 36 __attribute__ ((regparm (0), cdecl)) HandleEvent (nsIDOMEvent * event) =
48 cdecl)) MouseDown (nsIDOMEvent * aMouseEvent) = 0;
  /external/clang/test/Parser/
arm-windows-calling-convention-handling.c 3 int __cdecl cdecl(int a, int b, int c, int d) { // expected-no-diagnostics function
x64-windows-calling-convention-handling.c 3 int __cdecl cdecl(int a, int b, int c, int d) { // expected-no-diagnostics function
  /external/clang/test/SemaCXX/
virtual-override-x64.cpp 14 void __attribute__((cdecl)) f();
virtual-override-x86.cpp 11 void __attribute__((cdecl)) f(); // expected-error{{virtual function 'f' has different calling convention attributes ('void () __attribute__((cdecl))') than the function it overrides (which has calling convention 'void () __attribute__((thiscall))'}}

Completed in 186 milliseconds

1 2 3 4