HomeSort by relevance Sort by last modified time
    Searched defs:FP_NAN (Results 1 - 5 of 5) sorted by null

  /external/mesa3d/include/
c99_math.h 157 static inline enum {FP_NAN, FP_INFINITE, FP_ZERO, FP_SUBNORMAL, FP_NORMAL}
163 return FP_NAN;
180 return FP_NAN;
  /bionic/libc/include/
math.h 41 #define FP_NAN 0x02
63 #define fpclassify(x) __builtin_fpclassify(FP_NAN, FP_INFINITE, FP_NORMAL, FP_SUBNORMAL, FP_ZERO, x)
  /device/linaro/bootloader/edk2/StdLib/Include/
math.h 414 #define FP_NAN 0x01
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
math.h 205 FP_NAN,
206 # define FP_NAN FP_NAN
478 fpclassify (__u) == FP_NAN || fpclassify (__v) == FP_NAN; }))
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
math.h 393 #define FP_NAN 0x0100
395 #define FP_INFINITE (FP_NAN | FP_NORMAL)
428 FP_INFINITE : FP_NAN);
435 return sw & (FP_NAN | FP_NORMAL | FP_ZERO );
452 return (l ? FP_NAN : FP_INFINITE);
457 return sw & (FP_NAN | FP_NORMAL | FP_ZERO );
471 return (hlp.ft->val > 0x7f800000 ? FP_NAN : FP_INFINITE);
476 return sw & (FP_NAN | FP_NORMAL | FP_ZERO );
511 #define isfinite(x) ((fpclassify(x) & FP_NAN) == 0)
541 return (sw & (FP_NAN | FP_NORMAL | FP_INFINITE | FP_ZERO | FP_SUBNORMAL)
    [all...]

Completed in 101 milliseconds