Home
last modified time | relevance | path

Searched refs:scalbn (Results 1 – 25 of 93) sorted by relevance

1234

/third_party/flutter/skia/third_party/externals/sdl/src/libm/
Ds_scalbn.c38 libm_hidden_proto(scalbn) in libm_hidden_proto() argument
40 double scalbn(double x, int n) in libm_hidden_proto()
42 double scalbn(x, n) in libm_hidden_proto()
79 libm_hidden_def(scalbn)
Dk_rem_pio2.c139 libm_hidden_proto(scalbn)
222 z = scalbn(z, q0); /* actual value of z */
263 z -= scalbn(one, q0);
295 z = scalbn(z, -q0);
307 fw = scalbn(one, q0);
/third_party/musl/src/math/
Dscalb.c32 if ( fn > 65000.0) return scalbn(x, 65000); in scalb()
33 if (-fn > 65000.0) return scalbn(x,-65000); in scalb()
34 return scalbn(x,(int)fn); in scalb()
D__rem_pio2_large.c309 z = scalbn(z,q0); /* actual value of z */ in __rem_pio2_large()
345 z -= scalbn(1.0,q0); in __rem_pio2_large()
376 z = scalbn(z,-q0); in __rem_pio2_large()
388 fw = scalbn(1.0,q0); in __rem_pio2_large()
Dldexp.c5 return scalbn(x, n); in ldexp()
Dsignificand.c6 return scalbn(x, -ilogb(x)); in significand()
Dscalbln.c10 return scalbn(x, n); in scalbln()
/third_party/musl/porting/liteos_a/kernel/src/math/
Dscalb.c32 if ( fn > 65000.0) return scalbn(x, 65000); in scalb()
33 if (-fn > 65000.0) return scalbn(x,-65000); in scalb()
34 return scalbn(x,(int)fn); in scalb()
D__rem_pio2_large.c309 z = scalbn(z,q0); /* actual value of z */ in __rem_pio2_large()
345 z -= scalbn(1.0,q0); in __rem_pio2_large()
376 z = scalbn(z,-q0); in __rem_pio2_large()
388 fw = scalbn(1.0,q0); in __rem_pio2_large()
Dldexp.c5 return scalbn(x, n); in ldexp()
Dsignificand.c6 return scalbn(x, -ilogb(x)); in significand()
Dscalbln.c10 return scalbn(x, n); in scalbln()
/third_party/boost/boost/math/special_functions/
Dnext.hpp77 T result = scalbn(val, shift); in normalize_value()
79 return scalbn(result, -shift); in normalize_value()
158 return scalbn(tools::min_value<T>(), std::numeric_limits<T>::digits + 1); in calc_min_shifted()
249 …return scalbn(float_next(T(scalbn(val, 2 * std::numeric_limits<T>::digits)), pol), -2 * std::numer… in float_next_imp()
253 if(-1 == scalbn(val, -expon) * std::numeric_limits<T>::radix) in float_next_imp()
255 T diff = scalbn(T(1), expon - std::numeric_limits<T>::digits); in float_next_imp()
380 …return scalbn(float_prior(T(scalbn(val, 2 * std::numeric_limits<T>::digits)), pol), -2 * std::nume… in float_prior_imp()
384 T remain = scalbn(val, -expon); in float_prior_imp()
387 T diff = scalbn(T(1), expon - std::numeric_limits<T>::digits); in float_prior_imp()
601 T upper = scalbn(T(1), expon); in float_distance_imp()
[all …]
/third_party/musl/src/math/i386/
Dscalbn.s11 .global scalbn symbol
12 .type scalbn,@function
13 scalbn: label
Dscalbln.s1 # see scalbn.s
Dldexp.s1 # see scalbn.s
/third_party/flutter/skia/third_party/externals/harfbuzz/util/
Dview-cairo.cc46 double ascent = y_sign * scalbn ((double) extents.ascender, scale_bits); in render()
47 double descent = y_sign * -scalbn ((double) extents.descender, scale_bits); in render()
48 …double font_height = y_sign * scalbn ((double) extents.ascender - extents.descender + extents.line… in render()
Dhelper-cairo.cc511 l->glyphs[i].x = scalbn ((double) hb_position->x_offset + x, scale_bits); in helper_cairo_line_from_buffer()
512 l->glyphs[i].y = scalbn ((double) -hb_position->y_offset + y, scale_bits); in helper_cairo_line_from_buffer()
519 l->glyphs[i].x = scalbn ((double) x, scale_bits); in helper_cairo_line_from_buffer()
520 l->glyphs[i].y = scalbn ((double) y, scale_bits); in helper_cairo_line_from_buffer()
/third_party/harfbuzz/util/
Dview-cairo.cc49 extents.ascent = scalbn ((double) hb_extents.ascender, scale_bits); in render()
50 extents.descent = -scalbn ((double) hb_extents.descender, scale_bits); in render()
51 extents.line_gap = scalbn ((double) hb_extents.line_gap, scale_bits); in render()
/third_party/boost/libs/multiprecision/test/concepts/
Dnumber_concept_check.cpp170 t = scalbn(t, i); in test_extra()
171 t = scalbn(t * t, i); in test_extra()
172 t = scalbn(t, e); in test_extra()
173 t = scalbn(t * t, e); in test_extra()
/third_party/skia/third_party/externals/harfbuzz/util/
Dview-cairo.hh110 font_extents.ascent = scalbn ((double) hb_extents.ascender, scale_bits); in render()
111 font_extents.descent = -scalbn ((double) hb_extents.descender, scale_bits); in render()
112 font_extents.line_gap = scalbn ((double) hb_extents.line_gap, scale_bits); in render()
/third_party/musl/libc-test/src/common/
Dmtest.c55 return scalbn(got - want, -eulpf(want)) + dwant; in ulperrf()
71 return scalbn(got - want, -eulp(want)) + dwant; in ulperr()
/third_party/musl/libc-test/src/api/
Dtgmath.c266 #ifdef scalbn in f()
267 {double r = scalbn(x,y);} in f()
269 #error no scalbn(x,y) in f()
/third_party/musl/porting/uniproton/kernel/src/math/
Dscalbn.c4 double scalbn(double x, int n) in scalbn() function
/third_party/musl/porting/liteos_m/kernel/src/math/
Dscalbn.c4 double scalbn(double x, int n) in scalbn() function

1234