- t2ex
- bsd_source/lib/libc/src_bsd/include/math.h - 11.9KB - 470 lines
28: extern char __infinity[];
29: #if __GNUC_PREREQ__(3, 3)
30: #define HUGE_VAL __builtin_huge_val()
- More results from math.h
- bsd_source/lib/libc/src_bsd/include/stddef.h - 2.7KB - 83 lines
76:
77: #if __GNUC_PREREQ__(4, 0)
78: #define offsetof(type, member) __builtin_offsetof(type, member)
- bsd_source/lib/libc/src_bsd/include/sys/cdefs.h - 13.0KB - 386 lines
118:
119: #if !__GNUC_PREREQ__(2, 5) && !defined(__PCC__)
120: #define __attribute__(x) /* delete __attribute__ if non-gcc or gcc1 */
- More results from cdefs.h
- bsd_source/t2ex/network/net/include/netbsd/assert.h - 4.2KB - 105 lines
90: #define __assert_function__ __func__
91: #elif __GNUC_PREREQ__(2, 6)
92: #define __assert_function__ __PRETTY_FUNCTION__
- bsd_source/t2ex/network/net/include/netbsd/math.h - 12.8KB - 488 lines
61: /* 7.12#3 HUGE_VAL, HUGELF, HUGE_VALL */
62: #if __GNUC_PREREQ__(3, 3)
63: #define HUGE_VAL __builtin_huge_val()
- More results from math.h
- bsd_source/t2ex/network/net/src_bsd/lib/libkern/libkern.h - 10.3KB - 348 lines
270: void *memset __P((void *, int, size_t));
271: #if __GNUC_PREREQ__(2, 95) && (__GNUC_PREREQ__(4, 0) || !defined(__vax__))
272: #define memcpy(d, s, l) __builtin_memcpy(d, s, l)
- More results from libkern.h
- bsd_source/t2ex/network/net/src_bsd/machine/ansi.h - 3.4KB - 79 lines
54: #define _BSD_TIME_T_ int /* time() */
55: #if __GNUC_PREREQ__(2, 96)
56: #define _BSD_VA_LIST_ __builtin_va_list /* GCC built-in type */
- bsd_source/t2ex/network/net/src_bsd/machine/stdarg.h - 3.3KB - 81 lines
48:
49: #if __GNUC_PREREQ__(2, 96)
50: #define va_start(ap, last) __builtin_stdarg_start((ap), (last))
- bsd_source/t2ex/network/net/src_bsd/sys/cdefs.h - 13.5KB - 402 lines
163: */
164: #if !__GNUC_PREREQ__(2, 0)
165: #define __extension__ /* delete __extension__ if non-gcc or gcc1 */
- More results from cdefs.h
- bsd_source/t2ex/network/net/src_bsd/sys/cdefs_elf.h - 6.2KB - 159 lines
66:
67: #if __GNUC_PREREQ__(4, 0)
68: #define __weak_reference(sym) __attribute__((__weakref__))