• Home
  • Raw
  • Download

Lines Matching refs:deBool

59 deBool				deSetRoundingMode	(deRoundingMode mode);
68 DE_INLINE deBool deFloatIsNaN (float x) { return (x != x); } in deFloatIsNaN()
71 DE_INLINE deBool deIsNaN (double x) { return (x != x); } in deIsNaN()
87 DE_INLINE deBool deFloatIsPositiveZero(float x) in deFloatIsPositiveZero()
92 DE_INLINE deBool deDoubleIsPositiveZero(double x) in deDoubleIsPositiveZero()
97 DE_INLINE deBool deFloatIsNegativeZero(float x) in deFloatIsNegativeZero()
102 DE_INLINE deBool deDoubleIsNegativeZero(double x) in deDoubleIsNegativeZero()
107 DE_INLINE deBool deFloatIsIEEENaN(float x) in deFloatIsIEEENaN()
114 DE_INLINE deBool deDoubleIsIEEENaN(double x) in deDoubleIsIEEENaN()
129 DE_INLINE deBool deFloatIsSignalingNaN(float x) in deFloatIsSignalingNaN()
134 DE_INLINE deBool deDoubleIsSignalingNaN(double x) in deDoubleIsSignalingNaN()
139 DE_INLINE deBool deFloatIsQuietNaN(float x) in deFloatIsQuietNaN()
144 DE_INLINE deBool deDoubleIsQuietNaN(double x) in deDoubleIsQuietNaN()
262 DE_INLINE deBool deFloatCmpEQ (float a, float b) { return (a == b); } in deFloatCmpEQ()
263 DE_INLINE deBool deFloatCmpNE (float a, float b) { return (a != b); } in deFloatCmpNE()
264 DE_INLINE deBool deFloatCmpLT (float a, float b) { return (a < b); } in deFloatCmpLT()
265 DE_INLINE deBool deFloatCmpLE (float a, float b) { return (a <= b); } in deFloatCmpLE()
266 DE_INLINE deBool deFloatCmpGT (float a, float b) { return (a > b); } in deFloatCmpGT()
267 DE_INLINE deBool deFloatCmpGE (float a, float b) { return (a >= b); } in deFloatCmpGE()