Lines Matching refs:ByteCount
3051 …image_info_type *ImageInfo, char **pszInfoPtr, char **pszEncoding, char *szValuePtr, int ByteCount) in exif_process_user_comment() argument
3059 if (ByteCount>=8) { in exif_process_user_comment()
3064 ByteCount -= 8; in exif_process_user_comment()
3068 if (ByteCount >=2 && !memcmp(szValuePtr, "\xFE\xFF", 2)) { in exif_process_user_comment()
3071 ByteCount -= 2; in exif_process_user_comment()
3072 } else if (ByteCount >=2 && !memcmp(szValuePtr, "\xFF\xFE", 2)) { in exif_process_user_comment()
3075 ByteCount -= 2; in exif_process_user_comment()
3088 ByteCount, in exif_process_user_comment()
3091 len = exif_process_string_raw(pszInfoPtr, szValuePtr, ByteCount); in exif_process_user_comment()
3097 ByteCount -= 8; in exif_process_user_comment()
3102 ByteCount -= 8; in exif_process_user_comment()
3110 ByteCount, in exif_process_user_comment()
3113 len = exif_process_string_raw(pszInfoPtr, szValuePtr, ByteCount); in exif_process_user_comment()
3120 ByteCount -= 8; in exif_process_user_comment()
3125 if (ByteCount>0) { in exif_process_user_comment()
3126 for (a=ByteCount-1;a && szValuePtr[a]==' ';a--) { in exif_process_user_comment()
3132 exif_process_string(pszInfoPtr, szValuePtr, ByteCount); in exif_process_user_comment()
3139 …code(image_info_type *ImageInfo, xp_field_type *xp_field, int tag, char *szValuePtr, int ByteCount) in exif_process_unicode() argument
3148 ByteCount, in exif_process_unicode()
3152 xp_field->size = exif_process_string_raw(&xp_field->value, szValuePtr, ByteCount); in exif_process_unicode()