OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cups_utf32_t
(Results
1 - 3
of
3
) sorted by null
/external/libcups/cups/
transcode.h
42
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,
transcode.c
340
cups_utf32_t
*dest, /* O - Target string */
347
cups_utf32_t
ch32; /* UTF-32 character value */
403
ch32 = (
cups_utf32_t
)((ch & 0x1f) << 6) | (
cups_utf32_t
)(next & 0x3f);
435
ch32 = (
cups_utf32_t
)((ch & 0x0f) << 6) | (
cups_utf32_t
)(next & 0x3f);
445
ch32 = (ch32 << 6) | (
cups_utf32_t
)(next & 0x3f);
477
ch32 = (
cups_utf32_t
)((ch & 0x07) << 6) | (
cups_utf32_t
)(next & 0x3f);
487
ch32 = (ch32 << 6) | (
cups_utf32_t
)(next & 0x3f)
[
all
...]
testi18n.c
143
cups_utf32_t
utf32dest[1024]; /* UTF-32 destination string */
549
memcpy(utf32src, utf32dest, (len + 1) * sizeof(
cups_utf32_t
));
Completed in 152 milliseconds