OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:ieee_cbrt
(Results
1 - 3
of
3
) sorted by null
/external/fdlibm/
s_cbrt.c
17
/*
ieee_cbrt
(x)
40
double
ieee_cbrt
(double x)
function
42
double
ieee_cbrt
(x)
54
if(hx>=0x7ff00000) return(x+x); /*
ieee_cbrt
(NaN,INF) is itself */
56
return(x); /*
ieee_cbrt
(0) is itself */
73
/* chopped to 20 bits and make it larger than
ieee_cbrt
(x) */
fdlibm.h
146
extern double
ieee_cbrt
__P((double));
/libcore/luni/src/main/native/
java_lang_StrictMath.cpp
102
return
ieee_cbrt
(a);
Completed in 57 milliseconds