Lines Matching refs:profile

2016     png_const_bytep profile/* first 132 bytes only */, int color_type)
2025 temp = png_get_uint_32(profile);
2030 temp = (png_uint_32) (*(profile+8));
2035 temp = png_get_uint_32(profile+128); /* tag count: 12 bytes/tag */
2044 temp = png_get_uint_32(profile+64);
2068 temp = png_get_uint_32(profile+36); /* signature 'ascp' */
2080 if (memcmp(profile+68, D50_nCIEXYZ, 12) != 0)
2104 temp = png_get_uint_32(profile+16); /* data colour space field */
2133 temp = png_get_uint_32(profile+12); /* profile/device class */
2181 temp = png_get_uint_32(profile+20);
2199 png_const_bytep profile /* header plus whole tag table */)
2201 png_uint_32 tag_count = png_get_uint_32(profile+128);
2203 png_const_bytep tag = profile+132; /* The first tag */
2308 png_const_bytep profile, uLong adler)
2334 if (png_get_uint_32(profile+84) == png_sRGB_checks[i].md5[0] &&
2335 png_get_uint_32(profile+88) == png_sRGB_checks[i].md5[1] &&
2336 png_get_uint_32(profile+92) == png_sRGB_checks[i].md5[2] &&
2337 png_get_uint_32(profile+96) == png_sRGB_checks[i].md5[3])
2351 length = png_get_uint_32(profile);
2352 intent = png_get_uint_32(profile+64);
2363 adler = adler32(adler, profile, length);
2376 crc = crc32(crc, profile, length);
2429 png_colorspacerp colorspace, png_const_bytep profile, uLong adler)
2434 if (png_compare_ICC_profile_with_sRGB(png_ptr, profile, adler) != 0)
2436 (int)/*already checked*/png_get_uint_32(profile+64));
2443 png_const_charp name, png_uint_32 profile_length, png_const_bytep profile,
2450 png_icc_check_header(png_ptr, colorspace, name, profile_length, profile,
2453 profile) != 0)
2457 png_icc_set_sRGB(png_ptr, colorspace, profile, 0);