id stringlengths 22 129 | text stringlengths 60 19.5k | arch stringclasses 9
values | syntax stringclasses 5
values | kind stringclasses 4
values | repo stringclasses 32
values | path stringlengths 7 108 | license stringclasses 10
values | commit stringlengths 40 40 | source_host stringclasses 1
value | category stringclasses 15
values | source_url stringlengths 85 192 | line_start int64 1 5.48k | line_end int64 4 5.5k |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
bminor/glibc:sysdeps/i386/fpu/s_log1p.S:2 | #endif
fxam
fnstsw
fld %st
sahf
jc 3f // in case x is NaN or ±Inf
4: fabs
fcompl MO(limit)
fnstsw
sahf
jc 2f
faddl MO(one)
fyl2x
ret
2: fyl2xp1
DBL_CHECK_FORCE_UFLOW_NONNAN
ret
3: jp 4b // in case x is ±Inf
fstp %st(1)
fstp %st(1)
ret
END (__log1p) | x86 | gas-like | handwritten | bminor/glibc | sysdeps/i386/fpu/s_log1p.S | LGPL-2.1 | 37825319ee64d51bf8b1774f4964e9743eaf5ef6 | github | libc | https://github.com/bminor/glibc/blob/37825319ee64d51bf8b1774f4964e9743eaf5ef6/sysdeps/i386/fpu/s_log1p.S | 41 | 67 |
bminor/glibc:sysdeps/i386/fpu/s_log1p.S:1 | /*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*/
#include <machine/asm.h>
RCSID("$NetBSD: s_log1p.S,v 1.7 1995/05/09 00:10:58 jtc Exp $")
.section .rodata
.align ALIGNARG(4)
/* The fyl2xp1 can only be used for values in
-1 + sqrt(2) / 2 <= x <= 1 - sqrt(2) / 2
0.29 is a safe value.
*/... | x86 | gas-like | handwritten | bminor/glibc | sysdeps/i386/fpu/s_log1p.S | LGPL-2.1 | 890b7a4b33d482b5c768ab47d70758b80227e9bc | github | libc | https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_log1p.S | 1 | 60 |
bminor/glibc:sysdeps/i386/fpu/s_log1p.S:2 | fxam
fnstsw
fld %st
sahf
jc 3f // in case x is NaN or ±Inf
4: fabs
#ifdef PIC
fcompl limit@GOTOFF(%edx)
#else
fcompl limit
#endif
fnstsw
sahf
jc 2f
#ifdef PIC
faddl one@GOTOFF(%edx)
#else
faddl one
#endif
fyl2x
ret
2: fyl2xp1
#ifdef PIC
fldl dbl_min@GOTOFF(%edx)
#else
fldl dbl_min
#endif
fld %st(1)
... | x86 | gas-like | handwritten | bminor/glibc | sysdeps/i386/fpu/s_log1p.S | LGPL-2.1 | 890b7a4b33d482b5c768ab47d70758b80227e9bc | github | libc | https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_log1p.S | 41 | 90 |
bminor/glibc:sysdeps/i386/fpu/s_log1p.S:3 | addl $8, %esp
cfi_adjust_cfa_offset (-8)
1: ret
3: jp 4b // in case x is ±Inf
fstp %st(1)
fstp %st(1)
ret
END (__log1p) | x86 | gas-like | handwritten | bminor/glibc | sysdeps/i386/fpu/s_log1p.S | LGPL-2.1 | 890b7a4b33d482b5c768ab47d70758b80227e9bc | github | libc | https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_log1p.S | 81 | 90 |
bminor/glibc:sysdeps/i386/fpu/s_log1pf.S:1 | /*
* Public domain.
*/
#include <machine/asm.h>
#include <i386-math-asm.h>
RCSID("$NetBSD: s_log1pf.S,v 1.4 1995/05/09 00:13:05 jtc Exp $")
.section .rodata
.align ALIGNARG(4)
/* The fyl2xp1 can only be used for values in
-1 + sqrt(2) / 2 <= x <= 1 - sqrt(2) / 2
0.29 is a safe value.
*/
limit: .float 0.... | x86 | gas-like | handwritten | bminor/glibc | sysdeps/i386/fpu/s_log1pf.S | LGPL-2.1 | 30891f35fa7da832b66d80d0807610df361851f3 | github | libc | https://github.com/bminor/glibc/blob/30891f35fa7da832b66d80d0807610df361851f3/sysdeps/i386/fpu/s_log1pf.S | 1 | 60 |
bminor/glibc:sysdeps/i386/fpu/s_log1pf.S:2 | fxam
fnstsw
fld %st
sahf
jc 3f // in case x is NaN or ±Inf
4: fabs
fcomps MO(limit)
fnstsw
sahf
jc 2f
fadds MO(one)
fyl2x
ret
2: fyl2xp1
FLT_CHECK_FORCE_UFLOW_NONNAN
ret
3: jp 4b // in case x is ±Inf
fstp %st(1)
fstp %st(1)
ret
END (__log1pf) | x86 | gas-like | handwritten | bminor/glibc | sysdeps/i386/fpu/s_log1pf.S | LGPL-2.1 | 30891f35fa7da832b66d80d0807610df361851f3 | github | libc | https://github.com/bminor/glibc/blob/30891f35fa7da832b66d80d0807610df361851f3/sysdeps/i386/fpu/s_log1pf.S | 41 | 66 |
bminor/glibc:sysdeps/i386/fpu/s_log1pf.S:1 | /*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*/
#include <machine/asm.h>
#include <i386-math-asm.h>
RCSID("$NetBSD: s_log1pf.S,v 1.4 1995/05/09 00:13:05 jtc Exp $")
.section .rodata
.align ALIGNARG(4)
/* The fyl2xp1 can only be used for values in
-1 + sqrt(2) / 2 <= x <= 1 - sqrt(2) / 2
... | x86 | gas-like | handwritten | bminor/glibc | sysdeps/i386/fpu/s_log1pf.S | LGPL-2.1 | 37825319ee64d51bf8b1774f4964e9743eaf5ef6 | github | libc | https://github.com/bminor/glibc/blob/37825319ee64d51bf8b1774f4964e9743eaf5ef6/sysdeps/i386/fpu/s_log1pf.S | 1 | 60 |
bminor/glibc:sysdeps/i386/fpu/s_log1pf.S:2 | #endif
fxam
fnstsw
fld %st
sahf
jc 3f // in case x is NaN or ±Inf
4: fabs
fcomps MO(limit)
fnstsw
sahf
jc 2f
fadds MO(one)
fyl2x
ret
2: fyl2xp1
FLT_CHECK_FORCE_UFLOW_NONNAN
ret
3: jp 4b // in case x is ±Inf
fstp %st(1)
fstp %st(1)
ret
END (__log1pf) | x86 | gas-like | handwritten | bminor/glibc | sysdeps/i386/fpu/s_log1pf.S | LGPL-2.1 | 37825319ee64d51bf8b1774f4964e9743eaf5ef6 | github | libc | https://github.com/bminor/glibc/blob/37825319ee64d51bf8b1774f4964e9743eaf5ef6/sysdeps/i386/fpu/s_log1pf.S | 41 | 67 |
bminor/glibc:sysdeps/i386/fpu/s_log1pf.S:1 | /*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*/
#include <machine/asm.h>
RCSID("$NetBSD: s_log1pf.S,v 1.4 1995/05/09 00:13:05 jtc Exp $")
.section .rodata
.align ALIGNARG(4)
/* The fyl2xp1 can only be used for values in
-1 + sqrt(2) / 2 <= x <= 1 - sqrt(2) / 2
0.29 is a safe value.
*... | x86 | gas-like | handwritten | bminor/glibc | sysdeps/i386/fpu/s_log1pf.S | LGPL-2.1 | 890b7a4b33d482b5c768ab47d70758b80227e9bc | github | libc | https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_log1pf.S | 1 | 60 |
bminor/glibc:sysdeps/i386/fpu/s_log1pf.S:2 | fxam
fnstsw
fld %st
sahf
jc 3f // in case x is NaN or ±Inf
4: fabs
#ifdef PIC
fcomps limit@GOTOFF(%edx)
#else
fcomps limit
#endif
fnstsw
sahf
jc 2f
#ifdef PIC
fadds one@GOTOFF(%edx)
#else
fadds one
#endif
fyl2x
ret
2: fyl2xp1
#ifdef PIC
flds flt_min@GOTOFF(%edx)
#else
flds flt_min
#endif
fld %st(1)
... | x86 | gas-like | handwritten | bminor/glibc | sysdeps/i386/fpu/s_log1pf.S | LGPL-2.1 | 890b7a4b33d482b5c768ab47d70758b80227e9bc | github | libc | https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_log1pf.S | 41 | 90 |
bminor/glibc:sysdeps/i386/fpu/s_log1pf.S:3 | addl $4, %esp
cfi_adjust_cfa_offset (-4)
1: ret
3: jp 4b // in case x is ±Inf
fstp %st(1)
fstp %st(1)
ret
END (__log1pf) | x86 | gas-like | handwritten | bminor/glibc | sysdeps/i386/fpu/s_log1pf.S | LGPL-2.1 | 890b7a4b33d482b5c768ab47d70758b80227e9bc | github | libc | https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_log1pf.S | 81 | 90 |
bminor/glibc:sysdeps/i386/fpu/s_log1pl.S:1 | /*
* Public domain.
*
*/
#include <machine/asm.h>
RCSID("$NetBSD: s_log1p.S,v 1.7 1995/05/09 00:10:58 jtc Exp $")
.section .rodata
.align ALIGNARG(4)
/* The fyl2xp1 can only be used for values in
-1 + sqrt(2) / 2 <= x <= 1 - sqrt(2) / 2
0.29 is a safe value.
*/
limit: .quad 0x947ae147ae147ae1 /* 0.29... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_log1pl.S | LGPL-2.1 | 04e750e75b73957cf1c791535a3f4319534a52fc | github | libc | https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/i386/fpu/s_log1pl.S | 1 | 60 |
bminor/glibc:sysdeps/i386/fpu/s_log1pl.S:2 | LOAD_PIC_REG (dx)
#endif
fxam
fnstsw
fld %st
sahf
jc 3f // in case x is NaN or ±Inf
4:
fabs
fldt MO(limit)
fcompp
fnstsw
sahf
jnc 2f
movzwl 4+8(%esp), %eax
xorb $0x80, %ah
cmpl $0xc040, %eax
jae 5f
faddl MO(one)
5: fyl2x
ret
2: fyl2xp1
ret
3: jp 4b // in case x is ±Inf
fstp %st(1)
fstp %st(1)... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_log1pl.S | LGPL-2.1 | 04e750e75b73957cf1c791535a3f4319534a52fc | github | libc | https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/i386/fpu/s_log1pl.S | 41 | 75 |
bminor/glibc:sysdeps/i386/fpu/s_log1pl.S:1 | /*
* Public domain.
*
*/
#include <machine/asm.h>
RCSID("$NetBSD: s_log1p.S,v 1.7 1995/05/09 00:10:58 jtc Exp $")
.section .rodata
.align ALIGNARG(4)
/* The fyl2xp1 can only be used for values in
-1 + sqrt(2) / 2 <= x <= 1 - sqrt(2) / 2
0.29 is a safe value.
*/
limit: .tfloat 0.29
/* Please note: we ... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_log1pl.S | LGPL-2.1 | 30891f35fa7da832b66d80d0807610df361851f3 | github | libc | https://github.com/bminor/glibc/blob/30891f35fa7da832b66d80d0807610df361851f3/sysdeps/i386/fpu/s_log1pl.S | 1 | 60 |
bminor/glibc:sysdeps/i386/fpu/s_log1pl.S:2 | #endif
fxam
fnstsw
fld %st
sahf
jc 3f // in case x is NaN or ±Inf
4:
fabs
fldt MO(limit)
fcompp
fnstsw
sahf
jnc 2f
movzwl 4+8(%esp), %eax
xorb $0x80, %ah
cmpl $0xc040, %eax
jae 5f
faddl MO(one)
5: fyl2x
ret
2: fyl2xp1
ret
3: jp 4b // in case x is ±Inf
fstp %st(1)
fstp %st(1)
fadd %st(0)
ret... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_log1pl.S | LGPL-2.1 | 30891f35fa7da832b66d80d0807610df361851f3 | github | libc | https://github.com/bminor/glibc/blob/30891f35fa7da832b66d80d0807610df361851f3/sysdeps/i386/fpu/s_log1pl.S | 41 | 74 |
bminor/glibc:sysdeps/i386/fpu/s_log1pl.S:1 | /*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*
* Adapted for `long double' by Ulrich Drepper <drepper@cygnus.com>.
*/
#include <machine/asm.h>
RCSID("$NetBSD: s_log1p.S,v 1.7 1995/05/09 00:10:58 jtc Exp $")
.section .rodata
.align ALIGNARG(4)
/* The fyl2xp1 can only be used for values in
... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_log1pl.S | LGPL-2.1 | 8c010e2f7135902b6dc90f0577573dacbb54cde9 | github | libc | https://github.com/bminor/glibc/blob/8c010e2f7135902b6dc90f0577573dacbb54cde9/sysdeps/i386/fpu/s_log1pl.S | 1 | 60 |
bminor/glibc:sysdeps/i386/fpu/s_log1pl.S:2 | #ifdef PIC
LOAD_PIC_REG (dx)
#endif
fxam
fnstsw
fld %st
sahf
jc 3f // in case x is NaN or ±Inf
4:
fabs
fldt MO(limit)
fcompp
fnstsw
sahf
jnc 2f
movzwl 4+8(%esp), %eax
xorb $0x80, %ah
cmpl $0xc040, %eax
jae 5f
faddl MO(one)
5: fyl2x
ret
2: fyl2xp1
ret
3: jp 4b // in case x is ±Inf
fstp %st(1)
... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_log1pl.S | LGPL-2.1 | 8c010e2f7135902b6dc90f0577573dacbb54cde9 | github | libc | https://github.com/bminor/glibc/blob/8c010e2f7135902b6dc90f0577573dacbb54cde9/sysdeps/i386/fpu/s_log1pl.S | 41 | 76 |
bminor/glibc:sysdeps/i386/fpu/s_log1pl.S:2 | #ifdef PIC
LOAD_PIC_REG (dx)
#endif
fxam
fnstsw
fld %st
sahf
jc 3f // in case x is NaN or ±Inf
4:
fabs
fldt MO(limit)
fcompp
fnstsw
sahf
jnc 2f
movzwl 4+8(%esp), %eax
xorb $0x80, %ah
cmpl $0xc040, %eax
jae 5f
faddl MO(one)
5: fyl2x
ret
2: fyl2xp1
ret
3: jp 4b // in case x is ±Inf
fstp %st(1)
... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_log1pl.S | LGPL-2.1 | 37825319ee64d51bf8b1774f4964e9743eaf5ef6 | github | libc | https://github.com/bminor/glibc/blob/37825319ee64d51bf8b1774f4964e9743eaf5ef6/sysdeps/i386/fpu/s_log1pl.S | 41 | 75 |
bminor/glibc:sysdeps/i386/fpu/s_log1pl.S:1 | /*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*
* Adapted for `long double' by Ulrich Drepper <drepper@cygnus.com>.
*/
#include <machine/asm.h>
RCSID("$NetBSD: s_log1p.S,v 1.7 1995/05/09 00:10:58 jtc Exp $")
.section .rodata
.align ALIGNARG(4)
/* The fyl2xp1 can only be used for values in
... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_log1pl.S | LGPL-2.1 | 890b7a4b33d482b5c768ab47d70758b80227e9bc | github | libc | https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_log1pl.S | 1 | 60 |
bminor/glibc:sysdeps/i386/fpu/s_log1pl.S:2 | fld %st
sahf
jc 3f // in case x is NaN or ±Inf
4:
fabs
#ifdef PIC
fldt limit@GOTOFF(%edx)
#else
fldt limit
#endif
fcompp
fnstsw
sahf
jnc 2f
movzwl 4+8(%esp), %eax
xorb $0x80, %ah
cmpl $0xc040, %eax
jae 5f
#ifdef PIC
faddl one@GOTOFF(%edx)
#else
faddl one
#endif
5: fyl2x
ret
2: fyl2xp1
ret
3: jp 4b... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_log1pl.S | LGPL-2.1 | 890b7a4b33d482b5c768ab47d70758b80227e9bc | github | libc | https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_log1pl.S | 41 | 77 |
bminor/glibc:sysdeps/i386/fpu/s_logb.S:1 | /*
* Public domain.
*/
#include <machine/asm.h>
#include <libm-alias-double.h>
RCSID("$NetBSD: s_logb.S,v 1.4 1995/05/09 00:14:30 jtc Exp $")
ENTRY(__logb)
fldl 4(%esp)
fxtract
fstp %st
ret
END (__logb)
libm_alias_double (__logb, logb) | x86 | gas-like | handwritten | bminor/glibc | sysdeps/i386/fpu/s_logb.S | LGPL-2.1 | 04e750e75b73957cf1c791535a3f4319534a52fc | github | libc | https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/i386/fpu/s_logb.S | 1 | 16 |
bminor/glibc:sysdeps/i386/fpu/s_logb.S:1 | /*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*/
#include <machine/asm.h>
#include <libm-alias-double.h>
RCSID("$NetBSD: s_logb.S,v 1.4 1995/05/09 00:14:30 jtc Exp $")
ENTRY(__logb)
fldl 4(%esp)
fxtract
fstp %st
ret
END (__logb)
libm_alias_double (__logb, logb) | x86 | gas-like | handwritten | bminor/glibc | sysdeps/i386/fpu/s_logb.S | LGPL-2.1 | bc4e8f9b49950c982f22d4f4c602a972a63abf65 | github | libc | https://github.com/bminor/glibc/blob/bc4e8f9b49950c982f22d4f4c602a972a63abf65/sysdeps/i386/fpu/s_logb.S | 1 | 17 |
bminor/glibc:sysdeps/i386/fpu/s_logb.S:1 | /*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*/
#include <machine/asm.h>
RCSID("$NetBSD: s_logb.S,v 1.4 1995/05/09 00:14:30 jtc Exp $")
ENTRY(__logb)
fldl 4(%esp)
fxtract
fstp %st
ret
END (__logb)
weak_alias (__logb, logb) | x86 | gas-like | handwritten | bminor/glibc | sysdeps/i386/fpu/s_logb.S | LGPL-2.1 | 890b7a4b33d482b5c768ab47d70758b80227e9bc | github | libc | https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_logb.S | 1 | 16 |
bminor/glibc:sysdeps/i386/fpu/s_logbf.S:1 | /*
* Public domain.
*/
#include <machine/asm.h>
#include <libm-alias-float.h>
RCSID("$NetBSD: s_logbf.S,v 1.3 1995/05/09 00:15:12 jtc Exp $")
ENTRY(__logbf)
flds 4(%esp)
fxtract
fstp %st
ret
END (__logbf)
libm_alias_float (__logb, logb) | x86 | gas-like | handwritten | bminor/glibc | sysdeps/i386/fpu/s_logbf.S | LGPL-2.1 | 04e750e75b73957cf1c791535a3f4319534a52fc | github | libc | https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/i386/fpu/s_logbf.S | 1 | 16 |
bminor/glibc:sysdeps/i386/fpu/s_logbf.S:1 | /*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*/
#include <machine/asm.h>
#include <libm-alias-float.h>
RCSID("$NetBSD: s_logbf.S,v 1.3 1995/05/09 00:15:12 jtc Exp $")
ENTRY(__logbf)
flds 4(%esp)
fxtract
fstp %st
ret
END (__logbf)
libm_alias_float (__logb, logb) | x86 | gas-like | handwritten | bminor/glibc | sysdeps/i386/fpu/s_logbf.S | LGPL-2.1 | e4602cba2fb919546bee0eacbd10ab8ade7b7b6f | github | libc | https://github.com/bminor/glibc/blob/e4602cba2fb919546bee0eacbd10ab8ade7b7b6f/sysdeps/i386/fpu/s_logbf.S | 1 | 17 |
bminor/glibc:sysdeps/i386/fpu/s_logbf.S:1 | /*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*/
#include <machine/asm.h>
RCSID("$NetBSD: s_logbf.S,v 1.3 1995/05/09 00:15:12 jtc Exp $")
ENTRY(__logbf)
flds 4(%esp)
fxtract
fstp %st
ret
END (__logbf)
weak_alias (__logbf, logbf) | x86 | gas-like | handwritten | bminor/glibc | sysdeps/i386/fpu/s_logbf.S | LGPL-2.1 | 890b7a4b33d482b5c768ab47d70758b80227e9bc | github | libc | https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_logbf.S | 1 | 16 |
bminor/glibc:sysdeps/i386/fpu/s_lrint.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2026 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Publi... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrint.S | LGPL-2.1 | 04e750e75b73957cf1c791535a3f4319534a52fc | github | libc | https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/i386/fpu/s_lrint.S | 1 | 34 |
bminor/glibc:sysdeps/i386/fpu/s_lrint.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2025 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Publi... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrint.S | LGPL-2.1 | 2642002380aafb71a1d3b569b6d7ebeab3284816 | github | libc | https://github.com/bminor/glibc/blob/2642002380aafb71a1d3b569b6d7ebeab3284816/sysdeps/i386/fpu/s_lrint.S | 1 | 34 |
bminor/glibc:sysdeps/i386/fpu/s_lrint.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2024 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Publi... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrint.S | LGPL-2.1 | dff8da6b3e89b986bb7f6b1ec18cf65d5972e307 | github | libc | https://github.com/bminor/glibc/blob/dff8da6b3e89b986bb7f6b1ec18cf65d5972e307/sysdeps/i386/fpu/s_lrint.S | 1 | 34 |
bminor/glibc:sysdeps/i386/fpu/s_lrint.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2023 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Publi... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrint.S | LGPL-2.1 | 6d7e8eda9b85b08f207a6dc6f187e94e4817270f | github | libc | https://github.com/bminor/glibc/blob/6d7e8eda9b85b08f207a6dc6f187e94e4817270f/sysdeps/i386/fpu/s_lrint.S | 1 | 34 |
bminor/glibc:sysdeps/i386/fpu/s_lrint.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2022 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Publi... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrint.S | LGPL-2.1 | 581c785bf31bc74430320c7856bbfa3875d025fe | github | libc | https://github.com/bminor/glibc/blob/581c785bf31bc74430320c7856bbfa3875d025fe/sysdeps/i386/fpu/s_lrint.S | 1 | 34 |
bminor/glibc:sysdeps/i386/fpu/s_lrint.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2021 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Publi... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrint.S | LGPL-2.1 | 30891f35fa7da832b66d80d0807610df361851f3 | github | libc | https://github.com/bminor/glibc/blob/30891f35fa7da832b66d80d0807610df361851f3/sysdeps/i386/fpu/s_lrint.S | 1 | 34 |
bminor/glibc:sysdeps/i386/fpu/s_lrint.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2021 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
The GNU C Library is free software; you can redistribute it and/or... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrint.S | LGPL-2.1 | 2b778ceb4010c28d70de9b8eab20e8d88eed586b | github | libc | https://github.com/bminor/glibc/blob/2b778ceb4010c28d70de9b8eab20e8d88eed586b/sysdeps/i386/fpu/s_lrint.S | 1 | 35 |
bminor/glibc:sysdeps/i386/fpu/s_lrint.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2020 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
The GNU C Library is free software; you can redistribute it and/or... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrint.S | LGPL-2.1 | d614a7539657941a9201c236b2f15afac18e1213 | github | libc | https://github.com/bminor/glibc/blob/d614a7539657941a9201c236b2f15afac18e1213/sysdeps/i386/fpu/s_lrint.S | 1 | 35 |
bminor/glibc:sysdeps/i386/fpu/s_lrint.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2019 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
The GNU C Library is free software; you can redistribute it and/or... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrint.S | LGPL-2.1 | 5a82c74822d3272df2f5929133680478c0cfb4bd | github | libc | https://github.com/bminor/glibc/blob/5a82c74822d3272df2f5929133680478c0cfb4bd/sysdeps/i386/fpu/s_lrint.S | 1 | 35 |
bminor/glibc:sysdeps/i386/fpu/s_lrint.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2019 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
The GNU C Library is free software; you can redistribute it and/or... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrint.S | LGPL-2.1 | 04277e02d7f54d3582bebcf8386b317018cd5e1d | github | libc | https://github.com/bminor/glibc/blob/04277e02d7f54d3582bebcf8386b317018cd5e1d/sysdeps/i386/fpu/s_lrint.S | 1 | 35 |
bminor/glibc:sysdeps/i386/fpu/s_lrint.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2018 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
The GNU C Library is free software; you can redistribute it and/or... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrint.S | LGPL-2.1 | 688903eb3ef01301d239ab753d309d45720610a7 | github | libc | https://github.com/bminor/glibc/blob/688903eb3ef01301d239ab753d309d45720610a7/sysdeps/i386/fpu/s_lrint.S | 1 | 35 |
bminor/glibc:sysdeps/i386/fpu/s_lrint.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2017 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
The GNU C Library is free software; you can redistribute it and/or... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrint.S | LGPL-2.1 | bc4e8f9b49950c982f22d4f4c602a972a63abf65 | github | libc | https://github.com/bminor/glibc/blob/bc4e8f9b49950c982f22d4f4c602a972a63abf65/sysdeps/i386/fpu/s_lrint.S | 1 | 35 |
bminor/glibc:sysdeps/i386/fpu/s_lrint.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2017 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
The GNU C Library is free software; you can redistribute it and/or... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrint.S | LGPL-2.1 | bfff8b1becd7d01c074177df7196ab327cd8c844 | github | libc | https://github.com/bminor/glibc/blob/bfff8b1becd7d01c074177df7196ab327cd8c844/sysdeps/i386/fpu/s_lrint.S | 1 | 34 |
bminor/glibc:sysdeps/i386/fpu/s_lrint.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2016 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
The GNU C Library is free software; you can redistribute it and/or... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrint.S | LGPL-2.1 | f7a9f785e547bd599dee496fd906a28bcb4ec7fe | github | libc | https://github.com/bminor/glibc/blob/f7a9f785e547bd599dee496fd906a28bcb4ec7fe/sysdeps/i386/fpu/s_lrint.S | 1 | 34 |
bminor/glibc:sysdeps/i386/fpu/s_lrint.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2015 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
The GNU C Library is free software; you can redistribute it and/or... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrint.S | LGPL-2.1 | 890b7a4b33d482b5c768ab47d70758b80227e9bc | github | libc | https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_lrint.S | 1 | 34 |
bminor/glibc:sysdeps/i386/fpu/s_lrintf.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2026 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Publi... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrintf.S | LGPL-2.1 | 04e750e75b73957cf1c791535a3f4319534a52fc | github | libc | https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/i386/fpu/s_lrintf.S | 1 | 34 |
bminor/glibc:sysdeps/i386/fpu/s_lrintf.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2025 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Publi... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrintf.S | LGPL-2.1 | 2642002380aafb71a1d3b569b6d7ebeab3284816 | github | libc | https://github.com/bminor/glibc/blob/2642002380aafb71a1d3b569b6d7ebeab3284816/sysdeps/i386/fpu/s_lrintf.S | 1 | 34 |
bminor/glibc:sysdeps/i386/fpu/s_lrintf.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2024 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Publi... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrintf.S | LGPL-2.1 | dff8da6b3e89b986bb7f6b1ec18cf65d5972e307 | github | libc | https://github.com/bminor/glibc/blob/dff8da6b3e89b986bb7f6b1ec18cf65d5972e307/sysdeps/i386/fpu/s_lrintf.S | 1 | 34 |
bminor/glibc:sysdeps/i386/fpu/s_lrintf.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2023 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Publi... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrintf.S | LGPL-2.1 | 6d7e8eda9b85b08f207a6dc6f187e94e4817270f | github | libc | https://github.com/bminor/glibc/blob/6d7e8eda9b85b08f207a6dc6f187e94e4817270f/sysdeps/i386/fpu/s_lrintf.S | 1 | 34 |
bminor/glibc:sysdeps/i386/fpu/s_lrintf.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2022 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Publi... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrintf.S | LGPL-2.1 | 581c785bf31bc74430320c7856bbfa3875d025fe | github | libc | https://github.com/bminor/glibc/blob/581c785bf31bc74430320c7856bbfa3875d025fe/sysdeps/i386/fpu/s_lrintf.S | 1 | 34 |
bminor/glibc:sysdeps/i386/fpu/s_lrintf.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2021 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Publi... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrintf.S | LGPL-2.1 | 30891f35fa7da832b66d80d0807610df361851f3 | github | libc | https://github.com/bminor/glibc/blob/30891f35fa7da832b66d80d0807610df361851f3/sysdeps/i386/fpu/s_lrintf.S | 1 | 34 |
bminor/glibc:sysdeps/i386/fpu/s_lrintf.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2021 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
The GNU C Library is free software; you can redistribute it and/or... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrintf.S | LGPL-2.1 | 2b778ceb4010c28d70de9b8eab20e8d88eed586b | github | libc | https://github.com/bminor/glibc/blob/2b778ceb4010c28d70de9b8eab20e8d88eed586b/sysdeps/i386/fpu/s_lrintf.S | 1 | 35 |
bminor/glibc:sysdeps/i386/fpu/s_lrintf.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2020 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
The GNU C Library is free software; you can redistribute it and/or... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrintf.S | LGPL-2.1 | d614a7539657941a9201c236b2f15afac18e1213 | github | libc | https://github.com/bminor/glibc/blob/d614a7539657941a9201c236b2f15afac18e1213/sysdeps/i386/fpu/s_lrintf.S | 1 | 35 |
bminor/glibc:sysdeps/i386/fpu/s_lrintf.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2019 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
The GNU C Library is free software; you can redistribute it and/or... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrintf.S | LGPL-2.1 | 5a82c74822d3272df2f5929133680478c0cfb4bd | github | libc | https://github.com/bminor/glibc/blob/5a82c74822d3272df2f5929133680478c0cfb4bd/sysdeps/i386/fpu/s_lrintf.S | 1 | 35 |
bminor/glibc:sysdeps/i386/fpu/s_lrintf.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2019 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
The GNU C Library is free software; you can redistribute it and/or... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrintf.S | LGPL-2.1 | 04277e02d7f54d3582bebcf8386b317018cd5e1d | github | libc | https://github.com/bminor/glibc/blob/04277e02d7f54d3582bebcf8386b317018cd5e1d/sysdeps/i386/fpu/s_lrintf.S | 1 | 35 |
bminor/glibc:sysdeps/i386/fpu/s_lrintf.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2018 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
The GNU C Library is free software; you can redistribute it and/or... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrintf.S | LGPL-2.1 | 688903eb3ef01301d239ab753d309d45720610a7 | github | libc | https://github.com/bminor/glibc/blob/688903eb3ef01301d239ab753d309d45720610a7/sysdeps/i386/fpu/s_lrintf.S | 1 | 35 |
bminor/glibc:sysdeps/i386/fpu/s_lrintf.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2017 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
The GNU C Library is free software; you can redistribute it and/or... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrintf.S | LGPL-2.1 | e4602cba2fb919546bee0eacbd10ab8ade7b7b6f | github | libc | https://github.com/bminor/glibc/blob/e4602cba2fb919546bee0eacbd10ab8ade7b7b6f/sysdeps/i386/fpu/s_lrintf.S | 1 | 35 |
bminor/glibc:sysdeps/i386/fpu/s_lrintf.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2017 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
The GNU C Library is free software; you can redistribute it and/or... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrintf.S | LGPL-2.1 | bfff8b1becd7d01c074177df7196ab327cd8c844 | github | libc | https://github.com/bminor/glibc/blob/bfff8b1becd7d01c074177df7196ab327cd8c844/sysdeps/i386/fpu/s_lrintf.S | 1 | 34 |
bminor/glibc:sysdeps/i386/fpu/s_lrintf.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2016 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
The GNU C Library is free software; you can redistribute it and/or... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrintf.S | LGPL-2.1 | f7a9f785e547bd599dee496fd906a28bcb4ec7fe | github | libc | https://github.com/bminor/glibc/blob/f7a9f785e547bd599dee496fd906a28bcb4ec7fe/sysdeps/i386/fpu/s_lrintf.S | 1 | 34 |
bminor/glibc:sysdeps/i386/fpu/s_lrintf.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2015 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
The GNU C Library is free software; you can redistribute it and/or... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrintf.S | LGPL-2.1 | 890b7a4b33d482b5c768ab47d70758b80227e9bc | github | libc | https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_lrintf.S | 1 | 34 |
bminor/glibc:sysdeps/i386/fpu/s_lrintl.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2026 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Publi... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrintl.S | LGPL-2.1 | 04e750e75b73957cf1c791535a3f4319534a52fc | github | libc | https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/i386/fpu/s_lrintl.S | 1 | 34 |
bminor/glibc:sysdeps/i386/fpu/s_lrintl.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2025 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Publi... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrintl.S | LGPL-2.1 | 2642002380aafb71a1d3b569b6d7ebeab3284816 | github | libc | https://github.com/bminor/glibc/blob/2642002380aafb71a1d3b569b6d7ebeab3284816/sysdeps/i386/fpu/s_lrintl.S | 1 | 34 |
bminor/glibc:sysdeps/i386/fpu/s_lrintl.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2024 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Publi... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrintl.S | LGPL-2.1 | dff8da6b3e89b986bb7f6b1ec18cf65d5972e307 | github | libc | https://github.com/bminor/glibc/blob/dff8da6b3e89b986bb7f6b1ec18cf65d5972e307/sysdeps/i386/fpu/s_lrintl.S | 1 | 34 |
bminor/glibc:sysdeps/i386/fpu/s_lrintl.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2023 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Publi... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrintl.S | LGPL-2.1 | 6d7e8eda9b85b08f207a6dc6f187e94e4817270f | github | libc | https://github.com/bminor/glibc/blob/6d7e8eda9b85b08f207a6dc6f187e94e4817270f/sysdeps/i386/fpu/s_lrintl.S | 1 | 34 |
bminor/glibc:sysdeps/i386/fpu/s_lrintl.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2022 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Publi... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrintl.S | LGPL-2.1 | 581c785bf31bc74430320c7856bbfa3875d025fe | github | libc | https://github.com/bminor/glibc/blob/581c785bf31bc74430320c7856bbfa3875d025fe/sysdeps/i386/fpu/s_lrintl.S | 1 | 34 |
bminor/glibc:sysdeps/i386/fpu/s_lrintl.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2021 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Publi... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrintl.S | LGPL-2.1 | 30891f35fa7da832b66d80d0807610df361851f3 | github | libc | https://github.com/bminor/glibc/blob/30891f35fa7da832b66d80d0807610df361851f3/sysdeps/i386/fpu/s_lrintl.S | 1 | 34 |
bminor/glibc:sysdeps/i386/fpu/s_lrintl.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2021 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
The GNU C Library is free software; you can redistribute it and/or... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrintl.S | LGPL-2.1 | 2b778ceb4010c28d70de9b8eab20e8d88eed586b | github | libc | https://github.com/bminor/glibc/blob/2b778ceb4010c28d70de9b8eab20e8d88eed586b/sysdeps/i386/fpu/s_lrintl.S | 1 | 35 |
bminor/glibc:sysdeps/i386/fpu/s_lrintl.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2020 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
The GNU C Library is free software; you can redistribute it and/or... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrintl.S | LGPL-2.1 | d614a7539657941a9201c236b2f15afac18e1213 | github | libc | https://github.com/bminor/glibc/blob/d614a7539657941a9201c236b2f15afac18e1213/sysdeps/i386/fpu/s_lrintl.S | 1 | 35 |
bminor/glibc:sysdeps/i386/fpu/s_lrintl.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2019 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
The GNU C Library is free software; you can redistribute it and/or... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrintl.S | LGPL-2.1 | 5a82c74822d3272df2f5929133680478c0cfb4bd | github | libc | https://github.com/bminor/glibc/blob/5a82c74822d3272df2f5929133680478c0cfb4bd/sysdeps/i386/fpu/s_lrintl.S | 1 | 35 |
bminor/glibc:sysdeps/i386/fpu/s_lrintl.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2019 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
The GNU C Library is free software; you can redistribute it and/or... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrintl.S | LGPL-2.1 | 04277e02d7f54d3582bebcf8386b317018cd5e1d | github | libc | https://github.com/bminor/glibc/blob/04277e02d7f54d3582bebcf8386b317018cd5e1d/sysdeps/i386/fpu/s_lrintl.S | 1 | 35 |
bminor/glibc:sysdeps/i386/fpu/s_lrintl.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2018 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
The GNU C Library is free software; you can redistribute it and/or... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrintl.S | LGPL-2.1 | 688903eb3ef01301d239ab753d309d45720610a7 | github | libc | https://github.com/bminor/glibc/blob/688903eb3ef01301d239ab753d309d45720610a7/sysdeps/i386/fpu/s_lrintl.S | 1 | 35 |
bminor/glibc:sysdeps/i386/fpu/s_lrintl.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2017 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
The GNU C Library is free software; you can redistribute it and/or... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrintl.S | LGPL-2.1 | 2ce30701e6df07deda6fb205808769d237aa2460 | github | libc | https://github.com/bminor/glibc/blob/2ce30701e6df07deda6fb205808769d237aa2460/sysdeps/i386/fpu/s_lrintl.S | 1 | 35 |
bminor/glibc:sysdeps/i386/fpu/s_lrintl.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2017 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
The GNU C Library is free software; you can redistribute it and/or... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrintl.S | LGPL-2.1 | bfff8b1becd7d01c074177df7196ab327cd8c844 | github | libc | https://github.com/bminor/glibc/blob/bfff8b1becd7d01c074177df7196ab327cd8c844/sysdeps/i386/fpu/s_lrintl.S | 1 | 34 |
bminor/glibc:sysdeps/i386/fpu/s_lrintl.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2016 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
The GNU C Library is free software; you can redistribute it and/or... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrintl.S | LGPL-2.1 | f7a9f785e547bd599dee496fd906a28bcb4ec7fe | github | libc | https://github.com/bminor/glibc/blob/f7a9f785e547bd599dee496fd906a28bcb4ec7fe/sysdeps/i386/fpu/s_lrintl.S | 1 | 34 |
bminor/glibc:sysdeps/i386/fpu/s_lrintl.S:1 | /* Round argument to nearest integral value according to current rounding
direction.
Copyright (C) 1997-2015 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
The GNU C Library is free software; you can redistribute it and/or... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_lrintl.S | LGPL-2.1 | 890b7a4b33d482b5c768ab47d70758b80227e9bc | github | libc | https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_lrintl.S | 1 | 34 |
bminor/glibc:sysdeps/i386/fpu/s_nearbyint.S:1 | /*
* Public domain.
*/
#include <machine/asm.h>
#include <libm-alias-double.h>
ENTRY(__nearbyint)
fldl 4(%esp)
subl $32, %esp
cfi_adjust_cfa_offset (32)
fnstenv 4(%esp)
frndint
fldenv 4(%esp)
addl $32, %esp
cfi_adjust_cfa_offset (-32)
ret
END (__nearbyint)
libm_alias_double (__nearbyint, nearbyint) | x86 | gas-like | handwritten | bminor/glibc | sysdeps/i386/fpu/s_nearbyint.S | LGPL-2.1 | 04e750e75b73957cf1c791535a3f4319534a52fc | github | libc | https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/i386/fpu/s_nearbyint.S | 1 | 19 |
bminor/glibc:sysdeps/i386/fpu/s_nearbyint.S:1 | /*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*/
/* Adapted for use as nearbyint by Ulrich Drepper <drepper@cygnus.com>. */
#include <machine/asm.h>
#include <libm-alias-double.h>
ENTRY(__nearbyint)
fldl 4(%esp)
subl $32, %esp
cfi_adjust_cfa_offset (32)
fnstenv 4(%esp)
frndint
fldenv 4(%es... | x86 | gas-like | handwritten | bminor/glibc | sysdeps/i386/fpu/s_nearbyint.S | LGPL-2.1 | bc4e8f9b49950c982f22d4f4c602a972a63abf65 | github | libc | https://github.com/bminor/glibc/blob/bc4e8f9b49950c982f22d4f4c602a972a63abf65/sysdeps/i386/fpu/s_nearbyint.S | 1 | 21 |
bminor/glibc:sysdeps/i386/fpu/s_nearbyint.S:1 | /*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*/
/* Adapted for use as nearbyint by Ulrich Drepper <drepper@cygnus.com>. */
#include <machine/asm.h>
ENTRY(__nearbyint)
fldl 4(%esp)
subl $32, %esp
cfi_adjust_cfa_offset (32)
fnstenv 4(%esp)
frndint
fldenv 4(%esp)
addl $32, %esp
cfi_adjust_... | x86 | gas-like | handwritten | bminor/glibc | sysdeps/i386/fpu/s_nearbyint.S | LGPL-2.1 | 4e9bf327ad02ed83bded4011af68613e6b03ab33 | github | libc | https://github.com/bminor/glibc/blob/4e9bf327ad02ed83bded4011af68613e6b03ab33/sysdeps/i386/fpu/s_nearbyint.S | 1 | 20 |
bminor/glibc:sysdeps/i386/fpu/s_nearbyint.S:1 | /*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*/
/* Adapted for use as nearbyint by Ulrich Drepper <drepper@cygnus.com>. */
#include <machine/asm.h>
ENTRY(__nearbyint)
fldl 4(%esp)
subl $32, %esp
cfi_adjust_cfa_offset (32)
fnstenv 4(%esp)
movl 4(%esp), %eax
orl $0x20, %eax
movl %eax, (%es... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_nearbyint.S | LGPL-2.1 | 846d9a4a3acdb4939ca7bf6aed48f9f6f26911be | github | libc | https://github.com/bminor/glibc/blob/846d9a4a3acdb4939ca7bf6aed48f9f6f26911be/sysdeps/i386/fpu/s_nearbyint.S | 1 | 24 |
bminor/glibc:sysdeps/i386/fpu/s_nearbyint.S:1 | /*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*/
/* Adapted for use as nearbyint by Ulrich Drepper <drepper@cygnus.com>. */
#include <machine/asm.h>
ENTRY(__nearbyint)
fldl 4(%esp)
pushl %eax
cfi_adjust_cfa_offset (4)
pushl %ecx
cfi_adjust_cfa_offset (4)
fnstcw (%esp)
movl (%esp), %eax
o... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_nearbyint.S | LGPL-2.1 | 890b7a4b33d482b5c768ab47d70758b80227e9bc | github | libc | https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_nearbyint.S | 1 | 29 |
bminor/glibc:sysdeps/i386/fpu/s_nearbyintf.S:1 | /*
* Public domain.
*/
#include <machine/asm.h>
#include <libm-alias-float.h>
ENTRY(__nearbyintf)
flds 4(%esp)
subl $32, %esp
cfi_adjust_cfa_offset (32)
fnstenv 4(%esp)
frndint
fldenv 4(%esp)
addl $32, %esp
cfi_adjust_cfa_offset (-32)
ret
END (__nearbyintf)
libm_alias_float (__nearbyint, nearbyint) | x86 | gas-like | handwritten | bminor/glibc | sysdeps/i386/fpu/s_nearbyintf.S | LGPL-2.1 | 04e750e75b73957cf1c791535a3f4319534a52fc | github | libc | https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/i386/fpu/s_nearbyintf.S | 1 | 19 |
bminor/glibc:sysdeps/i386/fpu/s_nearbyintf.S:1 | /*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*/
/* Adapted for use as nearbyint by Ulrich Drepper <drepper@cygnus.com>. */
#include <machine/asm.h>
#include <libm-alias-float.h>
ENTRY(__nearbyintf)
flds 4(%esp)
subl $32, %esp
cfi_adjust_cfa_offset (32)
fnstenv 4(%esp)
frndint
fldenv 4(%es... | x86 | gas-like | handwritten | bminor/glibc | sysdeps/i386/fpu/s_nearbyintf.S | LGPL-2.1 | e4602cba2fb919546bee0eacbd10ab8ade7b7b6f | github | libc | https://github.com/bminor/glibc/blob/e4602cba2fb919546bee0eacbd10ab8ade7b7b6f/sysdeps/i386/fpu/s_nearbyintf.S | 1 | 21 |
bminor/glibc:sysdeps/i386/fpu/s_nearbyintf.S:1 | /*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*/
/* Adapted for use as nearbyint by Ulrich Drepper <drepper@cygnus.com>. */
#include <machine/asm.h>
ENTRY(__nearbyintf)
flds 4(%esp)
subl $32, %esp
cfi_adjust_cfa_offset (32)
fnstenv 4(%esp)
frndint
fldenv 4(%esp)
addl $32, %esp
cfi_adjust... | x86 | gas-like | handwritten | bminor/glibc | sysdeps/i386/fpu/s_nearbyintf.S | LGPL-2.1 | 4e9bf327ad02ed83bded4011af68613e6b03ab33 | github | libc | https://github.com/bminor/glibc/blob/4e9bf327ad02ed83bded4011af68613e6b03ab33/sysdeps/i386/fpu/s_nearbyintf.S | 1 | 20 |
bminor/glibc:sysdeps/i386/fpu/s_nearbyintf.S:1 | /*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*/
/* Adapted for use as nearbyint by Ulrich Drepper <drepper@cygnus.com>. */
#include <machine/asm.h>
ENTRY(__nearbyintf)
flds 4(%esp)
subl $32, %esp
cfi_adjust_cfa_offset (32)
fnstenv 4(%esp)
movl 4(%esp), %eax
orl $0x20, %eax
movl %eax, (%e... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_nearbyintf.S | LGPL-2.1 | 846d9a4a3acdb4939ca7bf6aed48f9f6f26911be | github | libc | https://github.com/bminor/glibc/blob/846d9a4a3acdb4939ca7bf6aed48f9f6f26911be/sysdeps/i386/fpu/s_nearbyintf.S | 1 | 24 |
bminor/glibc:sysdeps/i386/fpu/s_nearbyintf.S:1 | /*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*/
/* Adapted for use as nearbyint by Ulrich Drepper <drepper@cygnus.com>. */
#include <machine/asm.h>
ENTRY(__nearbyintf)
flds 4(%esp)
pushl %eax
cfi_adjust_cfa_offset (4)
pushl %ecx
cfi_adjust_cfa_offset (4)
fnstcw (%esp)
movl (%esp), %eax
... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_nearbyintf.S | LGPL-2.1 | 890b7a4b33d482b5c768ab47d70758b80227e9bc | github | libc | https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_nearbyintf.S | 1 | 29 |
bminor/glibc:sysdeps/i386/fpu/s_nearbyintl.S:1 | /*
* Public domain.
*/
#include <libm-alias-ldouble.h>
#include <machine/asm.h>
ENTRY(__nearbyintl)
fldt 4(%esp)
subl $32, %esp
cfi_adjust_cfa_offset (32)
fnstenv 4(%esp)
frndint
fnstsw
andl $0x1, %eax
orl %eax, 8(%esp)
fldenv 4(%esp)
addl $32, %esp
cfi_adjust_cfa_offset (-32)
ret
END (__nearbyintl)
lib... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_nearbyintl.S | LGPL-2.1 | 04e750e75b73957cf1c791535a3f4319534a52fc | github | libc | https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/i386/fpu/s_nearbyintl.S | 1 | 22 |
bminor/glibc:sysdeps/i386/fpu/s_nearbyintl.S:1 | /*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*/
/* Adapted for use as nearbyint by Ulrich Drepper <drepper@cygnus.com>. */
#include <libm-alias-ldouble.h>
#include <machine/asm.h>
ENTRY(__nearbyintl)
fldt 4(%esp)
subl $32, %esp
cfi_adjust_cfa_offset (32)
fnstenv 4(%esp)
frndint
fnstsw
an... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_nearbyintl.S | LGPL-2.1 | 2ce30701e6df07deda6fb205808769d237aa2460 | github | libc | https://github.com/bminor/glibc/blob/2ce30701e6df07deda6fb205808769d237aa2460/sysdeps/i386/fpu/s_nearbyintl.S | 1 | 24 |
bminor/glibc:sysdeps/i386/fpu/s_nearbyintl.S:1 | /*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*/
/* Adapted for use as nearbyint by Ulrich Drepper <drepper@cygnus.com>. */
#include <machine/asm.h>
ENTRY(__nearbyintl)
fldt 4(%esp)
subl $32, %esp
cfi_adjust_cfa_offset (32)
fnstenv 4(%esp)
frndint
fnstsw
andl $0x1, %eax
orl %eax, 8(%esp)... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_nearbyintl.S | LGPL-2.1 | 4e9bf327ad02ed83bded4011af68613e6b03ab33 | github | libc | https://github.com/bminor/glibc/blob/4e9bf327ad02ed83bded4011af68613e6b03ab33/sysdeps/i386/fpu/s_nearbyintl.S | 1 | 23 |
bminor/glibc:sysdeps/i386/fpu/s_nearbyintl.S:1 | /*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*/
/* Adapted for use as nearbyint by Ulrich Drepper <drepper@cygnus.com>. */
#include <machine/asm.h>
ENTRY(__nearbyintl)
fldt 4(%esp)
subl $32, %esp
cfi_adjust_cfa_offset (32)
fnstenv 4(%esp)
movl 4(%esp), %eax
orl $0x20, %eax
movl %eax, (%e... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_nearbyintl.S | LGPL-2.1 | 846d9a4a3acdb4939ca7bf6aed48f9f6f26911be | github | libc | https://github.com/bminor/glibc/blob/846d9a4a3acdb4939ca7bf6aed48f9f6f26911be/sysdeps/i386/fpu/s_nearbyintl.S | 1 | 27 |
bminor/glibc:sysdeps/i386/fpu/s_nearbyintl.S:1 | /*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*/
/* Adapted for use as nearbyint by Ulrich Drepper <drepper@cygnus.com>. */
#include <machine/asm.h>
ENTRY(__nearbyintl)
fldt 4(%esp)
pushl %eax
cfi_adjust_cfa_offset (4)
pushl %ecx
cfi_adjust_cfa_offset (4)
fnstcw (%esp)
movl (%esp), %eax
... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_nearbyintl.S | LGPL-2.1 | 890b7a4b33d482b5c768ab47d70758b80227e9bc | github | libc | https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_nearbyintl.S | 1 | 29 |
bminor/glibc:sysdeps/i386/fpu/s_remquo.S:1 | /*
* Public domain.
*/
#include <machine/asm.h>
#include <libm-alias-double.h>
#define PARMS 4 /* no space for saved regs */
#define DVDND PARMS
#define DVSOR DVDND+8
#define QUOP DVSOR+8
.text
ENTRY (__remquo)
fldl DVSOR(%esp)
fldl DVDND(%esp)
1: fprem1
fstsw %ax
sahf
jp 1b
fstp %st(1)
/* Compute the co... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_remquo.S | LGPL-2.1 | 04e750e75b73957cf1c791535a3f4319534a52fc | github | libc | https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/i386/fpu/s_remquo.S | 1 | 44 |
bminor/glibc:sysdeps/i386/fpu/s_remquo.S:1 | /*
* Written by Ulrich Drepper <drepper@cygnus.com>.
* Based on e_remainder by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*/
#include <machine/asm.h>
#include <libm-alias-double.h>
#define PARMS 4 /* no space for saved regs */
#define DVDND PARMS
#define DVSOR DVDND+8
#define QUOP DVSOR+8
.text
ENTRY (__r... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_remquo.S | LGPL-2.1 | bc4e8f9b49950c982f22d4f4c602a972a63abf65 | github | libc | https://github.com/bminor/glibc/blob/bc4e8f9b49950c982f22d4f4c602a972a63abf65/sysdeps/i386/fpu/s_remquo.S | 1 | 46 |
bminor/glibc:sysdeps/i386/fpu/s_remquo.S:1 | /*
* Written by Ulrich Drepper <drepper@cygnus.com>.
* Based on e_remainder by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*/
#include <machine/asm.h>
#define PARMS 4 /* no space for saved regs */
#define DVDND PARMS
#define DVSOR DVDND+8
#define QUOP DVSOR+8
.text
ENTRY (__remquo)
fldl DVSOR(%esp)
fldl... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_remquo.S | LGPL-2.1 | 890b7a4b33d482b5c768ab47d70758b80227e9bc | github | libc | https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_remquo.S | 1 | 45 |
bminor/glibc:sysdeps/i386/fpu/s_remquof.S:1 | /*
* Public domain.
*/
#include <machine/asm.h>
#include <libm-alias-float.h>
#define PARMS 4 /* no space for saved regs */
#define DVDND PARMS
#define DVSOR DVDND+4
#define QUOP DVSOR+4
.text
ENTRY (__remquof)
flds DVSOR(%esp)
flds DVDND(%esp)
1: fprem1
fstsw %ax
sahf
jp 1b
fstp %st(1)
/* Compute the co... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_remquof.S | LGPL-2.1 | 04e750e75b73957cf1c791535a3f4319534a52fc | github | libc | https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/i386/fpu/s_remquof.S | 1 | 44 |
bminor/glibc:sysdeps/i386/fpu/s_remquof.S:1 | /*
* Written by Ulrich Drepper <drepper@cygnus.com>.
* Based on e_remainder by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*/
#include <machine/asm.h>
#include <libm-alias-float.h>
#define PARMS 4 /* no space for saved regs */
#define DVDND PARMS
#define DVSOR DVDND+4
#define QUOP DVSOR+4
.text
ENTRY (__re... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_remquof.S | LGPL-2.1 | e4602cba2fb919546bee0eacbd10ab8ade7b7b6f | github | libc | https://github.com/bminor/glibc/blob/e4602cba2fb919546bee0eacbd10ab8ade7b7b6f/sysdeps/i386/fpu/s_remquof.S | 1 | 46 |
bminor/glibc:sysdeps/i386/fpu/s_remquof.S:1 | /*
* Written by Ulrich Drepper <drepper@cygnus.com>.
* Based on e_remainder by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*/
#include <machine/asm.h>
#define PARMS 4 /* no space for saved regs */
#define DVDND PARMS
#define DVSOR DVDND+4
#define QUOP DVSOR+4
.text
ENTRY (__remquof)
flds DVSOR(%esp)
fld... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_remquof.S | LGPL-2.1 | 890b7a4b33d482b5c768ab47d70758b80227e9bc | github | libc | https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_remquof.S | 1 | 45 |
bminor/glibc:sysdeps/i386/fpu/s_remquol.S:1 | /*
* Public domain.
*/
#include <libm-alias-ldouble.h>
#include <machine/asm.h>
#define PARMS 4 /* no space for saved regs */
#define DVDND PARMS
#define DVSOR DVDND+12
#define QUOP DVSOR+12
.text
ENTRY (__remquol)
fldt DVSOR(%esp)
fldt DVDND(%esp)
1: fprem1
fstsw %ax
sahf
jp 1b
fstp %st(1)
/* Compute th... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_remquol.S | LGPL-2.1 | 04e750e75b73957cf1c791535a3f4319534a52fc | github | libc | https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/i386/fpu/s_remquol.S | 1 | 44 |
bminor/glibc:sysdeps/i386/fpu/s_remquol.S:1 | /*
* Written by Ulrich Drepper <drepper@cygnus.com>.
* Based on e_remainder by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*/
#include <libm-alias-ldouble.h>
#include <machine/asm.h>
#define PARMS 4 /* no space for saved regs */
#define DVDND PARMS
#define DVSOR DVDND+12
#define QUOP DVSOR+12
.text
ENTRY (... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_remquol.S | LGPL-2.1 | 2ce30701e6df07deda6fb205808769d237aa2460 | github | libc | https://github.com/bminor/glibc/blob/2ce30701e6df07deda6fb205808769d237aa2460/sysdeps/i386/fpu/s_remquol.S | 1 | 46 |
bminor/glibc:sysdeps/i386/fpu/s_remquol.S:1 | /*
* Written by Ulrich Drepper <drepper@cygnus.com>.
* Based on e_remainder by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*/
#include <machine/asm.h>
#define PARMS 4 /* no space for saved regs */
#define DVDND PARMS
#define DVSOR DVDND+12
#define QUOP DVSOR+12
.text
ENTRY (__remquol)
fldt DVSOR(%esp)
f... | x86 | gas-att | handwritten | bminor/glibc | sysdeps/i386/fpu/s_remquol.S | LGPL-2.1 | 890b7a4b33d482b5c768ab47d70758b80227e9bc | github | libc | https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_remquol.S | 1 | 45 |
bminor/glibc:sysdeps/i386/fpu/s_rint.S:1 | /*
* Public domain.
*/
#include <machine/asm.h>
#include <libm-alias-double.h>
RCSID("$NetBSD: s_rint.S,v 1.4 1995/05/09 00:16:08 jtc Exp $")
ENTRY(__rint)
fldl 4(%esp)
frndint
ret
END (__rint)
libm_alias_double (__rint, rint) | x86 | gas-like | handwritten | bminor/glibc | sysdeps/i386/fpu/s_rint.S | LGPL-2.1 | 04e750e75b73957cf1c791535a3f4319534a52fc | github | libc | https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/i386/fpu/s_rint.S | 1 | 15 |
bminor/glibc:sysdeps/i386/fpu/s_rint.S:1 | /*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*/
#include <machine/asm.h>
#include <libm-alias-double.h>
RCSID("$NetBSD: s_rint.S,v 1.4 1995/05/09 00:16:08 jtc Exp $")
ENTRY(__rint)
fldl 4(%esp)
frndint
ret
END (__rint)
libm_alias_double (__rint, rint) | x86 | gas-like | handwritten | bminor/glibc | sysdeps/i386/fpu/s_rint.S | LGPL-2.1 | bc4e8f9b49950c982f22d4f4c602a972a63abf65 | github | libc | https://github.com/bminor/glibc/blob/bc4e8f9b49950c982f22d4f4c602a972a63abf65/sysdeps/i386/fpu/s_rint.S | 1 | 16 |
bminor/glibc:sysdeps/i386/fpu/s_rint.S:1 | /*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*/
#include <machine/asm.h>
RCSID("$NetBSD: s_rint.S,v 1.4 1995/05/09 00:16:08 jtc Exp $")
ENTRY(__rint)
fldl 4(%esp)
frndint
ret
END (__rint)
weak_alias (__rint, rint) | x86 | gas-like | handwritten | bminor/glibc | sysdeps/i386/fpu/s_rint.S | LGPL-2.1 | 890b7a4b33d482b5c768ab47d70758b80227e9bc | github | libc | https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/i386/fpu/s_rint.S | 1 | 15 |
bminor/glibc:sysdeps/i386/fpu/s_rintf.S:1 | /*
* Public domain.
*/
#include <machine/asm.h>
#include <libm-alias-float.h>
RCSID("$NetBSD: s_rintf.S,v 1.3 1995/05/09 00:17:22 jtc Exp $")
ENTRY(__rintf)
flds 4(%esp)
frndint
ret
END (__rintf)
libm_alias_float (__rint, rint) | x86 | gas-like | handwritten | bminor/glibc | sysdeps/i386/fpu/s_rintf.S | LGPL-2.1 | 04e750e75b73957cf1c791535a3f4319534a52fc | github | libc | https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/i386/fpu/s_rintf.S | 1 | 15 |
bminor/glibc:sysdeps/i386/fpu/s_rintf.S:1 | /*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*/
#include <machine/asm.h>
#include <libm-alias-float.h>
RCSID("$NetBSD: s_rintf.S,v 1.3 1995/05/09 00:17:22 jtc Exp $")
ENTRY(__rintf)
flds 4(%esp)
frndint
ret
END (__rintf)
libm_alias_float (__rint, rint) | x86 | gas-like | handwritten | bminor/glibc | sysdeps/i386/fpu/s_rintf.S | LGPL-2.1 | e4602cba2fb919546bee0eacbd10ab8ade7b7b6f | github | libc | https://github.com/bminor/glibc/blob/e4602cba2fb919546bee0eacbd10ab8ade7b7b6f/sysdeps/i386/fpu/s_rintf.S | 1 | 16 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.