/glibc-2.36/math/ |
D | libm-test-remainder.inc | 1 /* Test remainder. 23 TEST_ff_f (remainder, 1, 0, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION|ERRNO_EDOM), 24 …TEST_ff_f (remainder, 1, minus_zero, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION|ERRNO_EDOM… 25 TEST_ff_f (remainder, -1.1L, 0, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION|ERRNO_EDOM), 26 …TEST_ff_f (remainder, -1.1L, minus_zero, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION|ERRNO_… 27 …TEST_ff_f (remainder, plus_zero, plus_zero, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION|ERR… 28 …TEST_ff_f (remainder, plus_zero, minus_zero, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION|ER… 29 …TEST_ff_f (remainder, minus_zero, plus_zero, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION|ER… 30 …TEST_ff_f (remainder, minus_zero, minus_zero, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION|E… 31 …TEST_ff_f (remainder, plus_infty, minus_zero, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION|E… [all …]
|
D | w_remainder_template.c | 38 declare_mgen_alias (__remainder, remainder)
|
D | w_remainderl_compat.c | 36 libm_alias_ldouble (__remainder, remainder)
|
D | w_remainderf_compat.c | 36 libm_alias_float (__remainder, remainder)
|
D | w_remainder_compat.c | 36 libm_alias_double (__remainder, remainder)
|
D | test-tgmath.c | 284 b = remainder (remainder (a, b), remainder (c, x)); in F() 396 a = remainder (y, y); in F() 885 (F(remainder)) (TYPE x, TYPE y) in TYPE() argument
|
D | test-math-cxx11.cc | 129 (void) remainder; in do_test()
|
D | tgmath.h | 879 #define remainder(Val1, Val2) __TGMATH_BINARY_REAL_ONLY (Val1, Val2, remainder) macro
|
D | Makefile | 302 nextup remainder remquo rint round roundeven scalb \ 380 nextafter nexttoward remainder remquo rint round scalbn \
|
D | Versions | 80 remainder; remainderf; remainderl;
|
/glibc-2.36/malloc/ |
D | malloc.c | 2558 mchunkptr remainder; /* remainder from allocation */ in sysmalloc() local 2947 remainder = chunk_at_offset (p, nb); in sysmalloc() 2948 av->top = remainder; in sysmalloc() 2950 set_head (remainder, remainder_size | PREV_INUSE); in sysmalloc() 3775 mchunkptr remainder; /* remainder from a split */ in _int_malloc() local 4025 remainder = chunk_at_offset (victim, nb); in _int_malloc() 4026 unsorted_chunks (av)->bk = unsorted_chunks (av)->fd = remainder; in _int_malloc() 4027 av->last_remainder = remainder; in _int_malloc() 4028 remainder->bk = remainder->fd = unsorted_chunks (av); in _int_malloc() 4031 remainder->fd_nextsize = NULL; in _int_malloc() [all …]
|
/glibc-2.36/sysdeps/m68k/m680x0/fpu/ |
D | s_cexp_template.c | 72 long double remainder, pi_2; in s() local 81 : "=f" (remainder), "=dm" (quadrant) in s()
|
/glibc-2.36/sysdeps/ieee754/ldbl-opt/ |
D | nldbl-remainder.c | 7 return remainder (x, y); in remainderl()
|
D | w_remainderl_compat.c | 18 libm_alias_ldouble_other (__remainder, remainder)
|
D | Makefile | 36 remainder ldexp scalbn frexp modf scalbln fma nan sincos \ 162 CFLAGS-nldbl-remainder.c = -fno-builtin-remainderl -fno-builtin-dreml
|
/glibc-2.36/benchtests/ |
D | bench-math-inlines.c | 136 return remainder (x, y); in remainder_test1() 147 return remainder (x, y); in remainder_test2()
|
/glibc-2.36/sysdeps/ia64/fpu/ |
D | e_remainder.S | 104 GLOBAL_IEEE754_ENTRY(remainder) 530 GLOBAL_IEEE754_END(remainder) 531 libm_alias_double_other (__remainder, remainder)
|
D | gen_import_file_list | 33 for f in acos acosh asin atanh cosh exp2 exp10 fmod log2 pow remainder \
|
D | e_remainderf.S | 550 libm_alias_float_other (__remainder, remainder)
|
D | e_remainderl.S | 559 libm_alias_ldouble_other (__remainder, remainder)
|
/glibc-2.36/conform/data/ |
D | tgmath.h-data | 52 macro remainder
|
D | math.h-data | 135 function double remainder (double, double)
|
/glibc-2.36/math/bits/ |
D | mathcalls.h | 275 __MATHCALL (remainder,, (_Mdouble_ __x, _Mdouble_ __y));
|
/glibc-2.36/manual/ |
D | dynlink.texi | 101 The remainder of this section documents the @code{_dl_find_object}
|
D | arith.texi | 137 the quotient: towards zero. The remainder has the same sign as the 158 The remainder from the division. 166 The function @code{div} computes the quotient and remainder from 194 The remainder from the division. 219 The remainder from the division. 246 The remainder from the division. 1663 The functions in this section compute the remainder on division of two 1676 These functions compute the remainder from the division of 1689 @deftypefun double remainder (double @var{numerator}, double @var{denominator}) 1700 to an integer. For example, @code{remainder (6.5, 2.3)} returns [all …]
|