/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/expat/ |
internal.h | 30 #define FASTCALL __attribute__((stdcall, regparm(3)))
41 Likely reason: __fastcall on Windows is like stdcall, therefore
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/expat/ |
internal.h | 30 #define FASTCALL __attribute__((stdcall, regparm(3)))
41 Likely reason: __fastcall on Windows is like stdcall, therefore
|
/external/python/cpython2/Modules/expat/ |
internal.h | 30 #define FASTCALL __attribute__((stdcall, regparm(3))) 41 Likely reason: __fastcall on Windows is like stdcall, therefore
|
/external/python/cpython3/Modules/expat/ |
internal.h | 30 #define FASTCALL __attribute__((stdcall, regparm(3))) 41 Likely reason: __fastcall on Windows is like stdcall, therefore
|
/external/clang/test/CodeGen/ |
stdcall-fastcall.c | 4 void __attribute__((stdcall)) f2(void); 11 void __attribute__((stdcall)) f5(void) { 24 void (__attribute__((stdcall)) *pf2)(void) = f2; 27 void (__attribute__((stdcall)) *pf5)(void) = f5; 46 void __attribute((stdcall)) f7(foo) int foo; {}
|
mrtd.c | 3 // CHECK: mrtd.c:10:3: warning: function with no prototype cannot use the stdcall calling convention
|
/external/clang/test/SemaCXX/ |
calling-conv-compat.cpp | 14 // expected-note@+4 {{candidate function not viable: no known conversion from 'void () __attribute__((stdcall))' to 'fptr_default' (aka 'void (*)()') for 1st argument}} 16 // expected-note@+2 {{candidate function not viable: no known conversion from 'void (*)() __attribute__((stdcall))' to 'fptr_default' (aka 'void (*)()') for 1st argument}} 19 // expected-note@+4 {{candidate function not viable: no known conversion from 'void () __attribute__((stdcall))' to 'fptr_cdecl' (aka 'void (*)()') for 1st argument}} 21 // expected-note@+2 {{candidate function not viable: no known conversion from 'void (*)() __attribute__((stdcall))' to 'fptr_cdecl' (aka 'void (*)()') for 1st argument}} 24 // expected-note@+3 {{candidate function not viable: no known conversion from 'void ()' to 'fptr_stdcall' (aka 'void (*)() __attribute__((stdcall))') for 1st argument}} 25 // expected-note@+2 {{candidate function not viable: no known conversion from 'void () __attribute__((cdecl))' to 'fptr_stdcall' (aka 'void (*)() __attribute__((stdcall))') for 1st argument}} 26 // expected-note@+1 {{candidate function not viable: no known conversion from 'void () __attribute__((fastcall))' to 'fptr_stdcall' (aka 'void (*)() __attribute__((stdcall))') for 1st argument}} 30 // expected-note@+1 {{candidate function not viable: no known conversion from 'void () __attribute__((stdcall))' to 'fptr_fastcall' (aka 'void (*)() __attribute__((fastcall))') for 1st argument}} 32 // expected-note@+2 {{candidate function not viable: no known conversion from 'void () __attribute__((stdcall))' to 'const fptr_default' (aka 'void (*const)()') for 1st argument}} 73 // variadic function can't declared stdcall or fastcal [all...] |
/external/vulkan-validation-layers/windowsRuntimeInstaller/ |
NSIS_Security.patch | 14 @@ -29,7 +29,7 @@ defenv['STDCALL'] = '__stdcall' 33 defenv.Append(CPPDEFINES = [('NSISCALL', '$STDCALL')])
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/ |
test_win32.py | 15 # Testing stdcall function 28 # Calling stdcall function as cdecl
|
/prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/ |
test_win32.py | 15 # Testing stdcall function 28 # Calling stdcall function as cdecl
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_win32.py | 15 # Testing stdcall function 28 # Calling stdcall function as cdecl
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_win32.py | 15 # Testing stdcall function 28 # Calling stdcall function as cdecl
|
/external/clang/test/Sema/ |
decl-microsoft-call-conv.c | 23 void __stdcall CrcGenerateTableNoProtoStdcall(); // expected-warning{{function with no prototype cannot use the stdcall calling convention}}
|
/external/syslinux/gpxe/src/crypto/axtls/ |
os_port.h | 17 #define STDCALL
|
/external/llvm/lib/ExecutionEngine/IntelJITEvents/ |
ittnotify_config.h | 87 #ifndef STDCALL 89 # define STDCALL __stdcall 92 # define STDCALL /* not supported on x86_64 platform */ 94 # define STDCALL __attribute__ ((stdcall)) 97 #endif /* STDCALL */
|
/external/clang/test/SemaTemplate/ |
instantiate-function-params.cpp | 87 typedef int stdfunctype(int, int) __attribute__((stdcall)); 88 __attribute__((stdcall)) functype stdfunc1;
|
/external/expat/lib/ |
internal.h | 59 #define FASTCALL __attribute__((stdcall, regparm(3))) 70 Likely reason: __fastcall on Windows is like stdcall, therefore
|
/external/python/cpython2/Lib/ctypes/test/ |
test_win32.py | 16 # Testing stdcall function 31 # Calling stdcall function as cdecl
|
/external/elfutils/lib/ |
eu-config.h | 63 # define internal_function __attribute__ ((regparm (3), stdcall)) 140 # define CALLING_CONVENTION regparm (3), stdcall 141 # define AND_CALLING_CONVENTION , regparm (3), stdcall
|
/prebuilts/go/darwin-x86/src/runtime/ |
os_windows.go | 158 // Call a Windows function with stdcall conventions, 701 // Calling stdcall on os stack. 705 func stdcall(fn stdFunction) uintptr { func 728 return stdcall(fn) 736 return stdcall(fn) 744 return stdcall(fn) 752 return stdcall(fn) 760 return stdcall(fn) 768 return stdcall(fn) 776 return stdcall(fn [all...] |
/prebuilts/go/linux-x86/src/runtime/ |
os_windows.go | 158 // Call a Windows function with stdcall conventions, 701 // Calling stdcall on os stack. 705 func stdcall(fn stdFunction) uintptr { func 728 return stdcall(fn) 736 return stdcall(fn) 744 return stdcall(fn) 752 return stdcall(fn) 760 return stdcall(fn) 768 return stdcall(fn) 776 return stdcall(fn [all...] |
/external/v8/src/third_party/vtune/ |
ittnotify_config.h | 126 #ifndef STDCALL 128 # define STDCALL __stdcall 131 # define STDCALL /* not supported on x86_64 platform */ 133 # define STDCALL __attribute__ ((stdcall)) 136 #endif /* STDCALL */
|
/external/capstone/bindings/vb6/ |
vbCapstone.cpp | 8 This dll is a small stdcall shim so VB6 can access the capstone API
|
/external/clang/test/SemaObjC/ |
method-attributes.m | 10 -(void) m2 __attribute__((stdcall));
|
/external/libffi/testsuite/libffi.call/ |
ffitest.h | 24 #define __STDCALL__ __attribute__((stdcall))
|