Lines Matching refs:szValuePtr

3023 …image_info_type *ImageInfo, char **pszInfoPtr, char **pszEncoding, char *szValuePtr, int ByteCount)  in exif_process_user_comment()  argument
3033 if (!memcmp(szValuePtr, "UNICODE\0", 8)) { in exif_process_user_comment()
3034 *pszEncoding = estrdup((const char*)szValuePtr); in exif_process_user_comment()
3035 szValuePtr = szValuePtr+8; in exif_process_user_comment()
3040 if (ByteCount >=2 && !memcmp(szValuePtr, "\xFE\xFF", 2)) { in exif_process_user_comment()
3042 szValuePtr = szValuePtr+2; in exif_process_user_comment()
3044 } else if (ByteCount >=2 && !memcmp(szValuePtr, "\xFF\xFE", 2)) { in exif_process_user_comment()
3046 szValuePtr = szValuePtr+2; in exif_process_user_comment()
3059 (unsigned char*)szValuePtr, in exif_process_user_comment()
3063 len = exif_process_string_raw(pszInfoPtr, szValuePtr, ByteCount); in exif_process_user_comment()
3066 } else if (!memcmp(szValuePtr, "ASCII\0\0\0", 8)) { in exif_process_user_comment()
3067 *pszEncoding = estrdup((const char*)szValuePtr); in exif_process_user_comment()
3068 szValuePtr = szValuePtr+8; in exif_process_user_comment()
3070 } else if (!memcmp(szValuePtr, "JIS\0\0\0\0\0", 8)) { in exif_process_user_comment()
3072 *pszEncoding = estrdup((const char*)szValuePtr); in exif_process_user_comment()
3073 szValuePtr = szValuePtr+8; in exif_process_user_comment()
3081 (unsigned char*)szValuePtr, in exif_process_user_comment()
3085 len = exif_process_string_raw(pszInfoPtr, szValuePtr, ByteCount); in exif_process_user_comment()
3088 } else if (!memcmp(szValuePtr, "\0\0\0\0\0\0\0\0", 8)) { in exif_process_user_comment()
3091 szValuePtr = szValuePtr+8; in exif_process_user_comment()
3098 for (a=ByteCount-1;a && szValuePtr[a]==' ';a--) { in exif_process_user_comment()
3099 (szValuePtr)[a] = '\0'; 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
3119 (unsigned char*)szValuePtr, in exif_process_unicode()
3124 xp_field->size = exif_process_string_raw(&xp_field->value, szValuePtr, ByteCount); in exif_process_unicode()