HomeSort by relevance Sort by last modified time
    Searched defs:profileLength (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/png/
PNGImageDecoder.cpp 281 png_uint_32 profileLength;
282 if (!png_get_iCCP(png, info, &profileName, &compressionType, &profile, &profileLength))
288 if (profileLength < ImageDecoder::iccColorProfileHeaderLength)
290 else if (!ImageDecoder::rgbColorProfile(profileData, profileLength))
292 else if (!ImageDecoder::inputDeviceColorProfile(profileData, profileLength))
297 colorProfile.append(profileData, profileLength);
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/
JPEGImageDecoder.cpp 232 unsigned profileLength;
234 if (!read_icc_profile(info, &profile, &profileLength))
240 if (profileLength < ImageDecoder::iccColorProfileHeaderLength)
242 else if (!ImageDecoder::rgbColorProfile(profileData, profileLength))
244 else if (!ImageDecoder::inputDeviceColorProfile(profileData, profileLength))
249 colorProfile.append(profileData, profileLength);
    [all...]

Completed in 100 milliseconds