Home
last modified time | relevance | path

Searched refs:ELAST (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/
H A Derrno.h39 # ifdef ELAST
41 static const int __elast1 = ELAST + 1;
42 static const int __elast2 = ELAST + 2;
55 # ifdef ELAST
56 # undef ELAST
57 # define ELAST EOWNERDEAD macro
63 # ifdef ELAST
64 # undef ELAST
65 # define ELAST ENOTRECOVERABLE macro
72 # ifdef ELAST
74 #define ELAST global() macro
[all...]
/freebsd/contrib/llvm-project/libcxx/src/include/
H A Dconfig_elast.h22 #if defined(ELAST)
23 # define _LIBCPP_ELAST ELAST
46 # warning ELAST for this platform not yet implemented
/freebsd/stand/libsa/
H A Dstand.h75 #define EADAPT (ELAST+1) /* bad adaptor */
76 #define ECTLR (ELAST+2) /* bad controller */
77 #define EUNIT (ELAST+3) /* bad unit */
78 #define ESLICE (ELAST+4) /* bad slice */
79 #define EPART (ELAST+5) /* bad partition */
80 #define ERDLAB (ELAST+6) /* can't read disk label */
81 #define EUNLAB (ELAST+7) /* unlabeled disk */
82 #define EOFFSET (ELAST+8) /* relative seek not supported */
83 #define ESALAST (ELAST+8) /* */
H A Dbzipfs.c42 #define EOFFSET (ELAST+8) /* relative seek not supported */
/freebsd/sys/compat/linux/
H A Dlinux_errno.c14 KASSERT(error >= 0 && error <= ELAST, in bsd_to_linux_errno()
H A Dlinux_errno.inc39 static const int linux_errtbl[ELAST + 1] = {
159 _Static_assert(ELAST == 97,
/freebsd/lib/libsysdecode/
H A Derrno.c81 if (error >= 0 && error <= ELAST) in sysdecode_freebsd_to_abi_errno()
/freebsd/lib/libc/gen/
H A Derrlst.c217 const int sys_nerr = ELAST + 1;
/freebsd/sys/sys/
H A Derrno.h184 #define ELAST 97 /* Must be equal largest errno */ macro
/freebsd/cddl/lib/libdtrace/
H A Derrno.d228 inline int ELAST = 97; variable
229 #pragma D binding "1.0" ELAST
/freebsd/stand/liblua/
H A Dlerrno.c147 ENTRY(ELAST),
/freebsd/lib/libc/tests/string/
H A Dstrerror_test.c86 sret = strerror(ELAST); in ATF_TC_BODY()
/freebsd/sys/fs/fuse/
H A Dfuse_device.c517 if (ohead.error < 0 || ohead.error > ELAST) { in fuse_device_write()