OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:profileLength
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/
ImageDecoder.h
182
static bool rgbColorProfile(const char* profileData, unsigned
profileLength
)
184
ASSERT_UNUSED(
profileLength
,
profileLength
>= iccColorProfileHeaderLength);
189
static bool inputDeviceColorProfile(const char* profileData, unsigned
profileLength
)
191
ASSERT_UNUSED(
profileLength
,
profileLength
>= iccColorProfileHeaderLength);
/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 56 milliseconds