Searched refs:it8 (Results 1 – 2 of 2) sorted by relevance
/external/pdfium/third_party/lcms2-2.6/src/ |
D | cmscgats.c | 359 static void* AllocChunk(cmsIT8* it8, cmsUInt32Number size); 459 cmsBool SynError(cmsIT8* it8, const char *Txt, ...) in SynError() argument 469 …snprintf(ErrMsg, 1023, "%s: Line %d, %s", it8->FileStack[it8 ->IncludeSP]->FileName, it8->lineno, … in SynError() 471 it8->sy = SSYNERROR; in SynError() 472 cmsSignalError(it8 ->ContextID, cmsERROR_CORRUPTION_DETECTED, "%s", ErrMsg); in SynError() 478 cmsBool Check(cmsIT8* it8, SYMBOL sy, const char* Err) in Check() argument 480 if (it8 -> sy != sy) in Check() 481 return SynError(it8, NoMeta(Err)); in Check() 487 void NextCh(cmsIT8* it8) in NextCh() argument 489 if (it8 -> FileStack[it8 ->IncludeSP]->Stream) { in NextCh() [all …]
|
/external/pdfium/third_party/lcms2-2.6/ |
D | 0017-upstream-integer-overflow-MPEmatrix_Read.patch | 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) { [all …]
|