Searched refs:__attribute__ (Results 176 - 200 of 1301) sorted by relevance

1234567891011>>

/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/special/
H A Dweak-1.c5 int foo(void) __attribute__((weak));
/openbsd-current/gnu/usr.bin/texinfo/intl/
H A Dvasnprintf.h28 #ifndef __attribute__
31 # define __attribute__(Spec) /* empty */ macro
53 __attribute__ ((__format__ (__printf__, 3, 4)));
55 __attribute__ ((__format__ (__printf__, 3, 0)));
/openbsd-current/regress/libexec/ld.so/randomdata/libaa/
H A Daa.c4 int64_t aavalue __attribute__((section(".openbsd.randomdata")));
/openbsd-current/regress/gnu/egcs/gcc-bounds/
H A Ddeclare-14.c4 __attribute__((__bounded__(__minbytes__,1,TEST_SIZE)));
/openbsd-current/regress/lib/csu/ctors/
H A Dctors.c5 void foo(void) __attribute__((constructor));
/openbsd-current/sys/crypto/
H A Darc4.h27 __attribute__((__bounded__(__buffer__,2,3)));
29 __attribute__((__bounded__(__buffer__,2,4)))
30 __attribute__((__bounded__(__buffer__,3,4)));
32 __attribute__((__bounded__(__buffer__,2,3)));
/openbsd-current/usr.bin/cu/
H A Dcu.h43 __attribute__ ((format (printf, 1, 2)));
45 __attribute__ ((format (printf, 1, 2)));
47 __attribute__ ((format (printf, 2, 3)));
49 __attribute__ ((format (printf, 2, 3)));
/openbsd-current/sys/lib/libsa/
H A Darc4.h27 __attribute__((__bounded__(__buffer__,2,3)));
29 __attribute__((__bounded__(__buffer__,2,4)))
30 __attribute__((__bounded__(__buffer__,3,4)));
32 __attribute__((__bounded__(__buffer__,2,3)));
/openbsd-current/gnu/llvm/clang/lib/Headers/
H A Dmovdirintrin.h18 __attribute__((__always_inline__, __nodebug__, __target__("movdiri")))
28 __attribute__((__always_inline__, __nodebug__, __target__("movdiri")))
43 __attribute__((__always_inline__, __nodebug__, __target__("movdir64b")))
44 _movdir64b (void *__dst __attribute__((align_value(64))), const void *__src) argument
/openbsd-current/sbin/fsck/
H A Dfsutil.h30 __attribute__((__noreturn__,__format__(__printf__,1,2)));
32 __attribute__((__format__(__printf__,1,2)));
34 __attribute__((__format__(__printf__,1,2)));
36 __attribute__((__noreturn__,__format__(__printf__,1,2)));
/openbsd-current/gnu/llvm/libcxxabi/src/
H A Dabort_message.h15 abort_message(const char *format, ...) __attribute__((format(printf, 1, 2)));
/openbsd-current/gnu/llvm/compiler-rt/lib/gwp_asan/tests/
H A Dharness.cpp22 __attribute__((optnone)) char *
26 __attribute__((optnone)) void
30 __attribute__((optnone)) void
34 __attribute__((optnone)) void TouchMemory(void *Ptr) {
/openbsd-current/gnu/gcc/gcc/config/
H A Dfloatunsisf.c2 typedef int SItype __attribute__ ((mode (SI)));
3 typedef unsigned int USItype __attribute__ ((mode (SI)));
4 typedef float SFtype __attribute__ ((mode (SF)));
H A Dfloatunsitf.c2 typedef int SItype __attribute__ ((mode (SI)));
3 typedef unsigned int USItype __attribute__ ((mode (SI)));
4 typedef float TFtype __attribute__ ((mode (TF)));
H A Dfloatunsixf.c2 typedef int SItype __attribute__ ((mode (SI)));
3 typedef unsigned int USItype __attribute__ ((mode (SI)));
4 typedef float XFtype __attribute__ ((mode (XF)));
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Denum5.C9 enum numbers { one, two, three } __attribute__ ((packed)) nums;
10 enum colours { red = 1000, green, blue } __attribute__ ((packed)) cols;
11 enum __attribute__ ((packed)) conditions { fine, rain, cloudy } forecast;
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A D20010202-1.c4 typedef enum { false, true } __attribute__ ((packed)) boolean;
8 } __attribute__((packed)) A:3;
11 } __attribute__((packed)) B:3;
H A Ddeprecated.c1 /* Test __attribute__ ((deprecated)) */
6 typedef int INT1 __attribute__((deprecated));
7 typedef INT1 INT2 __attribute__ ((__deprecated__));
10 typedef INT1 INT1b __attribute__ ((deprecated));
15 INT1 f1(void) __attribute__ ((deprecated));
18 INT2 f3(void) __attribute__ ((__deprecated__));
21 int f6(INT2 x) __attribute__ ((__deprecated__)); /* { dg-warning "`INT2' is deprecated" "" } */
23 typedef enum {red, green, blue} Color __attribute__((deprecated));
26 int g2 __attribute__ ((deprecated));
27 int g3 __attribute__ ((__deprecated_
[all...]
/openbsd-current/usr.bin/ssh/
H A Dpoly1305.h18 __attribute__((__bounded__(__minbytes__, 1, POLY1305_TAGLEN)))
19 __attribute__((__bounded__(__buffer__, 2, 3)))
20 __attribute__((__bounded__(__minbytes__, 4, POLY1305_KEYLEN)));
/openbsd-current/gnu/llvm/compiler-rt/lib/crt/
H A Dcrtend.c13 __attribute__((section(".eh_frame"), aligned(sizeof(int32_t)),
19 __attribute__((section(".ctors"), visibility("hidden"), used)) = {0};
21 __attribute__((section(".dtors"), visibility("hidden"), used)) = {0};
/openbsd-current/usr.bin/cvs/
H A Dlog.h46 void cvs_log(u_int, const char *, ...) __attribute__((format(printf, 2, 3)));
48 int cvs_printf(const char *, ...) __attribute__((format(printf, 1, 2)));
49 void fatal(const char *, ...) __dead __attribute__((format(printf, 1,2)));
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/warn/
H A Ddeprecated.C1 /* Test __attribute__ ((deprecated)) */
6 typedef int INT1 __attribute__((deprecated));
7 typedef INT1 INT2 __attribute__ ((__deprecated__));
10 typedef INT1 INT1b __attribute__ ((deprecated));
15 INT1 f1(void) __attribute__ ((deprecated));
18 INT2 f3(void) __attribute__ ((__deprecated__));
21 int f6(INT2 x) __attribute__ ((__deprecated__));
23 typedef enum {red, green, blue} Color __attribute__((deprecated));
26 int g2 __attribute__ ((deprecated));
27 int g3 __attribute__ ((__deprecated_
[all...]
H A Dformat2.C6 __attribute__((format(printf, 1, 2))) void (*tformatprintf0) (const char *, ...);
7 void (*tformatprintf1) (const char *, ...) __attribute__((format(printf, 1, 2)));
8 void (__attribute__((format(printf, 1, 2))) *tformatprintf2) (const char *, ...);
9 void (__attribute__((format(printf, 1, 2))) ****tformatprintf3) (const char *, ...);
11 char * (__attribute__((format_arg(1))) *tformat_arg) (const char *);
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/format/
H A Dattr-7.c8 __attribute__((format(printf, 1, 2))) void (*tformatprintf0) (const char *, ...);
9 void (*tformatprintf1) (const char *, ...) __attribute__((format(printf, 1, 2)));
10 void (__attribute__((format(printf, 1, 2))) *tformatprintf2) (const char *, ...);
11 void (__attribute__((format(printf, 1, 2))) ****tformatprintf3) (const char *, ...);
13 char * (__attribute__((format_arg(1))) *tformat_arg) (const char *);
/openbsd-current/gnu/llvm/compiler-rt/lib/builtins/
H A Dint_util.c24 __attribute__((visibility("hidden")))
36 __attribute__((weak))
37 __attribute__((visibility("hidden")))
49 __attribute__((weak))
50 __attribute__((visibility("hidden")))

Completed in 443 milliseconds

1234567891011>>