Searched refs:utf8buf (Results 1 - 7 of 7) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/src/
H A Dx-python.c501 unsigned char utf8buf[6]; local
502 int count = u8_uctomb (utf8buf, uc, 6);
509 memcpy (bp->utf8_buffer + bp->utf8_buflen, utf8buf, count);
842 unsigned char utf8buf[6]; local
843 int count = u8_uctomb (utf8buf, uc, 6);
850 memcpy (bp->utf8_buffer + bp->utf8_buflen, utf8buf, count);
H A Dx-tcl.c685 unsigned char utf8buf[6]; local
691 count = u8_uctomb (utf8buf, uc, 6);
697 wp->token->chars[wp->token->charcount++] = utf8buf[i];
H A Dx-java.c450 unsigned char utf8buf[6]; local
451 int count = u8_uctomb (utf8buf, uc, 6);
458 memcpy (bp->utf8_buffer + bp->utf8_buflen, utf8buf, count);
H A Dx-csharp.c557 unsigned char utf8buf[6]; local
558 int count = u8_uctomb (utf8buf, uc, 6);
565 memcpy (bp->utf8_buffer + bp->utf8_buflen, utf8buf, count);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/lib/
H A Dstriconveh.c600 char utf8buf[utf8bufsize + 1]; local
619 char *out1ptr = utf8buf + utf8len;
691 at the end of utf8buf. */
703 utf8len = out1ptr - utf8buf;
711 const char *in2ptr = utf8buf;
776 (const uint8_t *) utf8buf)
946 /* Move the remaining bytes to the beginning of utf8buf. */
948 memmove (utf8buf, in2ptr, in2size);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/unzip60/
H A Dprocess.c2157 * Returns the number of bytes put into utf8buf to represent ch, from 1 to 6,
2158 * or -1 if ch is too large to represent. utf8buf must have room for 6 bytes.
2160 static int utf8_from_ucs4_char(utf8buf, ch)
2161 char *utf8buf;
2174 *utf8buf++ = (char) ch; /* ascii-7 */
2185 *utf8buf++ = (char) (leadmask | (ch >> (6 * trailing)));
2188 *utf8buf++ = (char) (0x80 | ((ch >> (6 * trailing)) & 0x3F));
2229 static int ucs4_string_to_utf8(ucs4, utf8buf, buflen)
2231 char *utf8buf;
2245 /* We could optimize this a bit by passing utf8buf
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zip30/
H A Dfileio.c68 local int utf8_from_ucs4_char OF((char *utf8buf, ulg ch));
71 local int ucs4_string_to_utf8 OF((ZCONST ulg *ucs4, char *utf8buf,
2926 * Returns the number of bytes put into utf8buf to represent ch, from 1 to 6,
2927 * or -1 if ch is too large to represent. utf8buf must have room for 6 bytes.
2929 local int utf8_from_ucs4_char(utf8buf, ch)
2930 char *utf8buf;
2943 *utf8buf++ = (char) ch; /* ascii-7 */
2954 *utf8buf++ = (char) (leadmask | (ch >> (6 * trailing)));
2957 *utf8buf++ = (char) (0x80 | ((ch >> (6 * trailing)) & 0x3F));
2996 local int ucs4_string_to_utf8(ucs4, utf8buf, bufle
[all...]

Completed in 196 milliseconds