HomeSort by: relevance | last modified time | path
    Searched refs:cbrt (Results 1 - 25 of 99) sorted by relevancy

1 2 3 4

  /src/lib/libm/noieee_src/
n_cbrt.c 32 static char sccsid[] = "@(#)cbrt.c 8.1 (Berkeley) 6/4/93";
68 return (float)cbrt(x);
74 return cbrt((double)x);
78 cbrt(double x) function
92 if(mexp==0x7ff00000) return(x); /* cbrt(NaN,INF) is itself */
93 if(x==0.0) return(x); /* cbrt(0) is itself */
99 /* rough cbrt to 5 bits */
108 /* new cbrt to 23 bits, may be implemented in single precision */
113 /* chopped to 20 bits and make it larger than cbrt(x) */
  /src/lib/libm/src/
s_cbrt.c 23 __strong_alias(_cbrtl, cbrt)
27 /* cbrt(x)
42 cbrt(double x) function
52 if(hx>=0x7ff00000) return(x+x); /* cbrt(NaN,INF) is itself */
55 return(x); /* cbrt(0) is itself */
58 /* rough cbrt to 5 bits */
67 /* new cbrt to 23 bits, may be implemented in single precision */
72 /* chopped to 20 bits and make it larger than cbrt(x) */
  /src/lib/libm/arch/vax/
n_cbrt.S 30 * @(#)cbrt.s 8.1 (Berkeley) 6/4/93
36 * double cbrt(double arg)
45 calls $2,_C_LABEL(cbrt)
51 WEAK_ALIAS(cbrtl, cbrt)
54 STRONG_ALIAS(cbrt, d_cbrt)
  /src/tests/lib/libm/
t_cbrt.c 40 * cbrt(3)
45 atf_tc_set_md_var(tc, "descr", "Test cbrt(NaN) == NaN");
53 ATF_CHECK(isnan(cbrt(x)) != 0);
59 atf_tc_set_md_var(tc, "descr", "Test cbrt(3) vs. pow(3)");
65 /* Neither cbrt nor pow is required to be correctly rounded. */
70 double x_cbrt = cbrt(x[i]);
81 atf_tc_fail_nonfatal("cbrt(%.17g) = %.17g != "
91 atf_tc_set_md_var(tc, "descr", "Test cbrt(-Inf) == -Inf");
97 double y = cbrt(x);
106 atf_tc_set_md_var(tc, "descr", "Test cbrt(+Inf) == +Inf")
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Headers/
__clang_cuda_math_forward_declares.h 45 __DEVICE__ double cbrt(double);
46 __DEVICE__ float cbrt(float);
208 using ::cbrt;
__clang_cuda_cmath.h 248 __CUDA_CLANG_FN_INTEGER_OVERLOAD_1(double, cbrt)
375 using ::cbrt;
__clang_hip_cmath.h 157 __DEF_FUN1(float, cbrt)
432 __HIP_OVERLOAD1(double, cbrt)
598 using ::cbrt;
tgmath.h 569 // cbrt
577 __tg_cbrt(double __x) {return cbrt(__x);}
583 #undef cbrt macro
584 #define cbrt(__x) __tg_cbrt(__tg_promote1((__x))(__x)) macro
  /src/external/apache2/llvm/dist/clang/lib/Headers/openmp_wrappers/
cmath 46 __DEVICE__ float cbrt(float __x) { return ::cbrtf(__x); }
  /src/external/gpl3/gcc/dist/gcc/ginclude/
tgmath.h 81 #define cbrt(x) __TGMATH_REAL(x, cbrt) macro
  /src/external/gpl3/gcc.old/dist/gcc/ginclude/
tgmath.h 81 #define cbrt(x) __TGMATH_REAL(x, cbrt) macro
  /src/tests/lib/lua/libm/
h_lualibm.c 37 TEST(cbrt(8.0));
lualibm.lua 43 test("cbrt(8.0)", lm.cbrt(8.0))
  /src/external/gpl3/gcc/dist/libgcc/config/avr/libf7/
f7-wraps.h 346 ;; sqrt cbrt exp exp10 pow10 log log10 log2 sin cos tan cotan asin acos atan ceil floor trunc round sinh cosh tanh
363 DALIAS cbrt
365 .global F7_NAME(cbrt)
366 ldi ZH, hi8(gs(F7_NAME(cbrt)))
367 ldi ZL, lo8(gs(F7_NAME(cbrt)))
  /src/external/gpl3/gcc.old/dist/libgcc/config/avr/libf7/
f7-wraps.h 346 ;; sqrt cbrt exp exp10 pow10 log log10 log2 sin cos tan cotan asin acos atan ceil floor trunc round sinh cosh tanh
363 DALIAS cbrt
365 .global F7_NAME(cbrt)
366 ldi ZH, hi8(gs(F7_NAME(cbrt)))
367 ldi ZL, lo8(gs(F7_NAME(cbrt)))
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/stdc/
tgmath.d 287 alias core.stdc.math.cbrt cbrt;
289 alias core.stdc.math.cbrtf cbrt;
291 alias core.stdc.math.cbrtl cbrt;
788 alias core.stdc.math.cbrt cbrt;
790 alias core.stdc.math.cbrtf cbrt;
792 alias core.stdc.math.cbrtl cbrt;
1278 alias core.stdc.math.cbrt cbrt;
    [all...]
  /src/include/
tgmath.h 150 #define cbrt(a) __TG_FN1(cbrt, (a)) macro
math.h 295 double cbrt(double);
  /src/lib/lua/libm/
libm.c 114 DFUNC_DBL(cbrt)
250 { "cbrt", libm_cbrt },
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/c_compatibility/
math.h 81 using std::cbrt;
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/
math.h 45 using std::tr1::cbrt;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/c_compatibility/
math.h 81 using std::cbrt;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/tr1/
math.h 43 using std::tr1::cbrt;
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/math/
algebraic.d 242 * $(TR $(TH $(I x)) $(TH cbrt(x)) $(TH invalid?))
248 real cbrt(real x) @trusted nothrow @nogc
269 assert(cbrt(1.0).feqrel(1.0) > 16);
270 assert(cbrt(27.0).feqrel(3.0) > 16);
271 assert(cbrt(15.625).feqrel(2.5) > 16);
  /src/external/gpl3/gdb/lib/libgnulib/arch/aarch64/gnulib/import/
math.h 940 _GL_FUNCDECL_SYS (cbrt, double, (double x));
942 _GL_CXXALIAS_SYS (cbrt, double, (double x));
944 _GL_CXXALIASWARN1 (cbrt, double, (double x));
947 # undef cbrt macro
949 _GL_WARN_ON_USE (cbrt, "cbrt is unportable - "
950 "use gnulib module cbrt for portability");

Completed in 88 milliseconds

1 2 3 4