Lines Matching refs:szValuePtr

2618 …image_info_type *ImageInfo, char **pszInfoPtr, char **pszEncoding, char *szValuePtr, int ByteCount)  in exif_process_user_comment()  argument
2628 if (!memcmp(szValuePtr, "UNICODE\0", 8)) { in exif_process_user_comment()
2629 *pszEncoding = estrdup((const char*)szValuePtr); in exif_process_user_comment()
2630 szValuePtr = szValuePtr+8; in exif_process_user_comment()
2635 if (ByteCount >=2 && !memcmp(szValuePtr, "\xFE\xFF", 2)) { in exif_process_user_comment()
2637 szValuePtr = szValuePtr+2; in exif_process_user_comment()
2639 } else if (ByteCount >=2 && !memcmp(szValuePtr, "\xFF\xFE", 2)) { in exif_process_user_comment()
2641 szValuePtr = szValuePtr+2; in exif_process_user_comment()
2654 (unsigned char*)szValuePtr, in exif_process_user_comment()
2658 len = exif_process_string_raw(pszInfoPtr, szValuePtr, ByteCount); in exif_process_user_comment()
2661 } else if (!memcmp(szValuePtr, "ASCII\0\0\0", 8)) { in exif_process_user_comment()
2662 *pszEncoding = estrdup((const char*)szValuePtr); in exif_process_user_comment()
2663 szValuePtr = szValuePtr+8; in exif_process_user_comment()
2665 } else if (!memcmp(szValuePtr, "JIS\0\0\0\0\0", 8)) { in exif_process_user_comment()
2667 *pszEncoding = estrdup((const char*)szValuePtr); in exif_process_user_comment()
2668 szValuePtr = szValuePtr+8; in exif_process_user_comment()
2676 (unsigned char*)szValuePtr, in exif_process_user_comment()
2680 len = exif_process_string_raw(pszInfoPtr, szValuePtr, ByteCount); in exif_process_user_comment()
2683 } else if (!memcmp(szValuePtr, "\0\0\0\0\0\0\0\0", 8)) { in exif_process_user_comment()
2686 szValuePtr = szValuePtr+8; in exif_process_user_comment()
2693 for (a=ByteCount-1;a && szValuePtr[a]==' ';a--) { in exif_process_user_comment()
2694 (szValuePtr)[a] = '\0'; in exif_process_user_comment()
2699 exif_process_string(pszInfoPtr, szValuePtr, ByteCount); in exif_process_user_comment()
2706 …code(image_info_type *ImageInfo, xp_field_type *xp_field, int tag, char *szValuePtr, int ByteCount) in exif_process_unicode() argument
2714 (unsigned char*)szValuePtr, in exif_process_unicode()
2719 xp_field->size = exif_process_string_raw(&xp_field->value, szValuePtr, ByteCount); in exif_process_unicode()