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

  /src/lib/libm/src/
s_atanl.c 58 int32_t expman; local in function:atanl
72 expman = (expt << 8) | ((u.extu_frach >> (MANH_SIZE - 9)) & 0xff);
73 if (expman < ((BIAS - 2) << 8) + 0xc0) { /* |x| < 0.4375 */
80 if (expman < (BIAS << 8) + 0x30) { /* |x| < 1.1875 */
81 if (expman < ((BIAS - 1) << 8) + 0x60) { /* 7/16 <=|x|<11/16 */
87 if (expman < ((BIAS + 1) << 8) + 0x38) { /* |x| < 2.4375 */

Completed in 84 milliseconds