Lines Matching refs:ByteCount
3023 …image_info_type *ImageInfo, char **pszInfoPtr, char **pszEncoding, char *szValuePtr, int ByteCount) in exif_process_user_comment() argument
3031 if (ByteCount>=8) { in exif_process_user_comment()
3036 ByteCount -= 8; in exif_process_user_comment()
3040 if (ByteCount >=2 && !memcmp(szValuePtr, "\xFE\xFF", 2)) { in exif_process_user_comment()
3043 ByteCount -= 2; in exif_process_user_comment()
3044 } else if (ByteCount >=2 && !memcmp(szValuePtr, "\xFF\xFE", 2)) { in exif_process_user_comment()
3047 ByteCount -= 2; in exif_process_user_comment()
3060 ByteCount, in exif_process_user_comment()
3063 len = exif_process_string_raw(pszInfoPtr, szValuePtr, ByteCount); in exif_process_user_comment()
3069 ByteCount -= 8; in exif_process_user_comment()
3074 ByteCount -= 8; in exif_process_user_comment()
3082 ByteCount, in exif_process_user_comment()
3085 len = exif_process_string_raw(pszInfoPtr, szValuePtr, ByteCount); in exif_process_user_comment()
3092 ByteCount -= 8; in exif_process_user_comment()
3097 if (ByteCount>0) { in exif_process_user_comment()
3098 for (a=ByteCount-1;a && szValuePtr[a]==' ';a--) { in exif_process_user_comment()
3104 exif_process_string(pszInfoPtr, szValuePtr, ByteCount); in exif_process_user_comment()
3111 …code(image_info_type *ImageInfo, xp_field_type *xp_field, int tag, char *szValuePtr, int ByteCount) in exif_process_unicode() argument
3120 ByteCount, in exif_process_unicode()
3124 xp_field->size = exif_process_string_raw(&xp_field->value, szValuePtr, ByteCount); in exif_process_unicode()