/external/iproute2/tc/ |
D | static-syms.h | 1 extern char police_action_util[] __attribute__((weak)); if (!strcmp(sym, "police_action_util")) ret… 2 extern char gact_action_util[] __attribute__((weak)); if (!strcmp(sym, "gact_action_util")) return … 3 extern char mirred_action_util[] __attribute__((weak)); if (!strcmp(sym, "mirred_action_util")) ret… 4 extern char tunnel_key_action_util[] __attribute__((weak)); if (!strcmp(sym, "tunnel_key_action_uti… 5 extern char nat_action_util[] __attribute__((weak)); if (!strcmp(sym, "nat_action_util")) return na… 6 extern char simple_action_util[] __attribute__((weak)); if (!strcmp(sym, "simple_action_util")) ret… 7 extern char ipt_action_util[] __attribute__((weak)); if (!strcmp(sym, "ipt_action_util")) return ip… 8 extern char bpf_action_util[] __attribute__((weak)); if (!strcmp(sym, "bpf_action_util")) return bp… 9 extern char connmark_action_util[] __attribute__((weak)); if (!strcmp(sym, "connmark_action_util"))… 10 extern char ife_action_util[] __attribute__((weak)); if (!strcmp(sym, "ife_action_util")) return if… [all …]
|
/external/clang/test/Sema/ |
D | attr-capabilities.c | 3 typedef int __attribute__((capability("role"))) ThreadRole; 4 struct __attribute__((shared_capability("mutex"))) Mutex {}; 8 union __attribute__((capability("mutex"))) MutexUnion { int a; char* b; }; 9 typedef union { int a; char* b; } __attribute__((capability("mutex"))) MutexUnion2; 12 struct __attribute__((capability("wrong"))) IncorrectName {}; // expected-warning {{invalid capabil… 14 int Test1 __attribute__((capability("test1"))); // expected-error {{'capability' attribute only ap… 15 int Test2 __attribute__((shared_capability("test2"))); // expected-error {{'shared_capability' attr… 16 int Test3 __attribute__((acquire_capability("test3"))); // expected-warning {{'acquire_capability'… 17 int Test4 __attribute__((try_acquire_capability("test4"))); // expected-error {{'try_acquire_capabi… 18 int Test5 __attribute__((release_capability("test5"))); // expected-warning {{'release_capability' … [all …]
|
D | attr-availability.c | 5 void f0() __attribute__((availability(macosx,introduced=10.4,deprecated=10.2))); // expected-warnin… 6 void f1() __attribute__((availability(ios,obsoleted=2.1,deprecated=3.0))); // expected-warning{{fe… 7 void f2() __attribute__((availability(ios,introduced=2.1,deprecated=2.1))); 9 void f3() __attribute__((availability(otheros,introduced=2.2))); // expected-warning{{unknown platf… 13 ATSFontGetName(const char *oName) __attribute__((availability(macosx,introduced=8.0,deprecated=9.0,… 16 ATSFontGetPostScriptName(int flags) __attribute__((availability(macosx,introduced=8.0,obsoleted=9.0… 22 PartiallyAvailable() __attribute__((availability(macosx,introduced=10.8))); 24 enum __attribute__((availability(macosx,introduced=10.8))) PartialEnum { 47 __attribute__((availability(macos, unavailable))) // expected-warning {{attribute 'availability' is… 53 void f4(int) __attribute__((availability(ios,deprecated=3.0))); [all …]
|
D | attr-mode-vector-types.c | 4 typedef int __attribute__((mode(byte))) __attribute__((vector_size(256))) vec_t1; 5 typedef int __attribute__((mode(QI))) __attribute__((vector_size(256))) vec_t2; 6 typedef int __attribute__((mode(SI))) __attribute__((vector_size(256))) vec_t3; 7 typedef int __attribute__((mode(DI))) __attribute__((vector_size(256)))vec_t4; 8 typedef float __attribute__((mode(SF))) __attribute__((vector_size(256))) vec_t5; 9 typedef float __attribute__((mode(DF))) __attribute__((vector_size(256))) vec_t6; 10 typedef float __attribute__((mode(XF))) __attribute__((vector_size(256))) vec_t7; 12 typedef int v8qi __attribute__ ((mode(QI))) __attribute__ ((vector_size(8))); 13 typedef int v8qi __attribute__ ((mode(V8QI))); 16 typedef float v4sf __attribute__((mode(V4SF))); [all …]
|
D | attr-alias-elf.c | 3 void f1(void) __attribute__((alias("g1"))); 7 void f2(void) __attribute__((alias("g2"))); // expected-error {{alias must point to a defined varia… 10 void f3(void) __attribute__((alias("g3"))); // expected-error {{alias must point to a defined varia… 14 void f4() __attribute__((alias("g4"))); 16 void h4() __attribute__((alias("f4"))); 18 void f5() __attribute__((alias("g5"))); 19 void h5() __attribute__((alias("f5"))); 23 void f6() __attribute__((alias("g6"))); 24 void h6() __attribute__((alias("f6"))); 27 void h7() __attribute__((alias("f7"))); [all …]
|
D | enable_if.c | 10 …har *pathname, int flags) __attribute__((enable_if(!(flags & O_CREAT), "must specify mode when usi… 11 int open(const char *pathname, int flags, mode_t mode) __attribute__((overloadable)); // expected-… 25 __attribute__((overloadable)) 28 __attribute__((always_inline)) 30 __attribute__((overloadable)) in strnlen() 31 __attribute__((enable_if(__builtin_object_size(s, 0) != -1, in strnlen() 38 __attribute__((overloadable)) 39 __attribute__((enable_if(__builtin_object_size(s, 0) != -1, 41 __attribute__((enable_if(maxlen <= __builtin_object_size(s, 0), 46 __attribute__((overloadable)) [all …]
|
D | callingconv.c | 4 void __attribute__((fastcall)) foo(float *a) { in foo() 7 void __attribute__((stdcall)) bar(float *a) { in bar() 10 void __attribute__((fastcall(1))) baz(float *a) { // expected-error {{'fastcall' attribute takes no… in baz() 13 void __attribute__((fastcall)) test0() { in test0() 16 void __attribute__((fastcall)) test1(void) { in test1() 19 void __attribute__((fastcall)) test2(int a, ...) { // expected-warning {{fastcall calling conventio… in test2() 21 void __attribute__((stdcall)) test3(int a, ...) { // expected-warning {{stdcall calling convention … in test3() 23 void __attribute__((thiscall)) test4(int a, ...) { // expected-error {{variadic function cannot use… in test4() 26 void __attribute__((cdecl)) ctest0() {} in ctest0() 28 void __attribute__((cdecl(1))) ctest1(float x) {} // expected-error {{'cdecl' attribute takes no ar… in ctest1() [all …]
|
D | overloadable.c | 3 int var __attribute__((overloadable)); // expected-error{{'overloadable' attribute only applies to … 4 void params(void) __attribute__((overloadable(12))); // expected-error {{'overloadable' attribute t… 6 int *f(int) __attribute__((overloadable)); // expected-note 2{{previous overload of function is her… 10 double *f(double) __attribute__((overloadable)); // okay, new 18 int *accept_funcptr(int (*)()) __attribute__((overloadable)); // \ 20 float *accept_funcptr(int (*)(int, double)) __attribute__((overloadable)); // \ 31 int* accept_struct(struct X x) __attribute__((__overloadable__)); 32 float* accept_struct(struct Y y) __attribute__((overloadable)); 39 double *f(int) __attribute__((overloadable)); // expected-error{{conflicting types for 'f'}} 41 double promote(float) __attribute__((__overloadable__)); // expected-note {{candidate}} [all …]
|
D | attr-format.c | 5 void a(const char *a, ...) __attribute__((format(printf, 1,2))); // no-error 6 void b(const char *a, ...) __attribute__((format(printf, 1,1))); // expected-error {{'format' attri… 7 void c(const char *a, ...) __attribute__((format(printf, 0,2))); // expected-error {{'format' attri… 8 void d(const char *a, int c) __attribute__((format(printf, 1,2))); // expected-error {{format attri… 9 void e(char *str, int c, ...) __attribute__((format(printf, 2,3))); // expected-error {{format argu… 12 void f(xpto c, va_list list) __attribute__((format(printf, 1, 0))); // no-error 13 void g(xpto c) __attribute__((format(printf, 1, 0))); // no-error 15 void y(char *str) __attribute__((format(strftime, 1,0))); // no-error 16 void z(char *str, int c, ...) __attribute__((format(strftime, 1,2))); // expected-error {{strftime … 18 int (*f_ptr)(char*,...) __attribute__((format(printf, 1,2))); // no-error [all …]
|
D | callingconv-iamcu.c | 3 void __attribute__((fastcall)) foo(float *a) { // expected-warning {{calling convention 'fastcall' … in foo() 6 void __attribute__((stdcall)) bar(float *a) { // expected-warning {{calling convention 'stdcall' ig… in bar() 9 void __attribute__((fastcall(1))) baz(float *a) { // expected-error {{'fastcall' attribute takes no… in baz() 12 void __attribute__((fastcall)) test2(int a, ...) { // expected-warning {{calling convention 'fastca… in test2() 14 void __attribute__((stdcall)) test3(int a, ...) { // expected-warning {{calling convention 'stdcall… in test3() 16 void __attribute__((thiscall)) test4(int a, ...) { // expected-warning {{calling convention 'thisca… in test4() 19 void __attribute__((cdecl)) ctest0() {} in ctest0() 21 void __attribute__((cdecl(1))) ctest1(float x) {} // expected-error {{'cdecl' attribute takes no ar… in ctest1() 23 void (__attribute__((fastcall)) *pfoo)(float*) = foo; // expected-warning {{calling convention 'fas… 25 void (__attribute__((stdcall)) *pbar)(float*) = bar; // expected-warning {{calling convention 'stdc… [all …]
|
D | attr-availability-tvos.c | 3 void f0(int) __attribute__((availability(tvos,introduced=2.0,deprecated=2.1))); // expected-note {{… 4 void f1(int) __attribute__((availability(tvos,introduced=2.1))); 5 void f2(int) __attribute__((availability(tvos,introduced=2.0,deprecated=3.0))); // expected-note {{… 6 void f3(int) __attribute__((availability(tvos,introduced=3.0))); 7 void f4(int) __attribute__((availability(macosx,introduced=10.1,deprecated=10.3,obsoleted=10.5), av… 9 void f5(int) __attribute__((availability(tvos,introduced=2.0))) __attribute__((availability(tvos,de… 10 void f6(int) __attribute__((availability(tvos,deprecated=3.0))); 11 void f6(int) __attribute__((availability(tvos,introduced=2.0))); // expected-note {{'f6' has been e… 24 void f9(int) __attribute__((availability(ios,introduced=2.0,deprecated=9.0))); 30 __attribute__((availability(ios,introduced=9_0,deprecated=9_0,message="" ))) // expected-note{{prev… [all …]
|
/external/arm-trusted-firmware/tools/renesas/rcar_layout_create/ |
D | sa6.c | 135 const uint64_t __attribute__ ((section (".sa6_image_num"))) image_num = RCAR_IMAGE_NUM; 136 const uint64_t __attribute__ ((section (".sa6_bl31src_addr"))) bl31src_addr = RCAR_BL31SRC_ADDRESS; 137 const uint64_t __attribute__ ((section (".sa6_bl31partition"))) bl31partition = RCAR_BL31_PARTITION; 138 const uint64_t __attribute__ ((section (".sa6_bl32src_addr"))) bl32src_addr = RCAR_BL32SRC_ADDRESS; 139 const uint64_t __attribute__ ((section (".sa6_bl32partition"))) bl32partition = RCAR_BL32_PARTITION; 140 const uint64_t __attribute__ ((section (".sa6_bl33src_addr"))) bl33src_addr = RCAR_BL33SRC_ADDRESS; 141 const uint64_t __attribute__ ((section (".sa6_bl33partition"))) bl33partition = RCAR_BL33_PARTITION; 142 const uint64_t __attribute__ ((section (".sa6_bl332src_addr"))) bl332src_addr = RCAR_BL332SRC_ADDRE… 143 const uint64_t __attribute__ ((section (".sa6_bl332partition")))bl332partition = RCAR_BL332_PARTITI… 144 const uint64_t __attribute__ ((section (".sa6_bl333src_addr"))) bl333src_addr = RCAR_BL333SRC_ADDRE… [all …]
|
/external/clang/test/SemaCXX/ |
D | attr-optnone.cpp | 3 int foo() __attribute__((optnone)); 4 int bar() __attribute__((optnone)) __attribute__((noinline)); 6 int baz() __attribute__((always_inline)) __attribute__((optnone)); // expected-warning{{'always_inl… 7 int quz() __attribute__((optnone)) __attribute__((always_inline)); // expected-warning{{'always_inl… 9 __attribute__((always_inline)) int baz1(); // expected-warning{{'always_inline' attribute ignored}} 10 __attribute__((optnone)) int baz1() { return 1; } // expected-note{{conflicting attribute is here}} in baz1() 12 __attribute__((optnone)) int quz1(); // expected-note{{conflicting attribute is here}} 13 __attribute__((always_inline)) int quz1() { return 1; } // expected-warning{{'always_inline' attrib… in quz1() 15 int bay() __attribute__((minsize)) __attribute__((optnone)); // expected-warning{{'minsize' attribu… 16 int quy() __attribute__((optnone)) __attribute__((minsize)); // expected-warning{{'minsize' attribu… [all …]
|
D | attr-noreturn.cpp | 7 __attribute__((noreturn)) void fail(); 21 __attribute__((noreturn)) void fail(); 24 ~A() __attribute__((noreturn)) { fail(); } in ~A() 28 ~B() __attribute__((noreturn)) { fail(); } in ~B() 44 __attribute__((noreturn)) void test_1() { A a; } in test_1() 45 __attribute__((noreturn)) void test_2() { B b; } in test_2() 46 __attribute__((noreturn)) void test_3() { C c; } in test_3() 47 __attribute__((noreturn)) void test_4() { D d; } in test_4() 48 __attribute__((noreturn)) void test_5() { E e; } in test_5() 49 __attribute__((noreturn)) void test_6() { F f; } in test_6() [all …]
|
D | attr-mode-tmpl.cpp | 10 typedef T __attribute__((mode(QI))) T1; in CheckEnumerations() 11 typedef T T2 __attribute__((mode(HI))); in CheckEnumerations() 12 …typedef T __attribute__((mode(V8SI))) T3; // expected-error{{mode 'V8SI' is not supported for enum… in CheckEnumerations() 15 typedef enum __attribute__((mode(HI))) { A4, B4 } T4; in CheckEnumerations() 16 typedef enum { A5, B5 } __attribute__((mode(SI))) T5; in CheckEnumerations() 17 …typedef enum __attribute__((mode(V2SI))) { A6, B6 } T6; // expected-error{{mode 'V2SI' is not supp… in CheckEnumerations() 19 …typedef enum { A7, B7 } __attribute__((mode(V2QI))) T7; // expected-error{{mode 'V2QI' is not supp… in CheckEnumerations() 27 …typedef T __attribute__((mode(QI))) T1; // expected-error{{mode attribute only supported for in… in CheckPrimitiveTypes() 28 …typedef T __attribute__((mode(V2SI))) VT1; // expected-error{{mode attribute only supported for in… in CheckPrimitiveTypes() 36 …typedef T __attribute__((mode(QI))) T1; // expected-error{{type of machine mode does not match typ… in CheckMachineMode() [all …]
|
D | warn-thread-safety-verbose.cpp | 3 #define LOCKABLE __attribute__ ((lockable)) 4 #define SCOPED_LOCKABLE __attribute__ ((scoped_lockable)) 5 #define GUARDED_BY(x) __attribute__ ((guarded_by(x))) 6 #define GUARDED_VAR __attribute__ ((guarded_var)) 7 #define PT_GUARDED_BY(x) __attribute__ ((pt_guarded_by(x))) 8 #define PT_GUARDED_VAR __attribute__ ((pt_guarded_var)) 9 #define ACQUIRED_AFTER(...) __attribute__ ((acquired_after(__VA_ARGS__))) 10 #define ACQUIRED_BEFORE(...) __attribute__ ((acquired_before(__VA_ARGS__))) 11 #define EXCLUSIVE_LOCK_FUNCTION(...) __attribute__ ((exclusive_lock_function(__VA_ARGS__))) 12 #define SHARED_LOCK_FUNCTION(...) __attribute__ ((shared_lock_function(__VA_ARGS__))) [all …]
|
D | unaddressable-functions.cpp | 5 void check(int *) __attribute__((enable_if(false, ""))); 6 void check(double *) __attribute__((enable_if(true, ""))); 8 static void checkStatic(int *) __attribute__((enable_if(false, ""))); 9 static void checkStatic(double *) __attribute__((enable_if(true, ""))); 18 void check(int *) __attribute__((enable_if(false, ""))); 19 void check(double *) __attribute__((enable_if(true, ""))); 21 static void checkStatic(int *) __attribute__((enable_if(false, ""))); 22 static void checkStatic(double *) __attribute__((enable_if(true, ""))); 32 void foo() __attribute__((unavailable("don't call this"))); 33 void foo(int) __attribute__((enable_if(false, ""))); [all …]
|
D | enable_if.cpp | 11 …X(bool b) __attribute__((enable_if(b, "chosen when 'b' is true"))); // expected-note{{candidate d… 13 void f(int n) __attribute__((enable_if(n == 0, "chosen when 'n' is zero"))); 14 …void f(int n) __attribute__((enable_if(n == 1, "chosen when 'n' is one"))); // expected-note{{mem… 16 …void g(int n) __attribute__((enable_if(n == 0, "chosen when 'n' is zero"))); // expected-note{{ca… 18 …void h(int n, int m = 0) __attribute__((enable_if(m == 0, "chosen when 'm' is zero"))); // expect… 20 …static void s(int n) __attribute__((enable_if(n == 0, "chosen when 'n' is zero"))); // expected-n… 22 …void conflict(int n) __attribute__((enable_if(n+n == 10, "chosen when 'n' is five"))); // expecte… 23 …void conflict(int n) __attribute__((enable_if(n*2 == 10, "chosen when 'n' is five"))); // expecte… 25 …void hidden_by_argument_conversion(Incomplete n, int m = 0) __attribute__((enable_if(m == 10, "cho… 26 …Incomplete hidden_by_incomplete_return_value(int n = 0) __attribute__((enable_if(n == 10, "chosen … [all …]
|
D | warn-thread-safety-negative.cpp | 6 #define LOCKABLE __attribute__ ((lockable)) 7 #define SCOPED_LOCKABLE __attribute__ ((scoped_lockable)) 8 #define GUARDED_BY(x) __attribute__ ((guarded_by(x))) 9 #define GUARDED_VAR __attribute__ ((guarded_var)) 10 #define PT_GUARDED_BY(x) __attribute__ ((pt_guarded_by(x))) 11 #define PT_GUARDED_VAR __attribute__ ((pt_guarded_var)) 12 #define ACQUIRED_AFTER(...) __attribute__ ((acquired_after(__VA_ARGS__))) 13 #define ACQUIRED_BEFORE(...) __attribute__ ((acquired_before(__VA_ARGS__))) 14 #define EXCLUSIVE_LOCK_FUNCTION(...) __attribute__ ((exclusive_lock_function(__VA_ARGS__))) 15 #define SHARED_LOCK_FUNCTION(...) __attribute__ ((shared_lock_function(__VA_ARGS__))) [all …]
|
/external/protobuf/objectivec/ |
D | GPBCodedOutputStream_PackagePrivate.h | 38 __attribute__((const)); 40 __attribute__((const)); 42 __attribute__((const)); 44 __attribute__((const)); 46 __attribute__((const)); 48 __attribute__((const)); 50 __attribute__((const)); 52 __attribute__((const)); 54 __attribute__((const)); 56 __attribute__((const)); [all …]
|
/external/clang/test/Parser/ |
D | attributes.c | 3 int __attribute__(()) x; 5 __inline void __attribute__((__always_inline__, __nodebug__)) 10 __attribute__(()) y; // expected-warning {{defaults to 'int'}} 13 int (__attribute__(()) *z)(long y); 16 void f1(__attribute__(()) int x); 18 int f2(y, __attribute__(()) x); // expected-error {{expected identifier}} 22 void f3(__attribute__(()) x, // expected-warning {{defaults to 'int'}} 25 void f4(__attribute__(())); // expected-error {{expected parameter declarator}} 29 int baz(int (__attribute__(()) *x)(long y)); 31 void g1(void (*f1)(__attribute__(()) int x)); [all …]
|
/external/iproute2/ip/ |
D | static-syms.h | 1 extern char ipvlan_link_util[] __attribute__((weak)); if (!strcmp(sym, "ipvlan_link_util")) return … 2 extern char can_link_util[] __attribute__((weak)); if (!strcmp(sym, "can_link_util")) return can_li… 3 extern char team_link_util[] __attribute__((weak)); if (!strcmp(sym, "team_link_util")) return team… 4 extern char team_slave_link_util[] __attribute__((weak)); if (!strcmp(sym, "team_slave_link_util"))… 5 extern char macvlan_link_util[] __attribute__((weak)); if (!strcmp(sym, "macvlan_link_util")) retur… 6 extern char macvtap_link_util[] __attribute__((weak)); if (!strcmp(sym, "macvtap_link_util")) retur… 7 extern char vti_link_util[] __attribute__((weak)); if (!strcmp(sym, "vti_link_util")) return vti_li… 8 extern char vcan_link_util[] __attribute__((weak)); if (!strcmp(sym, "vcan_link_util")) return vcan… 9 extern char ifb_link_util[] __attribute__((weak)); if (!strcmp(sym, "ifb_link_util")) return ifb_li… 10 extern char ipoib_link_util[] __attribute__((weak)); if (!strcmp(sym, "ipoib_link_util")) return ip… [all …]
|
/external/clang/test/SemaObjC/ |
D | method-attributes.m | 6 -t1 __attribute__((noreturn)); method 7 - (NSString *)stringByAppendingFormat:(NSString *)format, ... __attribute__((format(__NSString__, 1… 8 -(void) m0 __attribute__((noreturn)); method 9 -(void) m1 __attribute__((unused)); method 10 -(void) m2 __attribute__((stdcall)); method 11 -(void) m3 __attribute__((optnone)); method 16 - (int) foo1: (int)arg1 __attribute__((deprecated)); 20 - (int) foo2: (int)arg1 __attribute__((deprecated)) __attribute__((unavailable)); 21 - (int) foo3: (int)arg1 __attribute__((deprecated)) __attribute__((unavailable)) __attribute__((ns_… 25 - (int) foo: (int)arg1 __attribute__((deprecated)){ [all …]
|
/external/kmod/libkmod/ |
D | libkmod-internal.h | 36 #define KMOD_EXPORT __attribute__ ((visibility("default"))) 51 const char *format, ...) __attribute__((format(printf, 6, 7))) __attribute__((nonnull(1, 3, 5))); 62 …mod_list_append(struct kmod_list *list, const void *data) _must_check_ __attribute__((nonnull(2))); 63 …od_list_prepend(struct kmod_list *list, const void *data) _must_check_ __attribute__((nonnull(2))); 66 const void *data) _must_check_ __attribute__((nonnull(2))); 69 struct kmod_list *kmod_list_insert_after(struct kmod_list *list, const void *data) __attribute__((n… 70 struct kmod_list *kmod_list_insert_before(struct kmod_list *list, const void *data) __attribute__((… 88 …nfig(struct kmod_ctx *ctx, const char *name, struct kmod_list **list) __attribute__((nonnull(1, 2,… 89 …file(struct kmod_ctx *ctx, const char *name, struct kmod_list **list) __attribute__((nonnull(1, 2,… 90 …file(struct kmod_ctx *ctx, const char *name, struct kmod_list **list) __attribute__((nonnull(1, 2,… [all …]
|
/external/mesa3d/prebuilt-intermediates/vulkan/ |
D | anv_entrypoints.c | 1569 …CreateInfo, const VkAllocationCallbacks* pAllocator, VkInstance* pInstance) __attribute__ ((weak)); 1570 …stroyInstance(VkInstance instance, const VkAllocationCallbacks* pAllocator) __attribute__ ((weak)); 1571 …stance, uint32_t* pPhysicalDeviceCount, VkPhysicalDevice* pPhysicalDevices) __attribute__ ((weak)); 1572 …PFN_vkVoidFunction anv_GetInstanceProcAddr(VkInstance instance, const char* pName) __attribute__ (… 1573 VkResult anv_EnumerateInstanceVersion(uint32_t* pApiVersion) __attribute__ ((weak)); 1574 …ceLayerProperties(uint32_t* pPropertyCount, VkLayerProperties* pProperties) __attribute__ ((weak)); 1575 …* pLayerName, uint32_t* pPropertyCount, VkExtensionProperties* pProperties) __attribute__ ((weak)); 1576 …reateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface) __attribute__ ((weak)); 1577 …ce instance, VkSurfaceKHR surface, const VkAllocationCallbacks* pAllocator) __attribute__ ((weak)); 1579 …reateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface) __attribute__ ((weak)); [all …]
|