Home | History | Annotate | Download | only in udf

Lines Matching refs:unicode

24  * OSTA compliant Unicode compression, uncompression routines.
32 * Takes an OSTA CS0 compressed unicode name, and converts
33 * it to Unicode.
34 * The Unicode output will be in the byte order
37 * It is up to the user to ensure that the unicode buffer is large
38 * enough, and that the compressed unicode name is correct.
42 * The number of unicode characters which were uncompressed.
49 unicode_t *unicode) /* (Output) uncompressed unicode characters. */
74 * unicode char.
76 unicode[unicodeIndex] =
79 unicode[unicodeIndex] = 0;
83 unicode[unicodeIndex] |=
95 * Takes a string of unicode wide characters and returns an OSTA CS0
96 * compressed unicode string. The unicode MUST be in the byte order of
113 int numberOfChars, /* (Input) number of unicode characters. */
115 unicode_t *unicode, /* (Input) unicode characters to compress. */
134 (unicode[unicodeIndex] & 0xFF00) >> 8;
138 unicode[unicodeIndex] & 0x00FF;
194 /* UNICODE Checksum */
287 /* Define a function or macro which determines if a Unicode character is
317 * already been translated to Unicode.
321 * Number of unicode characters in translated name.
458 * Decides if a Unicode character matches one of a list
461 * illegal characters above 0x0020 are in the ASCII subset of Unicode.
466 * Non-zero if the Unicode character is in the given ASCII string.
470 unicode_t ch) /* (Input) Unicode char to search for. */