Home | History | Annotate | Download | only in src

Lines Matching refs:Cache

341 // Null transformation, only applies formatters. No cache
378 // No gamut check, no cache, 16 bits
439 // Gamut check, No cache, 16 bits.
476 // No gamut check, Cache, 16 bits,
488 _cmsCACHE Cache;
497 // Get copy of zero cache
498 memcpy(&Cache, &p->CacheCache));
512 if (memcmp(wIn, Cache.CacheIn, sizeof(Cache.CacheIn)) == 0) {
514 memcpy(wOut, Cache.CacheOut, sizeof(Cache.CacheOut));
519 memcpy(Cache.CacheIn, wIn, sizeof(Cache.CacheIn));
520 memcpy(Cache.CacheOut, wOut, sizeof(Cache.CacheOut));
543 _cmsCACHE Cache;
552 // Get copy of zero cache
553 memcpy(&Cache, &p->Cache, sizeof(Cache));
567 if (memcmp(wIn, Cache.CacheIn, sizeof(Cache.CacheIn)) == 0) {
569 memcpy(wOut, Cache.CacheOut, sizeof(Cache.CacheOut));
574 memcpy(Cache.CacheIn, wIn, sizeof(Cache.CacheIn));
575 memcpy(Cache.CacheOut, wOut, sizeof(Cache.CacheOut));
834 // Float transforms don't use cache, always are non-NULL
873 p ->xform = PrecalculatedXFORMGamutCheck; // Gamut check, no cache
875 p ->xform = PrecalculatedXFORM; // No cache, no gamut check
880 p ->xform = CachedXFORMGamutCheck; // Gamut check, cache
882 p ->xform = CachedXFORM; // No gamut check, cache
1029 // On floating point transforms, inhibit cache
1126 memset(&xform ->Cache.CacheIn, 0, sizeof(xform ->Cache.CacheIn));
1129 TransformOnePixelWithGamutCheck(xform, xform ->Cache.CacheIn, xform->Cache.CacheOut);
1133 xform ->Lut ->Eval16Fn(xform ->Cache.CacheIn, xform->Cache.CacheOut, xform -> Lut->Data);