003 File Manager
Current Path:
/usr/src/lib/libc/arm/gen
usr
/
src
/
lib
/
libc
/
arm
/
gen
/
📁
..
📄
Makefile.inc
(607 B)
📄
__aeabi_read_tp.S
(1.7 KB)
📄
_ctx_start.S
(198 B)
📄
_set_tp.c
(1.61 KB)
📄
_setjmp.S
(3.96 KB)
📄
alloca.S
(2.12 KB)
📄
arm_drain_writebuf.2
(2.88 KB)
📄
arm_drain_writebuf.c
(1.53 KB)
📄
arm_initfini.c
(2.74 KB)
📄
arm_sync_icache.2
(2.83 KB)
📄
arm_sync_icache.c
(1.64 KB)
📄
divsi3.S
(8.28 KB)
📄
fabs.c
(1.94 KB)
📄
flt_rounds.c
(2.14 KB)
📄
fpgetmask_vfp.c
(1.68 KB)
📄
fpgetround_vfp.c
(1.61 KB)
📄
fpgetsticky_vfp.c
(1.68 KB)
📄
fpsetmask_vfp.c
(1.82 KB)
📄
fpsetround_vfp.c
(1.71 KB)
📄
fpsetsticky_vfp.c
(1.78 KB)
📄
getcontextx.c
(2.61 KB)
📄
infinity.c
(417 B)
📄
makecontext.c
(2.9 KB)
📄
setjmp.S
(4.1 KB)
📄
signalcontext.c
(2.47 KB)
📄
sigsetjmp.S
(2.61 KB)
Editing: infinity.c
/* * infinity.c */ #include <sys/cdefs.h> __FBSDID("$FreeBSD$"); #include <math.h> /* bytes for +Infinity on a 387 */ const union __infinity_un __infinity = { #if BYTE_ORDER == BIG_ENDIAN { 0x7f, 0xf0, 0, 0, 0, 0, 0, 0 } #else { 0, 0, 0, 0, 0, 0, 0xf0, 0x7f } #endif }; /* bytes for NaN */ const union __nan_un __nan = { #if BYTE_ORDER == BIG_ENDIAN {0xff, 0xc0, 0, 0} #else { 0, 0, 0xc0, 0xff } #endif };
Upload File
Create Folder