Lines Matching refs:it8
38 @@ -568,8 +569,8 @@ void ReadReal(cmsIT8* it8, int inum)
40 if (toupper(it8->ch) == 'E') {
47 NextCh(it8); sgn = 1;
49 @@ -587,7 +588,7 @@ void ReadReal(cmsIT8* it8, int inum)
51 while (isdigit(it8->ch)) {
55 e = e * 10 + (it8->ch - '0');
57 NextCh(it8);
58 @@ -777,7 +778,7 @@ void InSymbol(cmsIT8* it8)
60 while (isdigit(it8->ch)) {
62 - if ((long) it8->inum * 10L > (long) INT_MAX) {
63 + if ((cmsFloat64Number) it8->inum * 10L > (cmsFloat64Number) +2147483647.0) {
64 ReadReal(it8, it8->inum);
65 it8->sy = SDNUM;
66 it8->dnum *= sign;