Home
last modified time | relevance | path

Searched refs:cups_utf32_t (Results 1 – 3 of 3) sorted by relevance

/external/libcups/cups/
Dtranscode.c340 cups_utf32_t *dest, /* O - Target string */ in cupsUTF8ToUTF32()
347 cups_utf32_t ch32; /* UTF-32 character value */ in cupsUTF8ToUTF32()
403 ch32 = (cups_utf32_t)((ch & 0x1f) << 6) | (cups_utf32_t)(next & 0x3f); in cupsUTF8ToUTF32()
435 ch32 = (cups_utf32_t)((ch & 0x0f) << 6) | (cups_utf32_t)(next & 0x3f); in cupsUTF8ToUTF32()
445 ch32 = (ch32 << 6) | (cups_utf32_t)(next & 0x3f); in cupsUTF8ToUTF32()
477 ch32 = (cups_utf32_t)((ch & 0x07) << 6) | (cups_utf32_t)(next & 0x3f); in cupsUTF8ToUTF32()
487 ch32 = (ch32 << 6) | (cups_utf32_t)(next & 0x3f); in cupsUTF8ToUTF32()
497 ch32 = (ch32 << 6) | (cups_utf32_t)(next & 0x3f); in cupsUTF8ToUTF32()
561 const cups_utf32_t *src, /* I - Source string */ in cupsUTF32ToUTF8()
567 cups_utf32_t ch; /* Character value */ in cupsUTF32ToUTF8()
Dtranscode.h42 typedef unsigned long cups_utf32_t; /* UTF-32 Unicode/ISO-10646 unit */ typedef
63 extern int cupsUTF8ToUTF32(cups_utf32_t *dest,
67 const cups_utf32_t *src,
Dtesti18n.c143 cups_utf32_t utf32dest[1024]; /* UTF-32 destination string */ in main()
549 memcpy(utf32src, utf32dest, (len + 1) * sizeof(cups_utf32_t)); in main()