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

/haiku-fatelf/src/servers/registrar/
H A DTextSnifferAddon.cpp129 my_unichar *ubuf = NULL; local
155 if ((ubuf = (my_unichar*)malloc((nbytes + 1) * sizeof(ubuf[0]))) == NULL)
162 * ubuf, and the number of characters converted in ulen.
164 if (looks_ascii(buf, nbytes, ubuf, &ulen)) {
168 } else if (looks_utf8(buf, nbytes, ubuf, &ulen)) {
172 } else if ((i = looks_unicode(buf, nbytes, ubuf, &ulen)) != 0) {
180 } else if (looks_latin1(buf, nbytes, ubuf, &ulen)) {
184 } else if (looks_extended(buf, nbytes, ubuf, &ulen)) {
191 if (looks_ascii(nbuf, nbytes, ubuf,
439 looks_ascii(const unsigned char *buf, size_t nbytes, my_unichar *ubuf, size_t *ulen) argument
459 looks_latin1(const unsigned char *buf, size_t nbytes, my_unichar *ubuf, size_t *ulen) argument
478 looks_extended(const unsigned char *buf, size_t nbytes, my_unichar *ubuf, size_t *ulen) argument
498 looks_utf8(const unsigned char *buf, size_t nbytes, my_unichar *ubuf, size_t *ulen) argument
560 looks_unicode(const unsigned char *buf, size_t nbytes, my_unichar *ubuf, size_t *ulen) argument
[all...]
/haiku-fatelf/src/add-ons/translators/stxt/
H A DSTXTTranslator.cpp205 my_unichar *ubuf = NULL; local
231 if ((ubuf = (my_unichar*)malloc((nbytes + 1) * sizeof(ubuf[0]))) == NULL)
238 * ubuf, and the number of characters converted in ulen.
245 } else if (looks_ascii(buf, nbytes, ubuf, &ulen)) {
253 } else if (looks_utf8(buf, nbytes, ubuf, &ulen)) {
257 } else if ((i = looks_unicode(buf, nbytes, ubuf, &ulen)) != 0) {
267 } else if (looks_latin1(buf, nbytes, ubuf, &ulen)) {
271 } else if (looks_extended(buf, nbytes, ubuf, &ulen)) {
278 if (looks_ascii(nbuf, nbytes, ubuf,
527 looks_ascii(const unsigned char *buf, size_t nbytes, my_unichar *ubuf, size_t *ulen) argument
547 looks_latin1(const unsigned char *buf, size_t nbytes, my_unichar *ubuf, size_t *ulen) argument
566 looks_extended(const unsigned char *buf, size_t nbytes, my_unichar *ubuf, size_t *ulen) argument
586 looks_utf8(const unsigned char *buf, size_t nbytes, my_unichar *ubuf, size_t *ulen) argument
648 looks_unicode(const unsigned char *buf, size_t nbytes, my_unichar *ubuf, size_t *ulen) argument
[all...]
/haiku-fatelf/src/bin/less/
H A Doutput.c302 static char ubuf[MAX_UTF_CHAR_LEN];
310 ubuf[ubuf_index++] = c;
313 c = get_wchar(ubuf) & 0xFF;
/haiku-fatelf/src/bin/diffutils/lib/
H A Dstrftime.c842 char ubuf[1024]; /* enough for any single format in practice */ variable
857 len = strftime (ubuf, sizeof ubuf, ufmt, tp);
858 if (len == 0 && ubuf[0] != '\0')
860 cpy (len, ubuf);
/haiku-fatelf/src/bin/gawk/missing_d/
H A Dstrftime.c901 char ubuf[1024]; /* enough for any single format in practice */ variable
916 len = strftime (ubuf, sizeof ubuf, ufmt, tp);
917 if (len == 0 && ubuf[0] != '\0')
919 cpy (len, ubuf);
/haiku-fatelf/src/bin/coreutils/lib/
H A Dstrftime.c802 char ubuf[1024]; /* enough for any single format in practice */ local
820 len = strftime (ubuf, sizeof ubuf, ufmt, tp);
822 cpy (len - 1, ubuf + 1);
/haiku-fatelf/src/bin/findutils/gnulib/lib/
H A Dstrftime.c798 char ubuf[1024]; /* enough for any single format in practice */ local
816 len = strftime (ubuf, sizeof ubuf, ufmt, tp);
818 cpy (len - 1, ubuf + 1);

Completed in 61 milliseconds