OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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 128 milliseconds