Home
last modified time | relevance | path

Searched refs:profileLength (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/
DImageDecoder.h182 static bool rgbColorProfile(const char* profileData, unsigned profileLength) in rgbColorProfile() argument
184 ASSERT_UNUSED(profileLength, profileLength >= iccColorProfileHeaderLength); in rgbColorProfile()
189 static bool inputDeviceColorProfile(const char* profileData, unsigned profileLength) in inputDeviceColorProfile() argument
191 ASSERT_UNUSED(profileLength, profileLength >= iccColorProfileHeaderLength); in inputDeviceColorProfile()
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/png/
DPNGImageDecoder.cpp281 png_uint_32 profileLength; in readColorProfile() local
282 if (!png_get_iCCP(png, info, &profileName, &compressionType, &profile, &profileLength)) in readColorProfile()
288 if (profileLength < ImageDecoder::iccColorProfileHeaderLength) in readColorProfile()
290 else if (!ImageDecoder::rgbColorProfile(profileData, profileLength)) in readColorProfile()
292 else if (!ImageDecoder::inputDeviceColorProfile(profileData, profileLength)) in readColorProfile()
297 colorProfile.append(profileData, profileLength); in readColorProfile()
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/
DJPEGImageDecoder.cpp232 unsigned profileLength; in readColorProfile() local
234 if (!read_icc_profile(info, &profile, &profileLength)) in readColorProfile()
240 if (profileLength < ImageDecoder::iccColorProfileHeaderLength) in readColorProfile()
242 else if (!ImageDecoder::rgbColorProfile(profileData, profileLength)) in readColorProfile()
244 else if (!ImageDecoder::inputDeviceColorProfile(profileData, profileLength)) in readColorProfile()
249 colorProfile.append(profileData, profileLength); in readColorProfile()