Searched refs:PNG_FP_SAW_DIGIT (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpng.c997 case 48: type = PNG_FP_SAW_DIGIT; break;
1000 case 57: type = PNG_FP_SAW_DIGIT + PNG_FP_NONZERO; break;
1024 else if (state & PNG_FP_SAW_DIGIT) /* trailing dot? */
1032 case PNG_FP_INTEGER + PNG_FP_SAW_DIGIT:
1041 if ((state & PNG_FP_SAW_DIGIT) == 0)
1054 case PNG_FP_FRACTION + PNG_FP_SAW_DIGIT:
1063 if ((state & PNG_FP_SAW_DIGIT) == 0)
1081 case PNG_FP_EXPONENT + PNG_FP_SAW_DIGIT:
1082 png_fp_add(state, PNG_FP_SAW_DIGIT | PNG_FP_WAS_VALID);
1103 return (state & PNG_FP_SAW_DIGIT) !
[all...]
H A Dpngpriv.h1260 #define PNG_FP_SAW_DIGIT 8 /* Saw a digit in current state */ macro
1285 * achieved by testing PNG_FP_SAW_DIGIT (see the implementation for why this
1288 #define PNG_FP_NZ_MASK (PNG_FP_SAW_DIGIT | PNG_FP_NEGATIVE | PNG_FP_NONZERO)
1290 #define PNG_FP_Z_MASK (PNG_FP_SAW_DIGIT | PNG_FP_NONZERO)
1292 /* PNG_FP_SAW_DIGIT: the string is valid. */
1293 #define PNG_FP_IS_ZERO(state) (((state) & PNG_FP_Z_MASK) == PNG_FP_SAW_DIGIT)

Completed in 28 milliseconds