HomeSort by: relevance | last modified time | path
    Searched defs:cbrt (Results 1 - 3 of 3) sorted by relevancy

  /src/lib/libm/src/
s_cbrt.c 23 __strong_alias(_cbrtl, cbrt)
27 /* cbrt(x)
42 cbrt(double x) function in typeref:typename:double
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/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 in typeref:typename:double
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/include/
tgmath.h 150 #define cbrt(a) __TG_FN1(cbrt, (a)) macro

Completed in 11 milliseconds