Home
last modified time | relevance | path

Searched refs:UTF8LEN (Results 1 – 10 of 10) sorted by relevance

/dports/textproc/libparsifal/libparsifal-1.1.0/include/libparsifal/
H A Ddtdvalid.h43 #ifndef UTF8LEN
44 #define UTF8LEN(c,o) \ macro
H A Dxmldef.h24 #ifndef UTF8LEN
25 #define UTF8LEN(c,o) \ macro
H A Doptcfg.h80 UTF8LEN(c,*chSize); in ReadCh_Opt()
/dports/textproc/libparsifal/libparsifal-1.1.0/samples/misc/
H A Dhelper.c17 #define UTF8LEN(c) \ macro
30 len = UTF8LEN(*buf); in UTF8BufToLatin1()
/dports/audio/welle.io/welle.io-66675c9a4160c644a5ade5bf7a0cd0647647f33c/src/libs/mpg123/
H A Did3.c1080 #define UTF8LEN(x) ( (x)<0x80 ? 1 : ((x)<0x800 ? 2 : ((x)<0x10000 ? 3 : 4))) macro
1115 length += UTF8LEN(point); /* possibly 4 bytes */ in convert_utf16bom()
1125 else length += UTF8LEN(point); /* 1,2 or 3 bytes */ in convert_utf16bom()
1164 #undef UTF8LEN
/dports/audio/sdl2_mixer/SDL2_mixer-2.0.4/external/mpg123-1.25.6/src/libmpg123/
H A Did3.c1080 #define UTF8LEN(x) ( (x)<0x80 ? 1 : ((x)<0x800 ? 2 : ((x)<0x10000 ? 3 : 4))) macro
1115 length += UTF8LEN(point); /* possibly 4 bytes */ in convert_utf16bom()
1125 else length += UTF8LEN(point); /* 1,2 or 3 bytes */ in convert_utf16bom()
1164 #undef UTF8LEN
/dports/audio/mpg123/mpg123-1.29.3/src/libmpg123/
H A Did3.c1369 #define UTF8LEN(x) ( (x)<0x80 ? 1 : ((x)<0x800 ? 2 : ((x)<0x10000 ? 3 : 4))) macro
1404 length += UTF8LEN(point); /* possibly 4 bytes */ in convert_utf16bom()
1414 else length += UTF8LEN(point); /* 1,2 or 3 bytes */ in convert_utf16bom()
1454 #undef UTF8LEN
/dports/textproc/libparsifal/libparsifal-1.1.0/src/
H A Ddtdvalid.c570 UTF8LEN(p, i); in NameTokIter()
577 UTF8LEN(p, i); in NameTokIter()
H A Dparsifal.c778 UTF8LEN(c,*chSize); in ReadCh()
2292 UTF8LEN((b+i), j); in XMLParser_GetCurrentColumn()
/dports/net/libyang/libyang-1.0.240/src/
H A Dcommon.c1481 #define UTF8LEN(x) utf8_char_length_table[((unsigned char)(x))] macro
1489 for (len = 0, clen = strlen(str), ptr = str; *ptr && len < clen; ++len, ptr += UTF8LEN(*ptr)); in ly_strlen_utf8()